html,
body {
  height: 100%;
  background-color: #f5fbfb;
  font-size: 13px;
  line-height: 15px;
}
html:has(#menu-toggle:checked) responsive-menu,
body:has(#menu-toggle:checked) responsive-menu {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
html:has(#menu-toggle:checked) responsive-menu .nav-link,
body:has(#menu-toggle:checked) responsive-menu .nav-link {
  opacity: 1;
  translate: 0 0;
}
html:has(#menu-toggle:checked) h1,
html:has(#menu-toggle:checked) .user-name a,
html:has(#menu-toggle:checked) .user-name p,
body:has(#menu-toggle:checked) h1,
body:has(#menu-toggle:checked) .user-name a,
body:has(#menu-toggle:checked) .user-name p {
  color: white;
  transition-delay: 0.4s;
}

* {
  font-family: "Poppins", sans-serif;
}

h1 {
  font-size: 25px;
  font-weight: 700;
  margin: 0;
  color: #29275a;
}

h2 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  color: #29275a;
  margin: 0;
}
@media (max-width: 768px) {
  h2 {
    font-size: 16px;
    line-height: 1;
    color: #29275a;
  }
}

b {
  font-weight: 600;
}

button,
.btn {
  transition: all 0.3s ease;
  font-size: 15px;
  padding: 6px 20px;
  border-radius: 100vmax;
  border: none;
  outline: none;
  line-height: 21px;
  margin-top: 10px;
}
button.color-btn,
.btn.color-btn {
  padding: 4px 7px;
  border-width: 2px !important;
}
button.color-btn img,
.btn.color-btn img {
  width: 15px;
}
button.orange,
.btn.orange {
  background-color: #ec6246;
  color: #ffffff;
}
button.orange:hover,
.btn.orange:hover {
  background-color: #fef5f3;
  color: #ec6246;
}
button.purple,
.btn.purple {
  background-color: #29275a;
  color: #ffffff;
}
button.purple:hover,
.btn.purple:hover {
  background-color: #f2f2f5;
  color: #29275a;
}
button.green,
.btn.green {
  background-color: #16aca7;
  color: #ffffff;
}
button.green:hover,
.btn.green:hover {
  background-color: #e1f4f4;
  color: #29275a;
}
button:disabled:not([ta-button=ta-button]),
.btn:disabled:not([ta-button=ta-button]) {
  background-color: #a4a4a4 !important;
  opacity: 1;
}
@media (max-width: 768px) {
  button,
  .btn {
    font-size: 14px;
  }
}

input,
select,
textarea {
  background-color: #ffffff;
  border-radius: 25px;
  color: #29275a;
  padding: 10px 25px;
  border: none;
  outline: none;
  box-shadow: none;
}
input::placeholder,
select::placeholder,
textarea::placeholder {
  color: #29275a;
}
input.purple,
select.purple,
textarea.purple {
  border: 1px solid #29275a;
}

form {
  position: relative;
}

.form-loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  background: rgba(91, 91, 91, 0.26);
  border-radius: 8px;
  user-select: none;
}

.page {
  height: 100%;
}
.page::before {
  content: "";
  position: fixed;
  top: 0;
  z-index: 0;
  width: 100vw;
  height: 215px;
  left: 0;
  background-color: #e1f4f4;
}
@media (max-width: 768px) {
  .page::before {
    height: 0;
  }
}
.page * {
  z-index: 1;
}
.page .page-content {
  width: 100%;
  height: 100%;
  padding-block: 20px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  margin-left: 316px;
  padding-top: 80px;
}
@media (max-width: 768px) {
  .page .page-content {
    padding-bottom: 80px !important;
  }
  .page .page-content > header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 0px;
    margin-bottom: 24px;
  }
}
@media (max-width: 1200px) {
  .page .page-content {
    overflow-y: initial;
  }
}
.page .page-content .admin-toggle-editor {
  width: fit-content;
  align-self: end;
  margin-block: 16px;
  margin-right: 16px;
}
@media (max-width: 768px) {
  .page .page-content .admin-toggle-editor {
    margin: 16px 16px 0 0;
  }
}
.page .page-content .admin-wysiwyg {
  background-color: #fff;
  padding: 0 24px 16px 24px;
  border-radius: 16px;
  height: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page .page-content .admin-wysiwyg > div {
  width: 100%;
}
@media (max-width: 768px) {
  .page .page-content .admin-wysiwyg {
    margin: 16px 16px 96px 16px;
    height: max-content;
  }
}
.page .page-content .ta-toolbar {
  background-color: white;
  border: 1.5px solid #dee2e6;
  gap: 8px;
  padding: 8px 0;
}
.page .page-content .ta-toolbar .btn-group {
  padding: 0 8px;
  flex-wrap: wrap;
  gap: 8px;
}
.page .page-content .ta-toolbar .btn-group button {
  margin: 0;
  border-radius: 4px;
}
.page .page-content .ta-toolbar .btn-group div#toolbarWC,
.page .page-content .ta-toolbar .btn-group div#toolbarCC {
  display: flex !important;
  align-items: center;
}
@media (max-width: 1200px) {
  .page .page-content {
    padding: 0;
    margin-left: 0;
  }
}

::-moz-selection {
  /* Code for Firefox */
  color: #ffffff;
  background: #29275a;
}

::selection {
  color: #ffffff;
  background: #29275a;
}

.form-error,
.error {
  font-size: 18px;
  width: 100%;
  text-align: center;
  margin-top: 10px;
  color: red;
}

.align-left {
  text-align: left;
}

a {
  text-decoration: none !important;
  color: inherit;
}
a:hover {
  text-decoration: none !important;
}

.disabled,
[disabled] {
  pointer-events: none;
  opacity: 0.5;
}

popup {
  z-index: 9999 !important;
}

*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  border-radius: 0 25px 25px 0;
}
*::-webkit-scrollbar-track {
  background-color: transparent;
  border-radius: 0 25px 25px 0;
}
*::-webkit-scrollbar-thumb {
  background-color: #fbe7e1;
  border-radius: 25px;
  border: 2px solid #fbe7e1;
  transition: background-color 0.3s ease;
}
*::-webkit-scrollbar-thumb:hover {
  background-color: rgba(236, 98, 70, 0.6);
}

.splide__track {
  height: 100%;
  border-radius: 16px;
}

.splide__pagination {
  position: static;
}

.switch-infos {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 8px;
}
.switch-infos:has(switch label input.ng-empty) switch label {
  font-weight: bold;
}
.switch-infos:has(switch label input.ng-not-empty) > span {
  font-weight: bold;
}
.switch-infos switch label {
  margin-bottom: 0 !important;
}

sidebar {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1 !important;
}

header {
  position: fixed;
  top: 0px;
  width: calc(100% - 316px);
  left: 316px;
  padding-top: 20px;
  background-color: #e2f4f4;
}
@media (max-width: 1200px) {
  header {
    left: 0;
    width: 100%;
    padding-top: 0;
    position: sticky;
  }
}

.top-buttons {
  display: flex;
  gap: 16px;
  width: 100%;
  padding-inline: 24px;
  justify-content: flex-end;
}
.top-buttons > button {
  margin-top: 0px !important;
}
@media (max-width: 768px) {
  .top-buttons {
    margin-bottom: 16px;
  }
}

.content-wrapper {
  width: 75%;
  background-color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  border-radius: 25px;
  margin-top: -68px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  position: relative;
}
@media (max-width: 768px) {
  .content-wrapper {
    width: 100%;
  }
}
.content-wrapper .header {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: flex-start;
  align-items: flex-start;
}
.content-wrapper .content {
  font-size: 16px;
  line-height: 20px;
  margin: 20px 0;
}

.form-card {
  background-color: #ffffff;
  border-radius: 25px;
  padding: 12px;
  margin: 0 24px;
}
.form-card-title {
  padding: 20px 0px 0px;
  font-size: 20px;
  color: #29275a;
  width: 75%;
  margin: 0 auto;
}
.form-card .possible-answers {
  margin-top: 20px;
}
.form-card .possible-answers .field {
  margin-bottom: 30px;
}
.form-card .answer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  margin-bottom: 10px;
}
.form-card .answer-header .form-check {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}
.form-card .answer-header label {
  margin-bottom: 0;
}
.form-card .answer-header button {
  width: fit-content;
  margin: 0;
}

@media (max-width: 1200px) {
  [class*=admin-edit],
  [class*=admin-delete],
  [class*=admin-add],
  [class*=admin-actions] {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .page .header:has(.back-button) > div:first-of-type h1 {
    display: block;
    white-space: nowrap;
    width: 20vw;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .page .header:not(:has(.back-button)) > div:first-of-type h1 {
    white-space: nowrap;
    width: 20vw;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
  }
}
@media (min-width: 768px) and (max-width: 1440px), (min-width: 1500px) and (max-width: 1644px) {
  .page.dashboard-admin .header:has(.back-button) > div:first-of-type h1 {
    display: block;
    white-space: nowrap;
    width: 20vw;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .page.dashboard-admin .header:not(:has(.back-button)) > div:first-of-type h1 {
    white-space: nowrap;
    width: 20vw;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
  }
}
@media (min-width: 1200px) and (max-width: 1364px), (min-width: 1500px) and (max-width: 1560px) {
  .page.surveys:not(.admin-surveys) .header:has(.back-button) > div:first-of-type h1 {
    display: block;
    white-space: nowrap;
    width: 20vw;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .page.surveys:not(.admin-surveys) .header:not(:has(.back-button)) > div:first-of-type h1 {
    white-space: nowrap;
    width: 20vw;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
  }
}
@media (min-width: 1200px) and (max-width: 1364px) {
  .page.newsletter .header:has(.back-button) > div:first-of-type h1 {
    display: block;
    white-space: nowrap;
    width: 25vw;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .page.newsletter .header:not(:has(.back-button)) > div:first-of-type h1 {
    white-space: nowrap;
    width: 25vw;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
  }
}

label.with-icon {
  display: flex;
  align-items: center;
  gap: 2px;
}
label.with-icon icon,
label.with-icon icon > svg {
  width: 17px;
  height: 17px;
  margin-bottom: 2px;
  display: block;
}

@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
}
.sidebar {
  background-color: #29275a !important;
  margin: 20px;
  margin-right: 0;
  height: calc(100vh - 38px) !important;
  border-radius: 30px;
  width: 296px;
  display: flex;
}
.sidebar ul.nav-pills {
  overflow: auto;
  max-height: calc(100vh - 185px) !important;
  height: 100%;
  display: block;
}
@media (max-width: 1200px) {
  .sidebar {
    display: none;
  }
}
.sidebar .logo {
  margin-block: 24px 30px;
  height: 64px;
}
@media (min-width: 1201px) and (max-width: 1440px) {
  .sidebar .logo {
    margin: 8px 24px 24px;
    height: 48px;
  }
}
.sidebar .nav-item .nav-link {
  padding: 10px 30px !important;
  width: fit-content;
  cursor: pointer;
}
@media (min-width: 1201px) and (max-width: 1440px) {
  .sidebar .nav-item .nav-link {
    padding: 8px 32px !important;
  }
}
.sidebar .nav-item .nav-link.active {
  background-color: transparent;
}
.sidebar .nav-item .nav-link.active * {
  color: #16aca7;
  font-weight: bold;
}
.sidebar .nav-item .nav-link .sidebar-item-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 20px;
  color: #ffffff;
  font-weight: 300;
  position: relative;
}
.sidebar .nav-item .nav-link .sidebar-item-wrapper icon svg {
  margin-right: 30px !important;
  width: 20px;
  height: auto;
  aspect-ratio: 1/1;
}
@media (min-width: 1201px) and (max-width: 1440px) {
  .sidebar .nav-item .nav-link .sidebar-item-wrapper icon svg {
    margin-right: 20px !important;
  }
}
.sidebar .nav-item .nav-link .sidebar-item-wrapper div {
  font-size: 16px;
  line-height: 1.3;
}
@media (min-width: 1201px) and (max-width: 1440px) {
  .sidebar .nav-item .nav-link .sidebar-item-wrapper div {
    font-size: 14px;
  }
}
.sidebar .nav-item .nav-link .sidebar-item-wrapper .sidebar-item-count {
  position: absolute;
  top: 0px;
  right: -26px;
  background-color: #ec6246;
  font-size: 11px;
  color: #ffffff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}
.sidebar .hr-wrapper {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}
.sidebar .hr-wrapper hr {
  color: #ffffff;
  max-width: 100%;
  opacity: 1;
}

header {
  z-index: 30 !important;
}
header .header-container .header {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 0 24px;
}
@media (max-width: 1200px) {
  header .header-container .header {
    padding: 20px;
  }
}
@media (min-width: 1201px) {
  header .header-container .header {
    margin-bottom: 20px;
  }
}
header .header-container .header > div:first-child {
  display: flex;
  align-items: center;
  height: fit-content;
  position: relative;
  z-index: 3;
  gap: 10px;
}
header .header-container .header .back-button {
  margin-right: 10px;
  cursor: pointer;
}
header .header-container .header .sidebar-open-icon {
  display: none;
}
header .header-container .header .sidebar-open-icon #menu-header-toggle {
  display: none;
}
header .header-container .header .sidebar-open-icon svg {
  width: 28px;
  height: 28px;
  cursor: pointer;
}
@media (min-width: 768px) and (max-width: 1200px) {
  header .header-container .header .sidebar-open-icon {
    display: inline-block;
  }
}
header .header-container .header .search-bar {
  position: absolute;
  left: 50%;
  translate: -50%;
}
header .header-container .header .search-bar input {
  width: 450px;
}
@media (max-width: 1500px) {
  header .header-container .header .search-bar input {
    width: 250px;
  }
}
@media (max-width: 768px) {
  header .header-container .header .search-bar input {
    display: none;
  }
}
header .header-container .header .search-bar icon {
  position: absolute;
  right: 15px;
  top: 5px;
}
header .header-container .header .search-bar icon svg {
  width: 20px;
  height: 24px;
  display: block;
}
@media (max-width: 1200px) {
  header .header-container .header .search-bar icon {
    display: none;
  }
}
header .header-container .header .search-bar-results {
  max-height: 80vh;
  width: 600px;
  position: absolute;
  z-index: 99;
  top: 54px;
  box-shadow: 0px 0px 5px #c2c3c5;
  overflow-y: scroll;
  background-color: #ffffff;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 12px;
}
header .header-container .header .search-bar-results .entity-results {
  margin-top: 26px;
}
header .header-container .header .search-bar-results .entity-results h3 {
  cursor: pointer;
  margin: 0 16px 6px 16px;
}
header .header-container .header .search-bar-results .entity-results .entity-result {
  width: 100%;
  padding: 8px 30px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #ffffff;
  transition: all 0.3s ease;
  flex-direction: row;
  cursor: pointer;
  color: #212528;
}
header .header-container .header .search-bar-results .entity-results .entity-result:last-of-type {
  margin-bottom: 26px;
}
header .header-container .header .search-bar-results .entity-results .entity-result:hover {
  background-color: #e1f4f4;
}
header .header-container .header .search-bar-results .entity-results .entity-result .entity-result-image {
  height: 80px;
  width: 160px;
  min-width: 160px;
  object-fit: cover;
  margin-right: 16px;
}
header .header-container .header .search-bar-results .entity-results .entity-result .entity-result-value {
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
header .header-container .header .user-infos {
  display: flex;
  flex-direction: row;
  column-gap: 15px;
  align-items: center;
}
header .header-container .header .user-infos .user-avatar {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2f215b;
  color: #ffffff;
  border-radius: 50%;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
}
@media (max-width: 768px) {
  header .header-container .header .user-infos .user-avatar {
    background: #ffffff;
    color: #2f215b;
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 768px) {
  header .header-container .header .user-infos .notification-container {
    display: none;
  }
}
header .header-container .header .user-infos .user-name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
header .header-container .header .user-infos .user-name a {
  color: #29275a;
  font-weight: 600;
}
header .header-container .header .user-infos .user-name p {
  margin: 0;
  color: #29275a;
}
header .header-container .header .user-infos > img {
  width: 44px;
  height: 44px;
}
@media (max-width: 1400px) {
  header .header-container .header .user-infos > img {
    width: 50px;
    height: 50px;
  }
}
header .header-container .header .user-infos icon svg {
  height: 28px;
  width: auto;
  cursor: pointer;
}
header .header-container .header h1,
header .header-container .header .user-name a,
header .header-container .header .user-name p {
  transition: color 0.4s ease 0s;
}
@media (max-width: 768px) {
  header .header-container .header {
    background-color: #29275a;
    color: #ffffff;
    margin: 0;
    padding: 16px 25px;
    position: relative;
  }
  header .header-container .header h1 {
    font-size: 16px;
    color: #ffffff;
  }
  header .header-container .header icon[id="'menu'"] {
    display: none;
  }
  header .header-container .header icon[id="'notifications'"] svg {
    fill: #fff;
  }
  header .header-container .header .user-infos .user-name,
  header .header-container .header .user-infos img,
  header .header-container .header .user-infos icon[id="'settings'"] {
    display: none;
  }
}
header .header-container #menu-toggle {
  display: none;
}
header .header-container .menu {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #29275a;
  z-index: 999;
  height: 100vh;
  width: 100vw;
  color: #ffffff;
  padding: 32px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 40px;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  transition: all 0.6s cubic-bezier(0.66, 0, 0.4, 1);
  overflow: auto;
}
header .header-container .menu .logo {
  width: max-content;
}
@media (max-width: 768px) {
  header .header-container .menu .logo {
    width: 96px;
    height: auto;
  }
}
header .header-container .menu nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
header .header-container .menu nav .nav-link {
  display: flex;
  flex-direction: column;
  background-color: #405180;
  padding: 16px;
  border-radius: 16px;
  row-gap: 8px;
  translate: 0 40px;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.66, 0, 0.4, 1);
}
header .header-container .menu nav .nav-link:nth-of-type(1) {
  transition-delay: 0.1s;
}
header .header-container .menu nav .nav-link:nth-of-type(2) {
  transition-delay: 0.13s;
}
header .header-container .menu nav .nav-link:nth-of-type(3) {
  transition-delay: 0.16s;
}
header .header-container .menu nav .nav-link:nth-of-type(4) {
  transition-delay: 0.19s;
}
header .header-container .menu nav .nav-link:nth-of-type(5) {
  transition-delay: 0.22s;
}
header .header-container .menu nav .nav-link:nth-of-type(6) {
  transition-delay: 0.25s;
}
header .header-container .menu nav .nav-link:nth-of-type(7) {
  transition-delay: 0.28s;
}
header .header-container .menu nav .nav-link:nth-of-type(8) {
  transition-delay: 0.31s;
}
header .header-container .menu nav .nav-link:nth-of-type(9) {
  transition-delay: 0.34s;
}
header .header-container .menu nav .nav-link:nth-of-type(10) {
  transition-delay: 0.37s;
}
header .header-container .menu nav .nav-link:nth-of-type(11) {
  transition-delay: 0.4s;
}
header .header-container .menu nav .nav-link:nth-of-type(12) {
  transition-delay: 0.43s;
}
header .header-container .menu nav .nav-link svg {
  height: 24px;
  width: 24px;
}
header .header-container .menu nav .nav-link.active * {
  color: #16aca7;
  font-weight: bold;
}
header .header-container .menu {
  z-index: 1;
  padding: 84px 24px 24px;
  display: none;
}
@media (min-width: 769px) and (max-width: 1200px) {
  header .header-container .menu {
    display: flex;
  }
}

@media (min-width: 769px) {
  .mobile-menu {
    display: none;
  }
}
.mobile-menu .mobile-menu-container {
  justify-content: space-between;
  padding-inline: 20px;
  display: flex;
  height: 64px;
  width: min(100vw - 32px, 400px);
  background-color: #e1f4f4;
  align-items: center;
  border-radius: 16px;
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 1000;
  opacity: 1;
}
.mobile-menu .mobile-menu-container img {
  height: 32px;
  aspect-ratio: 1;
  border: 2px solid #16aca7;
  border-radius: 100vmax;
  overflow: hidden;
}
.mobile-menu .mobile-menu-container .sidebar-open-icon #menu-toggle {
  display: none;
}
.mobile-menu .mobile-menu-container .notification-container .notification-popup {
  bottom: 30px;
  right: 0;
  top: initial;
  width: 330px;
}
.mobile-menu #menu-toggle {
  display: none;
}
.mobile-menu .menu {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #29275a;
  z-index: 999;
  height: 100vh;
  width: 100vw;
  color: #ffffff;
  padding: 32px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 40px;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  transition: all 0.6s cubic-bezier(0.66, 0, 0.4, 1);
  overflow: auto;
}
.mobile-menu .menu .logo {
  width: max-content;
}
@media (max-width: 768px) {
  .mobile-menu .menu .logo {
    width: 96px;
    height: auto;
  }
}
.mobile-menu .menu nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.mobile-menu .menu nav .nav-link {
  display: flex;
  flex-direction: column;
  background-color: #405180;
  padding: 16px;
  border-radius: 16px;
  row-gap: 8px;
  translate: 0 40px;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.66, 0, 0.4, 1);
}
.mobile-menu .menu nav .nav-link:nth-of-type(1) {
  transition-delay: 0.1s;
}
.mobile-menu .menu nav .nav-link:nth-of-type(2) {
  transition-delay: 0.13s;
}
.mobile-menu .menu nav .nav-link:nth-of-type(3) {
  transition-delay: 0.16s;
}
.mobile-menu .menu nav .nav-link:nth-of-type(4) {
  transition-delay: 0.19s;
}
.mobile-menu .menu nav .nav-link:nth-of-type(5) {
  transition-delay: 0.22s;
}
.mobile-menu .menu nav .nav-link:nth-of-type(6) {
  transition-delay: 0.25s;
}
.mobile-menu .menu nav .nav-link:nth-of-type(7) {
  transition-delay: 0.28s;
}
.mobile-menu .menu nav .nav-link:nth-of-type(8) {
  transition-delay: 0.31s;
}
.mobile-menu .menu nav .nav-link:nth-of-type(9) {
  transition-delay: 0.34s;
}
.mobile-menu .menu nav .nav-link:nth-of-type(10) {
  transition-delay: 0.37s;
}
.mobile-menu .menu nav .nav-link:nth-of-type(11) {
  transition-delay: 0.4s;
}
.mobile-menu .menu nav .nav-link:nth-of-type(12) {
  transition-delay: 0.43s;
}
.mobile-menu .menu nav .nav-link svg {
  height: 24px;
  width: 24px;
}
.mobile-menu .menu nav .nav-link.active * {
  color: #16aca7;
  font-weight: bold;
}
.mobile-menu svg {
  width: 24px;
  height: 24px;
  aspect-ratio: 1;
}

div.table-container {
  width: 100%;
  height: fit-content;
  border-radius: 25px;
  box-shadow: 3px 3px 20px rgba(22, 172, 167, 0.078);
  padding: 0 24px;
}
@media screen and (max-width: 1200px) {
  div.table-container {
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  div.table-container {
    padding-top: 20px;
    overflow: scroll;
  }
}
div.table-container table.table {
  width: 100%;
  border-radius: 25px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  div.table-container table.table {
    overflow: scroll;
    min-width: 1000px;
  }
}
div.table-container table.table thead th {
  padding: 25px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  div.table-container table.table thead th:first-child {
    border-top-left-radius: 25px;
  }
  div.table-container table.table thead th:last-child {
    border-top-right-radius: 25px;
  }
}
div.table-container table.table thead th i {
  font-size: 12px;
}
div.table-container table.table thead th i.glyphicon-minus {
  display: none;
}
div.table-container table.table tbody tr td {
  padding: 25px;
  vertical-align: middle;
}
div.table-container table.table tbody tr td span {
  display: none;
}
div.table-container table.table tbody tr td img.image {
  border-radius: 15px;
  object-fit: cover;
  width: 100px;
  height: 100px;
}
div.table-container table.table tbody tr td p {
  margin-bottom: 0;
  max-width: 400px;
  word-break: auto-phrase;
  display: -webkit-box;
  hyphens: auto;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 15px;
  line-height: 18px;
  font-weight: 500;
  color: #29275a;
}
div.table-container table.table tbody tr td a.title {
  text-decoration: unset;
}
div.table-container table.table tbody tr td a.title p {
  font-size: 17px;
  line-height: 20px;
  font-weight: 600;
  color: #29275a;
}
div.table-container table.table tbody tr td .button-file {
  background-color: #fef5f3;
  color: #ec6246;
  transition: all 0.3s ease;
  font-size: 15px;
  padding: 6px 20px;
  border-radius: 16px;
  border: none;
  outline: none;
  line-height: 21px;
  text-decoration: none;
}
div.table-container table.table tbody tr td .button-file:hover {
  background-color: #ec6246;
  color: #ffffff;
}
div.table-container table.table tbody tr td p.date {
  font-size: 16px;
  font-weight: 600;
}
div.table-container table.table tbody tr .icon-file {
  padding-left: 20px;
}
div.table-container table.table tbody tr:last-of-type:not(.ng-scope.ng-hide):last-of-type td {
  border: none !important;
}

.pagination-wrapper {
  display: flex;
  justify-content: center;
}
.pagination-wrapper .pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}
.pagination-wrapper .pagination > li {
  display: inline;
}
.pagination-wrapper .pagination > li.disabled, .pagination-wrapper .pagination > li[disabled] {
  opacity: 1;
}
.pagination-wrapper .pagination > li > a,
.pagination-wrapper .pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  line-height: 1.42857143;
  text-decoration: none;
  color: #29275a;
  background-color: #fff;
  border: 1px solid #ddd;
  margin-left: -1px;
}
.pagination-wrapper .pagination > li:first-child > a,
.pagination-wrapper .pagination > li:first-child > span {
  margin-left: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
.pagination-wrapper .pagination > li:last-child > a,
.pagination-wrapper .pagination > li:last-child > span {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}
.pagination-wrapper .pagination > li > a:hover,
.pagination-wrapper .pagination > li > span:hover,
.pagination-wrapper .pagination > li > a:focus,
.pagination-wrapper .pagination > li > span:focus {
  color: #29275a;
  background-color: #eee;
  border-color: #ddd;
}
.pagination-wrapper .pagination > .active > a,
.pagination-wrapper .pagination > .active > span,
.pagination-wrapper .pagination > .active > a:hover,
.pagination-wrapper .pagination > .active > span:hover,
.pagination-wrapper .pagination > .active > a:focus,
.pagination-wrapper .pagination > .active > span:focus {
  z-index: 2;
  color: #fff;
  background-color: #29275a;
  border-color: #29275a;
  cursor: default;
}
.pagination-wrapper .pagination > .disabled > span {
  color: #e1f4f4;
  background-color: #fff;
  border-color: #ddd;
  cursor: not-allowed;
}
.pagination-wrapper .pagination > .disabled > span:hover, .pagination-wrapper .pagination > .disabled > span:focus {
  color: #e1f4f4;
  background-color: #fff;
  border-color: #ddd;
  cursor: not-allowed;
}
.pagination-wrapper .pagination > .disabled > a {
  color: #e1f4f4;
  background-color: #fff;
  border-color: #ddd;
  cursor: not-allowed;
}
.pagination-wrapper .pagination > .disabled > a:hover, .pagination-wrapper .pagination > .disabled > a:focus {
  color: #e1f4f4;
  background-color: #fff;
  border-color: #ddd;
  cursor: not-allowed;
}
.pagination-wrapper .pagination-lg > li > a,
.pagination-wrapper .pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
}
.pagination-wrapper .pagination-lg > li:first-child > a,
.pagination-wrapper .pagination-lg > li:first-child > span {
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
}
.pagination-wrapper .pagination-lg > li:last-child > a,
.pagination-wrapper .pagination-lg > li:last-child > span {
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
}
.pagination-wrapper .pagination-sm > li > a,
.pagination-wrapper .pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
}
.pagination-wrapper .pagination-sm > li:first-child > a,
.pagination-wrapper .pagination-sm > li:first-child > span {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}
.pagination-wrapper .pagination-sm > li:last-child > a,
.pagination-wrapper .pagination-sm > li:last-child > span {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}

form.form {
  display: flex;
  flex-direction: column;
  width: 75%;
  margin: 0 auto;
}
form.form .multiple-columns {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}
form.form .field {
  display: flex;
  flex-direction: column;
  font-size: 15px;
  margin-top: 20px;
  flex-grow: 1;
}
form.form .field.row {
  flex-direction: row !important;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
form.form .field.row label {
  margin: 0px !important;
  width: fit-content;
}
form.form .field.row input {
  width: fit-content;
}
form.form .field label {
  margin-bottom: 10px;
  color: #29275a;
  font-size: 16px;
  font-weight: 600;
}
form.form .field label.no-spacing {
  margin-bottom: 0;
}
form.form .field span.btn {
  width: fit-content;
}
form.form .field .links {
  display: flex;
  gap: 24px;
  width: 100%;
  margin-bottom: 10px;
}
form.form .field .links input {
  width: 100%;
}
form.form .field .links .delete-link {
  flex: none;
  cursor: pointer;
  width: 45px;
  height: 45px;
  border-radius: 9999px;
  background: #ec6246 url(/assets/img/icons/trash.svg) no-repeat center/40%;
  transition: all 0.3s ease;
}
form.form .field .links .delete-link:hover {
  opacity: 0.8;
}
form.form .cover {
  width: 100%;
  height: 256px;
  background-color: #29275a;
  border-radius: 25px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  margin-top: 20px;
  border: 1px solid #29275a;
}
form.form .cover.nofile {
  height: 45px;
  font-size: 16px;
}
form.form .cover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #29275a;
  opacity: 0;
  z-index: 2;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}
form.form .cover:has(img):hover img {
  filter: blur(4px);
  scale: 1.1;
}
form.form .cover:has(img):hover::after {
  opacity: 0.6;
}
form.form .cover .instructions {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  pointer-events: none;
  z-index: 3;
  transition: all 0.3s ease;
  font-size: 16px;
}
form.form .cover:hover {
  background-color: #39367e;
}
form.form .cover:hover .instructions {
  opacity: 0.4;
}
form.form .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
}
form.form button {
  width: fit-content;
  margin: 10px auto;
}
form.form .note-editor {
  border: 1px solid #29275a;
  border-radius: 25px;
  background-color: #ffffff;
}
form.form .note-editor button i {
  font-size: 14px;
}
form.form .note-statusbar {
  display: none;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content {
  background-color: #ffffff;
  border-radius: 16px;
  width: 500px;
  padding: 32px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  max-height: calc(100vh - 100px);
  overflow: auto;
}
.popup-content .popup-loader {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.8);
  width: 100%;
  height: 100%;
  z-index: 20;
  border-radius: 16px;
}
.popup-content .popup-loader .loader-flipping {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.popup-content h2 {
  margin-top: 0;
}
.popup-content p {
  margin: 15px 0;
}
.popup-content input {
  width: 100%;
}
.popup-content .popup-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.popup-content .popup-buttons button {
  color: #ffffff;
  border-radius: 9999px;
  padding: 12px 24px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: fit-content;
}
.popup-content .popup-buttons button.validate {
  background-color: #16aca7;
}
.popup-content .popup-buttons button.validate:hover {
  background-color: #e1f4f4;
  color: #16aca7;
}
.popup-content .popup-buttons button.cancel {
  background-color: #ec6246;
}
.popup-content .popup-buttons button.cancel:hover {
  background-color: #fef5f3;
  color: #ec6246;
}
.popup-content .popup-buttons button:focus {
  outline: none;
}
.popup-content .formats {
  color: #29275a;
  width: 100%;
  margin: 0 auto;
  opacity: 0.6;
  margin-block: -8px 8px;
}

accordion {
  width: 100%;
  height: fit-content;
  background-color: #fff;
  border-radius: 25px 7px 7px 25px;
  box-shadow: 3px 3px 20px rgba(22, 172, 167, 0.078);
  border: none;
}

toggle {
  margin-bottom: 15px;
  cursor: pointer;
  position: relative;
}
toggle:last-of-type {
  margin-bottom: 0;
}
toggle::after {
  content: "";
  position: absolute;
  left: 0;
  height: 2px;
  background-color: #f5fbfb;
  width: 100%;
}
toggle.disabled .toggle-header {
  background-color: #e37676 !important;
}
toggle.disabled .toggle-header:hover {
  cursor: not-allowed;
}
toggle .toggle-header {
  background-color: #fff !important;
  transition: all 0.3s ease-in-out;
  position: relative;
  height: 60px;
  background-color: #16aca7;
  border-radius: 25px;
}
toggle .toggle-header::before {
  content: "+";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 20px;
  color: #16aca7;
  font-weight: 600;
}
toggle .toggle-header:hover {
  background-color: #fff !important;
}
toggle .toggle-header > span {
  float: left;
  line-height: 60px;
  color: #29275a;
  padding: 0 20px;
  user-select: none;
  font-size: 15px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  toggle .toggle-header > span {
    line-height: 60px;
  }
}
toggle .toggle-header.open {
  border-radius: 25px 25px 0 0;
}
toggle .toggle-header.open::before {
  content: "-";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 20px;
  color: #16aca7;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  toggle .toggle-header.open::before {
    top: 25%;
    left: -5px;
  }
}
toggle .toggle-header.open + div {
  background: #fff;
  margin: 0 auto;
  padding: 25px 25px 25px 90px;
  cursor: default;
  position: relative;
  max-height: 1000px;
  transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  toggle .toggle-header.open + div {
    padding: 12px 12px 24px 12px;
    height: fit-content;
  }
}
toggle .toggle-header.open + div::before {
  content: "";
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
  height: 65%;
  width: 2px;
  background-color: #16aca7;
}
@media screen and (max-width: 768px) {
  toggle .toggle-header.open + div::before {
    display: none;
  }
}
toggle .toggle-header.open + div > div {
  color: #29275a;
  font-size: 14px;
  line-height: 20px;
  max-height: unset !important;
  border: none !important;
  cursor: text;
}
toggle .toggle-header + div {
  max-height: 0;
  overflow: hidden;
  padding-left: 90px;
  transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
}

.icon {
  transform: rotate(0deg);
  float: left;
}
.icon div {
  box-sizing: border-box;
}
.icon.chevron {
  height: 100%;
}
.icon.chevron.open {
  transform: rotate(90deg);
}
.icon.chevron > div {
  border-right-style: solid;
  border-right-color: #fff;
  border-bottom-style: solid;
  border-bottom-color: #fff;
  transform: rotate(-45deg);
  position: relative;
  height: 50%;
  width: 50%;
  left: 12.5%;
  top: 25%;
}
.icon.plus {
  height: 66.6667%;
}
.icon.plus.open {
  transform: rotate(90deg);
}
.icon.plus.open div:nth-child(1) {
  border-bottom-width: 0 !important;
}
.icon.plus.open div:nth-child(2) {
  border-bottom-width: 0 !important;
}
.icon.plus.open div:nth-child(3) {
  border-top-width: 0 !important;
}
.icon.plus.open div:nth-child(4) {
  border-top-width: 0 !important;
}
.icon.plus div {
  width: 50%;
  height: 50%;
  float: left;
}
.icon.plus div:nth-child(1) {
  border-right-style: solid;
  border-right-color: #fff;
  border-bottom-style: solid;
  border-bottom-color: #fff;
}
.icon.plus div:nth-child(2) {
  border-left-style: solid;
  border-left-color: #fff;
  border-bottom-style: solid;
  border-bottom-color: #fff;
}
.icon.plus div:nth-child(3) {
  border-right-style: solid;
  border-right-color: #fff;
  border-top-style: solid;
  border-top-color: #fff;
}
.icon.plus div:nth-child(4) {
  border-top-style: solid;
  border-top-color: #fff;
  border-left-style: solid;
  border-left-color: #fff;
}

label.switch {
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #212529 !important;
}

.switch {
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
  column-gap: 8px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  line-height: 20px;
  margin-bottom: 0;
  margin: 0;
  width: max-content;
}
.switch input {
  display: none;
}
.switch-inner {
  height: 14px;
  width: 14px;
  border-radius: 100vmax;
  box-shadow: 2px 2px 10px rgba(22, 172, 167, 0.078);
  background-color: white;
  position: absolute;
  top: 50%;
  left: 4px;
  transform: translateY(-50%);
  transition: all 0.3s ease-out;
}
.switch-container {
  position: relative;
  width: 32px;
  padding: 4px 4px;
  height: 20px;
  border-radius: 100vmax;
  background-color: rgba(41, 39, 90, 0.2);
  cursor: pointer;
  transition: all 0.3s ease-out;
}
input[type=checkbox]:checked + .switch-container {
  background-color: #29275a;
}
input[type=checkbox]:checked + .switch-container .switch-inner {
  left: calc(100% - 14px - 4px);
}

.notification-switch fieldset {
  border: none;
  padding: 0;
  margin: 0;
}
.notification-switch legend {
  font-size: 16px;
  font-weight: 600;
  color: #29275a;
}
.notification-switch .notification-switch-container {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
.notification-switch .notification-switch-container > switch {
  margin-right: 5px;
}

text-angular {
  border-radius: 25px;
  border: 1px solid #29275a !important;
}
text-angular div[text-angular-toolbar] {
  justify-content: start;
  padding: 15px 10px !important;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  background-color: #fff;
  border: none !important;
  border-bottom: 1px solid #29275a !important;
  opacity: 1 !important;
}
text-angular div[text-angular-toolbar] button:hover, text-angular div[text-angular-toolbar] button.active {
  background-color: #e1f4f4;
}
text-angular div[text-angular-toolbar] button.color-btn.btn-orange {
  border: 1px solid #ec6246;
}
text-angular div[text-angular-toolbar] button.color-btn.btn-green {
  border: 1px solid #16aca7;
}
text-angular div[text-angular-toolbar] button.color-btn.btn-purple {
  border: 1px solid #29275a;
}
text-angular div[text-angular-toolbar] button.color-btn.btn-black {
  border: 1px solid #212529;
}
text-angular .ta-editor {
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  border: none !important;
}
text-angular .ta-editor:focus-visible, text-angular .ta-editor:focus {
  outline: none !important;
  box-shadow: none !important;
}
text-angular .ta-editor div[contenteditable=true] {
  outline: none !important;
  box-shadow: none !important;
  max-height: 500px !important;
  overflow-y: scroll !important;
}

.notification-container {
  position: relative;
}
.notification-container .notification-popup {
  position: absolute;
  top: 30px;
  right: 0;
  width: 380px;
  background-color: #ffffff;
  box-shadow: 0 0 20px rgba(22, 172, 167, 0.078);
  border-radius: 5px;
  overflow: hidden;
  z-index: 1;
}
.notification-container .notification-popup .notification-items {
  height: 100%;
  max-height: 400px;
  overflow-y: auto;
  width: 100%;
}
.notification-container .notification-popup .notification-items .notification-loader {
  padding: 15px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.notification-container .notification-popup .notification-items .no-content {
  padding: 15px;
  text-align: center;
  color: #212529;
  font-size: 14px;
}
.notification-container .notification-popup .notification-items .notification-item {
  display: flex;
  width: 100%;
  align-items: center;
  border-bottom: 1px solid #F5FBFB;
  padding: 15px;
  overflow: hidden;
  cursor: pointer;
}
.notification-container .notification-popup .notification-items .notification-item.viewed {
  background: #f2f2f5;
}
.notification-container .notification-popup .notification-items .notification-item:hover {
  background: rgba(226, 244, 244, 0.6);
}
.notification-container .notification-popup .notification-items .notification-item:first-of-type {
  margin-top: 0;
}
.notification-container .notification-popup .notification-items .notification-item:last-of-type {
  margin-bottom: 0;
  border-bottom: none;
}
.notification-container .notification-popup .notification-items .notification-item .notification-item-content {
  width: 100%;
}
.notification-container .notification-popup .notification-items .notification-item .notification-item-content .notification-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.notification-container .notification-popup .notification-items .notification-item .notification-item-content .notification-item-header .notification-item-title {
  display: flex;
  align-items: center;
  width: 100%;
  color: #29275a;
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
}
.notification-container .notification-popup .notification-items .notification-item .notification-item-content .notification-item-header .notification-item-title .notification-item-icon {
  margin-right: 8px;
}
.notification-container .notification-popup .notification-items .notification-item .notification-item-content .notification-item-header .notification-item-title .notification-item-icon > icon > svg {
  width: 20px;
}
.notification-container .notification-popup .notification-items .notification-item .notification-item-content .notification-item-header .notification-item-date {
  color: #212529;
  font-size: 10px;
  white-space: nowrap;
}
.notification-container .notification-popup .notification-items .notification-item .notification-item-description {
  white-space: pre-line;
}
.notification-container .notification-container-icon {
  position: relative;
  cursor: pointer;
}
.notification-container .notification-container-icon .notification-container-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #ec6246;
  font-size: 11px;
  color: #ffffff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-flipping {
  width: 30px;
  aspect-ratio: 1;
  display: grid;
  grid: 50%/50%;
  color: #ec6246;
  border-radius: 50%;
  --_g: no-repeat linear-gradient(currentColor 0 0);
  background: var(--_g), var(--_g), var(--_g);
  background-size: 50.1% 50.1%;
  animation: l9-0 1.5s infinite steps(1) alternate, l9-0-0 3s infinite steps(1) alternate;
}

.loader-flipping::before {
  content: "";
  background: currentColor;
  border-top-left-radius: 100px;
  transform: perspective(150px) rotateY(0deg) rotateX(0deg);
  transform-origin: bottom right;
  animation: l9-1 1.5s infinite linear alternate;
}

@keyframes l9-0 {
  0% {
    background-position: 0 100%, 100% 100%, 100% 0;
  }
  33% {
    background-position: 100% 100%, 100% 100%, 100% 0;
  }
  66% {
    background-position: 100% 0, 100% 0, 100% 0;
  }
}
@keyframes l9-0-0 {
  0% {
    transform: scaleX(1) rotate(0deg);
  }
  50% {
    transform: scaleX(-1) rotate(-90deg);
  }
}
@keyframes l9-1 {
  16.5% {
    transform: perspective(150px) rotateX(-90deg) rotateY(0deg) rotateX(0deg);
    filter: grayscale(0.8);
  }
  33% {
    transform: perspective(150px) rotateX(-180deg) rotateY(0deg) rotateX(0deg);
  }
  66% {
    transform: perspective(150px) rotateX(-180deg) rotateY(-180deg) rotateX(0deg);
  }
  100% {
    transform: perspective(150px) rotateX(-180deg) rotateY(-180deg) rotateX(-180deg);
    filter: grayscale(0.8);
  }
}
.onboarding-container .onboarding-popover .onboarding-arrow:after, .onboarding-container .onboarding-popover .onboarding-arrow {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.onboarding-container .onboarding-popover.onboarding-centered {
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.onboarding-container {
  height: 100vh;
  position: absolute;
  width: 100vw;
}
.onboarding-container .onboarding-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.onboarding-container .onboarding-popover {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  max-height: calc(100vh - 100px);
  max-width: 500px;
  min-width: 100px;
  z-index: 1001;
}
.onboarding-container .onboarding-popover.onboarding-centered {
  top: 50%;
  left: 50%;
}
.onboarding-container .onboarding-popover.onboarding-top {
  margin-top: -10px;
}
.onboarding-container .onboarding-popover.onboarding-top .onboarding-arrow {
  bottom: -11px;
  left: var(--arrow-position, 50%);
  margin-left: -11px;
  border-top-color: #cccccc;
  border-bottom-width: 0;
}
.onboarding-container .onboarding-popover.onboarding-top .onboarding-arrow:after {
  content: " ";
  bottom: 1px;
  margin-left: -10px;
  border-bottom-width: 0;
  border-top-color: #ffffff;
}
.onboarding-container .onboarding-popover.onboarding-right {
  margin-left: 10px;
}
.onboarding-container .onboarding-popover.onboarding-right .onboarding-arrow {
  top: var(--arrow-position, 50%);
  left: -11px;
  margin-top: -11px;
  border-right-color: #cccccc;
  border-left-width: 0;
}
.onboarding-container .onboarding-popover.onboarding-right .onboarding-arrow:after {
  content: " ";
  left: 1px;
  bottom: -10px;
  border-left-width: 0;
  border-right-color: #ffffff;
}
.onboarding-container .onboarding-popover.onboarding-bottom {
  margin-top: 10px;
}
.onboarding-container .onboarding-popover.onboarding-bottom .onboarding-arrow {
  top: -11px;
  left: var(--arrow-position, 50%);
  margin-left: -11px;
  border-bottom-color: #cccccc;
  border-top-width: 0;
}
.onboarding-container .onboarding-popover.onboarding-bottom .onboarding-arrow:after {
  content: " ";
  top: 1px;
  margin-left: -10px;
  border-top-width: 0;
  border-bottom-color: #ffffff;
}
.onboarding-container .onboarding-popover.onboarding-left {
  margin-left: -10px;
}
.onboarding-container .onboarding-popover.onboarding-left .onboarding-arrow {
  top: var(--arrow-position, 50%);
  right: -11px;
  margin-top: -11px;
  border-left-color: #cccccc;
  border-right-width: 0;
}
.onboarding-container .onboarding-popover.onboarding-left .onboarding-arrow:after {
  content: " ";
  right: 1px;
  border-right-width: 0;
  border-left-color: #ffffff;
  bottom: -10px;
}
.onboarding-container .onboarding-popover .onboarding-arrow {
  border-width: 11px;
}
.onboarding-container .onboarding-popover .onboarding-arrow:after {
  border-width: 10px;
  content: "";
}
.onboarding-container .onboarding-popover .onboarding-popover-title {
  margin-top: 0;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}
.onboarding-container .onboarding-popover .onboarding-close-button {
  position: absolute;
  top: 16px;
  right: 16px;
  color: #29275a;
  text-decoration: none;
  font-size: 1.2rem;
  padding: 8px;
  cursor: pointer;
}
.onboarding-container .onboarding-popover .onboarding-close-button:hover, .onboarding-container .onboarding-popover .onboarding-close-button:visited {
  color: #29275a;
  opacity: 0.8;
}
.onboarding-container .onboarding-popover .onboarding-popover-content {
  padding: 15px 0;
}
.onboarding-container .onboarding-popover .onboarding-popover-content p {
  margin: 15px 0;
  font-size: 14px;
}
.onboarding-container .onboarding-popover .onboarding-button-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.onboarding-container .onboarding-popover .onboarding-button-container .onboarding-step-info {
  margin-right: auto;
  font-size: 0.9rem;
  color: rgba(41, 39, 90, 0.6);
}
.onboarding-container .onboarding-popover .onboarding-button-container .onboarding-button {
  color: #ffffff;
  border-radius: 9999px;
  padding: 12px 24px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: fit-content;
  border: none;
}
.onboarding-container .onboarding-popover .onboarding-button-container .onboarding-button[ng-click="next()"] {
  background-color: #16aca7;
}
.onboarding-container .onboarding-popover .onboarding-button-container .onboarding-button[ng-click="next()"]:hover {
  background-color: #e1f4f4;
  color: #16aca7;
}
.onboarding-container .onboarding-popover .onboarding-button-container .onboarding-button[ng-click="previous()"] {
  background-color: #ec6246;
}
.onboarding-container .onboarding-popover .onboarding-button-container .onboarding-button[ng-click="previous()"]:hover {
  background-color: #fef5f3;
  color: #ec6246;
}
.onboarding-container .onboarding-popover .onboarding-button-container .onboarding-button[ng-click="close()"] {
  background-color: #29275a;
}
.onboarding-container .onboarding-popover .onboarding-button-container .onboarding-button[ng-click="close()"]:hover {
  background-color: #f2f2f5;
  color: #29275a;
}
.onboarding-container .onboarding-popover .onboarding-button-container .onboarding-button:focus {
  outline: none;
}

.onboarding-focus {
  z-index: 999;
  position: relative;
}

.mobile-search {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
}
.mobile-search.active {
  transform: translateX(0);
}
.mobile-search .mobile-search-header {
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: #e1f4f4;
}
.mobile-search .mobile-search-header icon {
  cursor: pointer;
}
.mobile-search .mobile-search-header icon svg {
  width: 24px;
  height: 24px;
}
.mobile-search .mobile-search-header .search-input-container {
  position: relative;
  flex: 1;
}
.mobile-search .mobile-search-header .search-input-container input {
  width: 100%;
  padding-right: 40px;
}
.mobile-search .mobile-search-header .search-input-container icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.mobile-search .mobile-search-results {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}
.mobile-search .mobile-search-results .entity-group {
  margin-bottom: 24px;
}
.mobile-search .mobile-search-results .entity-group .entity-title {
  color: #16aca7;
  font-size: 18px;
  margin-bottom: 12px;
}
.mobile-search .mobile-search-results .entity-result {
  margin-bottom: 16px;
}
.mobile-search .mobile-search-results .entity-result a {
  text-decoration: none;
  color: inherit;
}
.mobile-search .mobile-search-results .entity-result .result-content {
  display: flex;
  gap: 12px;
  flex-direction: row;
  align-items: center !important;
  margin-bottom: 10px;
}
.mobile-search .mobile-search-results .entity-result .result-content img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 4px;
}
.mobile-search .mobile-search-results .entity-result .result-content .result-text .entity-result-value {
  font-size: 14px;
}

.page.list .empty-state {
  width: 100%;
  height: 100%;
  border-radius: 25px;
  display: grid;
  place-content: center;
  justify-items: center;
  row-gap: 24px;
  background-color: white;
}
.page.list .empty-state * {
  margin: 0;
}
.page.list .empty-state p {
  font-size: 20px;
}
.page.list .empty-state button {
  width: max-content;
}
.page .loading-state {
  width: 100%;
  height: 100%;
  border-radius: 25px;
  display: grid;
  place-content: center;
  justify-items: center;
  row-gap: 24px;
  background-color: white;
}
.page .loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  position: relative;
  animation: rotate 0.6s linear infinite;
}
.page .loader::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  inset: 0px;
  border-radius: 50%;
  border: 5px solid #ec6246;
  animation: prixClipFix 2s linear infinite;
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes prixClipFix {
  0% {
    clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
  }
  12.5% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
  }
  25% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
  }
  37.5% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
  }
  62.5% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
  }
  87.5% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
  }
  100% {
    clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
  }
}

.admin-update-button {
  width: fit-content;
  align-self: end;
  margin: 10px 0;
}
@media (max-width: 1200px) {
  .admin-update-button {
    padding: 0 20px;
  }
}

.about-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  gap: 24px;
  padding: 0 24px;
}
@media (max-width: 1200px) {
  .about-wrapper {
    padding: 0 20px;
  }
}
@media (max-width: 1024px) {
  .about-wrapper {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.about-wrapper h3 {
  margin-bottom: 32px;
  font-weight: bold;
}
.about-wrapper h3,
.about-wrapper strong,
.about-wrapper p,
.about-wrapper li {
  color: #29275a;
}
.about-wrapper .about-cse,
.about-wrapper .cse-missions,
.about-wrapper .organigramme,
.about-wrapper .trombinoscope {
  position: relative;
}
.about-wrapper .about-cse:hover .admin-edit-cse-nactim,
.about-wrapper .about-cse:hover .admin-create-people,
.about-wrapper .about-cse:hover .admin-delete-people,
.about-wrapper .about-cse:hover .admin-edit-people,
.about-wrapper .cse-missions:hover .admin-edit-cse-nactim,
.about-wrapper .cse-missions:hover .admin-create-people,
.about-wrapper .cse-missions:hover .admin-delete-people,
.about-wrapper .cse-missions:hover .admin-edit-people,
.about-wrapper .organigramme:hover .admin-edit-cse-nactim,
.about-wrapper .organigramme:hover .admin-create-people,
.about-wrapper .organigramme:hover .admin-delete-people,
.about-wrapper .organigramme:hover .admin-edit-people,
.about-wrapper .trombinoscope:hover .admin-edit-cse-nactim,
.about-wrapper .trombinoscope:hover .admin-create-people,
.about-wrapper .trombinoscope:hover .admin-delete-people,
.about-wrapper .trombinoscope:hover .admin-edit-people {
  opacity: 1;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.about-wrapper .about-cse .admin-edit-cse-nactim,
.about-wrapper .cse-missions .admin-edit-cse-nactim,
.about-wrapper .organigramme .admin-edit-cse-nactim,
.about-wrapper .trombinoscope .admin-edit-cse-nactim {
  position: absolute;
  opacity: 0;
  top: 24px;
  right: 24px;
  margin: 0;
  z-index: 2;
  padding: 6px 20px 6px 40px;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
@media (max-width: 768px) {
  .about-wrapper .about-cse .admin-edit-cse-nactim,
  .about-wrapper .cse-missions .admin-edit-cse-nactim,
  .about-wrapper .organigramme .admin-edit-cse-nactim,
  .about-wrapper .trombinoscope .admin-edit-cse-nactim {
    display: none;
  }
}
.about-wrapper .about-cse .admin-edit-cse-nactim:hover:before,
.about-wrapper .cse-missions .admin-edit-cse-nactim:hover:before,
.about-wrapper .organigramme .admin-edit-cse-nactim:hover:before,
.about-wrapper .trombinoscope .admin-edit-cse-nactim:hover:before {
  background: transparent url(/assets/img/icons/edit-colored.svg) no-repeat center/cover;
}
.about-wrapper .about-cse .admin-edit-cse-nactim::before,
.about-wrapper .cse-missions .admin-edit-cse-nactim::before,
.about-wrapper .organigramme .admin-edit-cse-nactim::before,
.about-wrapper .trombinoscope .admin-edit-cse-nactim::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 14px;
  background: transparent url(/assets/img/icons/edit.svg) no-repeat center/cover;
}
.about-wrapper .about-cse .admin-delete-people,
.about-wrapper .about-cse .admin-edit-people,
.about-wrapper .about-cse .admin-create-people,
.about-wrapper .cse-missions .admin-delete-people,
.about-wrapper .cse-missions .admin-edit-people,
.about-wrapper .cse-missions .admin-create-people,
.about-wrapper .organigramme .admin-delete-people,
.about-wrapper .organigramme .admin-edit-people,
.about-wrapper .organigramme .admin-create-people,
.about-wrapper .trombinoscope .admin-delete-people,
.about-wrapper .trombinoscope .admin-edit-people,
.about-wrapper .trombinoscope .admin-create-people {
  position: absolute;
  display: flex;
  opacity: 0;
  top: 16px;
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  z-index: 2;
  cursor: pointer;
}
@media (max-width: 768px) {
  .about-wrapper .about-cse .admin-delete-people,
  .about-wrapper .about-cse .admin-edit-people,
  .about-wrapper .about-cse .admin-create-people,
  .about-wrapper .cse-missions .admin-delete-people,
  .about-wrapper .cse-missions .admin-edit-people,
  .about-wrapper .cse-missions .admin-create-people,
  .about-wrapper .organigramme .admin-delete-people,
  .about-wrapper .organigramme .admin-edit-people,
  .about-wrapper .organigramme .admin-create-people,
  .about-wrapper .trombinoscope .admin-delete-people,
  .about-wrapper .trombinoscope .admin-edit-people,
  .about-wrapper .trombinoscope .admin-create-people {
    display: none;
  }
}
.about-wrapper .about-cse .admin-delete-people,
.about-wrapper .cse-missions .admin-delete-people,
.about-wrapper .organigramme .admin-delete-people,
.about-wrapper .trombinoscope .admin-delete-people {
  right: 24px;
  background: #ec6246 url(/assets/img/icons/trash.svg) no-repeat center/50%;
}
.about-wrapper .about-cse .admin-edit-people,
.about-wrapper .cse-missions .admin-edit-people,
.about-wrapper .organigramme .admin-edit-people,
.about-wrapper .trombinoscope .admin-edit-people {
  right: 64px;
  background: #29275a url(/assets/img/icons/edit.svg) no-repeat center/50%;
}
.about-wrapper .about-cse .admin-create-people,
.about-wrapper .cse-missions .admin-create-people,
.about-wrapper .organigramme .admin-create-people,
.about-wrapper .trombinoscope .admin-create-people {
  top: 24px;
  right: 24px;
  background: #29275a url(/assets/img/icons/add.svg) no-repeat center/70%;
}
.about-wrapper .about-left-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about-wrapper .about-left-column .about-cse {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  background-color: #16aca7;
  padding: 24px;
  border-radius: 24px;
}
@media (max-width: 1800px) {
  .about-wrapper .about-left-column .about-cse {
    flex-direction: column;
  }
}
.about-wrapper .about-left-column .about-cse .about-cse-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 275px;
  flex: none;
}
@media (max-width: 1800px) {
  .about-wrapper .about-left-column .about-cse .about-cse-content {
    max-width: 100%;
  }
}
.about-wrapper .about-left-column .about-cse .about-cse-content h3,
.about-wrapper .about-left-column .about-cse .about-cse-content p {
  color: #ffffff;
}
.about-wrapper .about-left-column .about-cse .about-cse-content p {
  font-weight: bold;
}
.about-wrapper .about-left-column .about-cse .about-cse-img {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0;
}
@media (max-width: 1800px) {
  .about-wrapper .about-left-column .about-cse .about-cse-img {
    justify-content: flex-start;
  }
}
.about-wrapper .about-left-column .about-cse .about-cse-img img {
  height: 100%;
  max-height: 175px;
}
@media (max-width: 1800px) {
  .about-wrapper .about-left-column .about-cse .about-cse-img img {
    max-width: 400px;
    height: auto;
    width: 100%;
    max-height: unset;
  }
}
.about-wrapper .about-left-column .cse-missions {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 24px;
}
.about-wrapper .about-left-column .cse-missions strong {
  margin-bottom: 4px;
}
.about-wrapper .about-left-column .cse-missions p {
  margin-bottom: 24px;
}
.about-wrapper .about-left-column .cse-missions ul {
  margin-bottom: 32px;
  list-style-type: "- ";
}
.about-wrapper .about-left-column .cse-missions figure {
  width: 100%;
  max-height: 350px;
  position: relative;
}
.about-wrapper .about-left-column .cse-missions figure::before {
  content: "";
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 54%, rgba(22, 172, 167, 0.7) 100%);
  border-radius: 24px;
}
.about-wrapper .about-left-column .cse-missions figure img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 24px;
}
.about-wrapper .about-right-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about-wrapper .about-right-column .organigramme {
  display: grid;
}
.about-wrapper .about-right-column .organigramme,
.about-wrapper .about-right-column .trombinoscope {
  justify-items: flex-start;
  width: 100%;
  padding: 24px;
  border-radius: 24px;
  background-color: #ffffff;
}
.about-wrapper .about-right-column .organigramme h3,
.about-wrapper .about-right-column .trombinoscope h3 {
  flex: none;
  margin-bottom: 0;
}
.about-wrapper .about-right-column .organigramme img,
.about-wrapper .about-right-column .trombinoscope img {
  max-height: 600px;
  width: 100%;
  object-fit: contain;
  justify-self: center;
}
.about-wrapper .about-right-column .peoples-slider {
  width: 100%;
}
.about-wrapper .about-right-column .peoples-slider .splide__arrow--prev {
  left: -5px;
}
.about-wrapper .about-right-column .peoples-slider .splide__arrow--next {
  right: -5px;
}
.about-wrapper .about-right-column .peoples-slider .splide__track {
  margin: 0 30px;
}
.about-wrapper .about-right-column .peoples-slider > .btn {
  position: absolute;
  top: 8px;
  right: 8px;
  margin: 0;
  z-index: 2;
  font-size: 14px;
}
.about-wrapper .about-right-column .peoples-slider .peoples-recap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 16px;
  position: relative;
  width: 100%;
  height: fit-content;
  overflow: hidden;
  border-radius: 16px;
}
.about-wrapper .about-right-column .peoples-slider .peoples-recap img {
  height: 150px;
  width: 150px;
  aspect-ratio: 1;
  border-radius: 16px;
  object-fit: cover;
}
.about-wrapper .about-right-column .peoples-slider .peoples-recap .peoples-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  width: 100%;
  padding: 16px;
}
.about-wrapper .about-right-column .peoples-slider .peoples-recap .peoples-info p {
  margin: 0;
  font-size: 14px;
}

.page.cssct .cssct-blocs {
  display: grid;
  grid-template-columns: 2fr 2fr;
  gap: 24px;
  height: 100%;
  padding: 0 24px;
}
@media (max-width: 1200px) {
  .page.cssct .cssct-blocs {
    padding: 0 24px;
  }
}
@media (max-width: 1024px) {
  .page.cssct .cssct-blocs {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.page.cssct .cssct-blocs .cssct-content {
  grid-column: 1;
  background-color: #fff;
  padding: 24px;
  border-radius: 16px;
  height: fit-content;
  position: relative;
}
.page.cssct .cssct-blocs .cssct-content:hover .admin-edit-cssct {
  opacity: 1;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.page.cssct .cssct-blocs .trombinoscope,
.page.cssct .cssct-blocs .cssct-links {
  grid-column: 2;
  background-color: #fff;
  padding: 24px;
  border-radius: 16px;
  height: fit-content;
  position: relative;
}
@media (max-width: 1024px) {
  .page.cssct .cssct-blocs .trombinoscope,
  .page.cssct .cssct-blocs .cssct-links {
    grid-column: 1;
  }
}
.page.cssct .cssct-blocs .trombinoscope:hover .admin-edit-cssct,
.page.cssct .cssct-blocs .cssct-links:hover .admin-edit-cssct {
  opacity: 1;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.page.cssct .cssct-blocs .trombinoscope {
  /*.peoples-recap {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      position: relative;
      width: 100%;
      height: fit-content;
      overflow: hidden;
      border-radius: 16px;

      img {
          height: 150px;
          width: 150px;
          aspect-ratio: 1;
          border-radius: 16px;
          object-fit: cover;
      }

      .peoples-info {
          display: flex;
          flex-direction: column;
          gap: 8px;
          align-items: center;
          width: 100%;
          padding: 16px;

          p {
              margin: 0;
              font-size: 14px;
          }
      }
  }*/
}
@media (max-width: 1024px) {
  .page.cssct .cssct-blocs .trombinoscope {
    margin-bottom: 24px;
  }
}
.page.cssct .cssct-blocs .trombinoscope .peoples-slider {
  width: 100%;
}
.page.cssct .cssct-blocs .trombinoscope .peoples-slider .splide__arrow--prev {
  left: -5px;
}
.page.cssct .cssct-blocs .trombinoscope .peoples-slider .splide__arrow--next {
  right: -5px;
}
.page.cssct .cssct-blocs .trombinoscope .peoples-slider .splide__track {
  margin: 0 30px;
}
.page.cssct .cssct-blocs .trombinoscope .peoples-recap {
  position: relative;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.page.cssct .cssct-blocs .trombinoscope .peoples-recap img {
  width: 120px;
  height: 120px;
  border-radius: 16px;
  object-fit: cover;
}
.page.cssct .cssct-blocs .trombinoscope .peoples-recap .peoples-info h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}
.page.cssct .cssct-blocs .trombinoscope .peoples-recap .peoples-info p {
  margin: 4px 0 0;
  font-size: 14px;
  color: gray;
}
.page.cssct .cssct-blocs .cssct-links {
  margin-top: 24px;
}
@media (max-width: 1024px) {
  .page.cssct .cssct-blocs .cssct-links {
    margin-top: 0;
  }
}
.page.cssct .cssct-blocs .cssct-links .cssct-link {
  margin-bottom: 24px;
}
.page.cssct .cssct-blocs .cssct-links .cssct-link:last-child {
  margin-bottom: 0;
}

.page.dashboard {
  height: 100vh;
  max-height: 100vh;
}
@media (min-width: 767px) {
  .page.dashboard .page-content {
    overflow: hidden;
  }
}
.page.dashboard .welcome-text {
  padding: 0px 24px;
  color: #29275a;
  order: -10;
}
.page.dashboard .welcome-text > * {
  display: block;
}
@media screen and (min-width: 769px) {
  .page.dashboard .welcome-text {
    display: none;
  }
}
.page.dashboard .welcome-text .heading {
  font-size: 20px;
  margin-bottom: 8px;
}
.page.dashboard .welcome-text .subheading {
  font-size: 16px;
}
.page.dashboard .dashboard-view,
.page.dashboard .dashboard-admin-view {
  display: grid;
  grid-template-columns: repeat(11, minmax(0, 1fr));
  grid-template-rows: repeat(6, minmax(0, 1fr));
  gap: 16px 20px;
  padding: 0 24px;
  height: 100%;
  padding-bottom: 90px;
}
.page.dashboard .dashboard-view .no-content,
.page.dashboard .dashboard-admin-view .no-content {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  color: #29275a;
  font-size: 16px;
  width: max-content;
}
@media (max-width: 1920px) {
  .page.dashboard .dashboard-view,
  .page.dashboard .dashboard-admin-view {
    padding-bottom: 0;
  }
}
@media (max-width: 1360px) {
  .page.dashboard .dashboard-view,
  .page.dashboard .dashboard-admin-view {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: initial;
  }
}
@media (max-width: 1200px) {
  .page.dashboard .dashboard-view,
  .page.dashboard .dashboard-admin-view {
    padding: 24px;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .page.dashboard .dashboard-view,
  .page.dashboard .dashboard-admin-view {
    display: flex;
    flex-direction: column;
    padding: 0 16px 24px;
  }
}
@media (min-width: 1360px) {
  .page.dashboard .dashboard-view,
  .page.dashboard .dashboard-admin-view {
    height: 100%;
  }
}
.page.dashboard .dashboard-view > div:first-child,
.page.dashboard .dashboard-admin-view > div:first-child {
  grid-column: span 2/span 2;
}
@media (max-width: 2000px) {
  .page.dashboard .dashboard-view > div:first-child,
  .page.dashboard .dashboard-admin-view > div:first-child {
    grid-column: span 1/span 1;
  }
}
.page.dashboard .dashboard-view .card,
.page.dashboard .dashboard-admin-view .card {
  padding: 16px 24px;
  border-radius: 25px;
  box-shadow: 3px 3px 20px rgba(22, 172, 167, 0.078);
  border: none;
  width: 100%;
}
.page.dashboard .dashboard-view .card-title,
.page.dashboard .dashboard-admin-view .card-title {
  margin: 0 0 16px;
}
@media (max-width: 768px) {
  .page.dashboard .dashboard-view .card,
  .page.dashboard .dashboard-admin-view .card {
    padding: 16px;
    border-radius: 16px;
  }
}
@media (min-width: 1360px) {
  .page.dashboard .dashboard-view .card,
  .page.dashboard .dashboard-admin-view .card {
    padding: 16px 24px;
  }
}
.page.dashboard .dashboard-view .card.w-h-300px,
.page.dashboard .dashboard-admin-view .card.w-h-300px {
  width: 300px;
  min-width: 300px;
  height: auto;
}
.page.dashboard .dashboard-view .card.max-h-300px,
.page.dashboard .dashboard-admin-view .card.max-h-300px {
  max-height: 300px;
}
.page.dashboard .dashboard-view .card.max-w-600px,
.page.dashboard .dashboard-admin-view .card.max-w-600px {
  max-width: 600px;
}
.page.dashboard .dashboard-view .card.less-x-padding,
.page.dashboard .dashboard-admin-view .card.less-x-padding {
  padding-left: 15px;
  padding-right: 15px;
}
.page.dashboard .dashboard-view .card.less-y-padding,
.page.dashboard .dashboard-admin-view .card.less-y-padding {
  padding-top: 10px;
  padding-bottom: 10px;
}
.page.dashboard .dashboard-view .card.green,
.page.dashboard .dashboard-admin-view .card.green {
  background-color: #16aca7;
}
.page.dashboard .dashboard-view .card.green .card-title h2,
.page.dashboard .dashboard-admin-view .card.green .card-title h2 {
  color: #ffffff;
}
@media (min-width: 1360px) {
  .page.dashboard .dashboard-view .card:is(.page.dashboard .dashboard-view .card.quick-access, .page.dashboard .dashboard-view .card.social-works,
  .page.dashboard .dashboard-admin-view .card.quick-access,
  .page.dashboard .dashboard-admin-view .card.social-works),
  .page.dashboard .dashboard-admin-view .card:is(.page.dashboard .dashboard-view .card.quick-access, .page.dashboard .dashboard-view .card.social-works,
  .page.dashboard .dashboard-admin-view .card.quick-access,
  .page.dashboard .dashboard-admin-view .card.social-works) {
    row-gap: 8px;
  }
  .page.dashboard .dashboard-view .card:is(.page.dashboard .dashboard-view .card.quick-access, .page.dashboard .dashboard-view .card.social-works,
  .page.dashboard .dashboard-admin-view .card.quick-access,
  .page.dashboard .dashboard-admin-view .card.social-works) .card-title,
  .page.dashboard .dashboard-admin-view .card:is(.page.dashboard .dashboard-view .card.quick-access, .page.dashboard .dashboard-view .card.social-works,
  .page.dashboard .dashboard-admin-view .card.quick-access,
  .page.dashboard .dashboard-admin-view .card.social-works) .card-title {
    margin: 0;
  }
  .page.dashboard .dashboard-view .card:is(.page.dashboard .dashboard-view .card.quick-access, .page.dashboard .dashboard-view .card.social-works,
  .page.dashboard .dashboard-admin-view .card.quick-access,
  .page.dashboard .dashboard-admin-view .card.social-works) h2,
  .page.dashboard .dashboard-admin-view .card:is(.page.dashboard .dashboard-view .card.quick-access, .page.dashboard .dashboard-view .card.social-works,
  .page.dashboard .dashboard-admin-view .card.quick-access,
  .page.dashboard .dashboard-admin-view .card.social-works) h2 {
    margin: 0;
  }
}
.page.dashboard .dashboard-view .card:is(.page.dashboard .dashboard-view .card.quick-access, .page.dashboard .dashboard-view .card.social-works,
.page.dashboard .dashboard-admin-view .card.quick-access,
.page.dashboard .dashboard-admin-view .card.social-works) .card-body,
.page.dashboard .dashboard-admin-view .card:is(.page.dashboard .dashboard-view .card.quick-access, .page.dashboard .dashboard-view .card.social-works,
.page.dashboard .dashboard-admin-view .card.quick-access,
.page.dashboard .dashboard-admin-view .card.social-works) .card-body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
}
@media (max-width: 1360px) {
  .page.dashboard .dashboard-view .card:is(.page.dashboard .dashboard-view .card.quick-access, .page.dashboard .dashboard-view .card.social-works,
  .page.dashboard .dashboard-admin-view .card.quick-access,
  .page.dashboard .dashboard-admin-view .card.social-works) .card-body,
  .page.dashboard .dashboard-admin-view .card:is(.page.dashboard .dashboard-view .card.quick-access, .page.dashboard .dashboard-view .card.social-works,
  .page.dashboard .dashboard-admin-view .card.quick-access,
  .page.dashboard .dashboard-admin-view .card.social-works) .card-body {
    grid-template-columns: repeat(2, minmax(128px, 1fr));
    grid-template-rows: repeat(2, minmax(128px, 1fr));
  }
}
.page.dashboard .dashboard-view .card:is(.page.dashboard .dashboard-view .card.quick-access, .page.dashboard .dashboard-view .card.social-works,
.page.dashboard .dashboard-admin-view .card.quick-access,
.page.dashboard .dashboard-admin-view .card.social-works) .card-body .item,
.page.dashboard .dashboard-admin-view .card:is(.page.dashboard .dashboard-view .card.quick-access, .page.dashboard .dashboard-view .card.social-works,
.page.dashboard .dashboard-admin-view .card.quick-access,
.page.dashboard .dashboard-admin-view .card.social-works) .card-body .item {
  width: 85%;
  height: auto;
  justify-content: center;
  padding: 16px;
}
.page.dashboard .dashboard-view .card:is(.page.dashboard .dashboard-view .card.quick-access, .page.dashboard .dashboard-view .card.social-works,
.page.dashboard .dashboard-admin-view .card.quick-access,
.page.dashboard .dashboard-admin-view .card.social-works) .card-body .item:last-of-type:nth-of-type(odd),
.page.dashboard .dashboard-admin-view .card:is(.page.dashboard .dashboard-view .card.quick-access, .page.dashboard .dashboard-view .card.social-works,
.page.dashboard .dashboard-admin-view .card.quick-access,
.page.dashboard .dashboard-admin-view .card.social-works) .card-body .item:last-of-type:nth-of-type(odd) {
  grid-column: span 2;
}
.page.dashboard .dashboard-view .card:is(.page.dashboard .dashboard-view .card.quick-access, .page.dashboard .dashboard-view .card.social-works,
.page.dashboard .dashboard-admin-view .card.quick-access,
.page.dashboard .dashboard-admin-view .card.social-works) .card-body .item img,
.page.dashboard .dashboard-admin-view .card:is(.page.dashboard .dashboard-view .card.quick-access, .page.dashboard .dashboard-view .card.social-works,
.page.dashboard .dashboard-admin-view .card.quick-access,
.page.dashboard .dashboard-admin-view .card.social-works) .card-body .item img {
  height: 50%;
  max-height: 65px;
  width: auto;
}
.page.dashboard .dashboard-view .card:is(.page.dashboard .dashboard-view .card.quick-access, .page.dashboard .dashboard-view .card.social-works,
.page.dashboard .dashboard-admin-view .card.quick-access,
.page.dashboard .dashboard-admin-view .card.social-works) .card-body .item p,
.page.dashboard .dashboard-admin-view .card:is(.page.dashboard .dashboard-view .card.quick-access, .page.dashboard .dashboard-view .card.social-works,
.page.dashboard .dashboard-admin-view .card.quick-access,
.page.dashboard .dashboard-admin-view .card.social-works) .card-body .item p {
  margin-top: 15px;
  width: 100%;
}
@media (max-width: 768px) {
  .page.dashboard .dashboard-view .card:is(.page.dashboard .dashboard-view .card.quick-access, .page.dashboard .dashboard-view .card.social-works,
  .page.dashboard .dashboard-admin-view .card.quick-access,
  .page.dashboard .dashboard-admin-view .card.social-works) .card-body .item p,
  .page.dashboard .dashboard-admin-view .card:is(.page.dashboard .dashboard-view .card.quick-access, .page.dashboard .dashboard-view .card.social-works,
  .page.dashboard .dashboard-admin-view .card.quick-access,
  .page.dashboard .dashboard-admin-view .card.social-works) .card-body .item p {
    font-size: 16px !important;
  }
}
@media (max-width: 1920px) {
  .page.dashboard .dashboard-view .card:is(.page.dashboard .dashboard-view .card.quick-access, .page.dashboard .dashboard-view .card.social-works,
  .page.dashboard .dashboard-admin-view .card.quick-access,
  .page.dashboard .dashboard-admin-view .card.social-works) .card-body .item,
  .page.dashboard .dashboard-admin-view .card:is(.page.dashboard .dashboard-view .card.quick-access, .page.dashboard .dashboard-view .card.social-works,
  .page.dashboard .dashboard-admin-view .card.quick-access,
  .page.dashboard .dashboard-admin-view .card.social-works) .card-body .item {
    width: 100%;
  }
}
@media (min-width: 1360px) {
  .page.dashboard .dashboard-view .card:is(.page.dashboard .dashboard-view .card.quick-access, .page.dashboard .dashboard-view .card.social-works,
  .page.dashboard .dashboard-admin-view .card.quick-access,
  .page.dashboard .dashboard-admin-view .card.social-works) .card-body .item,
  .page.dashboard .dashboard-admin-view .card:is(.page.dashboard .dashboard-view .card.quick-access, .page.dashboard .dashboard-view .card.social-works,
  .page.dashboard .dashboard-admin-view .card.quick-access,
  .page.dashboard .dashboard-admin-view .card.social-works) .card-body .item {
    flex-direction: row;
    width: 100%;
    aspect-ratio: unset;
    height: 100%;
    padding: 0;
    justify-content: flex-start;
    padding-inline: 24px;
    border-radius: 16px;
  }
  .page.dashboard .dashboard-view .card:is(.page.dashboard .dashboard-view .card.quick-access, .page.dashboard .dashboard-view .card.social-works,
  .page.dashboard .dashboard-admin-view .card.quick-access,
  .page.dashboard .dashboard-admin-view .card.social-works) .card-body .item p,
  .page.dashboard .dashboard-admin-view .card:is(.page.dashboard .dashboard-view .card.quick-access, .page.dashboard .dashboard-view .card.social-works,
  .page.dashboard .dashboard-admin-view .card.quick-access,
  .page.dashboard .dashboard-admin-view .card.social-works) .card-body .item p {
    margin-top: 0;
    text-align: left;
    font-size: 14px;
    line-height: 1;
  }
  .page.dashboard .dashboard-view .card:is(.page.dashboard .dashboard-view .card.quick-access, .page.dashboard .dashboard-view .card.social-works,
  .page.dashboard .dashboard-admin-view .card.quick-access,
  .page.dashboard .dashboard-admin-view .card.social-works) .card-body .item img,
  .page.dashboard .dashboard-admin-view .card:is(.page.dashboard .dashboard-view .card.quick-access, .page.dashboard .dashboard-view .card.social-works,
  .page.dashboard .dashboard-admin-view .card.quick-access,
  .page.dashboard .dashboard-admin-view .card.social-works) .card-body .item img {
    max-height: 32px;
  }
}
@media (max-width: 768px) {
  .page.dashboard .dashboard-view .card:is(.page.dashboard .dashboard-view .card.download, .page.dashboard .dashboard-view .card.polls,
  .page.dashboard .dashboard-admin-view .card.download,
  .page.dashboard .dashboard-admin-view .card.polls),
  .page.dashboard .dashboard-admin-view .card:is(.page.dashboard .dashboard-view .card.download, .page.dashboard .dashboard-view .card.polls,
  .page.dashboard .dashboard-admin-view .card.download,
  .page.dashboard .dashboard-admin-view .card.polls) {
    grid-column: initial;
    padding: 8px 16px;
  }
}
.page.dashboard .dashboard-view .card .card-body,
.page.dashboard .dashboard-admin-view .card .card-body {
  display: flex;
  flex-direction: row;
  gap: 20px;
  position: relative;
  padding: 0;
}
.page.dashboard .dashboard-view .card .card-body.column,
.page.dashboard .dashboard-admin-view .card .card-body.column {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.page.dashboard .dashboard-view .card .card-body .item,
.page.dashboard .dashboard-admin-view .card .card-body .item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  column-gap: 10px;
  width: 150px;
  height: 150px;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.page.dashboard .dashboard-view .card .card-body .item img,
.page.dashboard .dashboard-admin-view .card .card-body .item img {
  width: auto;
  height: 65px;
  object-fit: contain;
}
.page.dashboard .dashboard-view .card .card-body .item p,
.page.dashboard .dashboard-admin-view .card .card-body .item p {
  font-size: 15px;
  line-height: 18px;
  font-weight: 500;
  max-width: fit-content;
  text-align: center;
  margin: 0;
  width: 100%;
  display: inline-block;
}
@media (max-width: 768px) {
  .page.dashboard .dashboard-view .card .card-body .item,
  .page.dashboard .dashboard-admin-view .card .card-body .item {
    border-radius: 16px;
  }
  .page.dashboard .dashboard-view .card .card-body .item p,
  .page.dashboard .dashboard-admin-view .card .card-body .item p {
    font-size: 12px !important;
    line-height: 1.2;
  }
}
.page.dashboard .dashboard-view .card .card-body.orange .item,
.page.dashboard .dashboard-admin-view .card .card-body.orange .item {
  background-color: #fef5f3;
}
.page.dashboard .dashboard-view .card .card-body.orange .item:hover,
.page.dashboard .dashboard-admin-view .card .card-body.orange .item:hover {
  background-color: #fbe7e1;
}
.page.dashboard .dashboard-view .card .card-body.orange .item p,
.page.dashboard .dashboard-admin-view .card .card-body.orange .item p {
  color: #ec6246;
}
.page.dashboard .dashboard-view .card .card-body.purple .item,
.page.dashboard .dashboard-admin-view .card .card-body.purple .item {
  background-color: #f2f2f5;
}
.page.dashboard .dashboard-view .card .card-body.purple .item:hover,
.page.dashboard .dashboard-admin-view .card .card-body.purple .item:hover {
  background-color: #e4e4ef;
}
.page.dashboard .dashboard-view .card .card-body.purple .item p,
.page.dashboard .dashboard-admin-view .card .card-body.purple .item p {
  color: #29275a;
}
.page.dashboard .dashboard-view .card .card-footer,
.page.dashboard .dashboard-admin-view .card .card-footer {
  background: transparent;
  border: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.page.dashboard .dashboard-view .card.quick-access,
.page.dashboard .dashboard-admin-view .card.quick-access {
  grid-column: 1/span 5;
  grid-row: 1/span 2;
  order: -1;
}
@media (max-width: 1360px) {
  .page.dashboard .dashboard-view .card.quick-access,
  .page.dashboard .dashboard-admin-view .card.quick-access {
    grid-row: initial;
    grid-column: initial;
  }
}
.page.dashboard .dashboard-view .card.social-works,
.page.dashboard .dashboard-admin-view .card.social-works {
  grid-column: 1/span 5;
  grid-row: 3/span 2;
  order: -1;
}
@media (max-width: 1360px) {
  .page.dashboard .dashboard-view .card.social-works,
  .page.dashboard .dashboard-admin-view .card.social-works {
    grid-row: initial;
    grid-column: initial;
  }
}
.page.dashboard .dashboard-view .card.social-works .card-title,
.page.dashboard .dashboard-admin-view .card.social-works .card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page.dashboard .dashboard-view .card.social-works .card-title .orange,
.page.dashboard .dashboard-admin-view .card.social-works .card-title .orange {
  margin-top: 0;
}
.page.dashboard .dashboard-view .card.download,
.page.dashboard .dashboard-admin-view .card.download {
  grid-column: 1/span 2;
  grid-row: -1/-3;
  padding: 35px 25px;
}
@media (max-width: 1360px) {
  .page.dashboard .dashboard-view .card.download,
  .page.dashboard .dashboard-admin-view .card.download {
    grid-row: initial;
    grid-column: initial;
  }
}
@media (max-width: 768px) {
  .page.dashboard .dashboard-view .card.download,
  .page.dashboard .dashboard-admin-view .card.download {
    display: none;
  }
}
@media (min-width: 1360px) {
  .page.dashboard .dashboard-view .card.download,
  .page.dashboard .dashboard-admin-view .card.download {
    padding: 16px 8px;
  }
}
.page.dashboard .dashboard-view .card.download .card-body,
.page.dashboard .dashboard-admin-view .card.download .card-body {
  padding: 0;
  gap: 0;
}
@media (min-width: 1360px) {
  .page.dashboard .dashboard-view .card.download .card-body,
  .page.dashboard .dashboard-admin-view .card.download .card-body {
    gap: 16px;
  }
}
.page.dashboard .dashboard-view .card.download .qr-code,
.page.dashboard .dashboard-admin-view .card.download .qr-code {
  display: flex;
  justify-content: center;
  width: 100%;
  position: relative;
}
.page.dashboard .dashboard-view .card.download .qr-code .qr-code-wrapper,
.page.dashboard .dashboard-admin-view .card.download .qr-code .qr-code-wrapper {
  width: 104px;
  height: auto;
}
.page.dashboard .dashboard-view .card.download .qr-code .qr-code,
.page.dashboard .dashboard-admin-view .card.download .qr-code .qr-code {
  position: absolute;
  aspect-ratio: 1;
  width: 90px;
  top: 7px;
}
.page.dashboard .dashboard-view .card.download .qr-code .qr-code-after,
.page.dashboard .dashboard-admin-view .card.download .qr-code .qr-code-after {
  position: absolute;
  right: -5px;
  top: 10px;
  width: 48px;
}
.page.dashboard .dashboard-view .card.download .qr-code-text,
.page.dashboard .dashboard-admin-view .card.download .qr-code-text {
  color: #ffffff;
  margin-top: 15px;
  margin-bottom: 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 300;
}
@media (max-width: 1360px) {
  .page.dashboard .dashboard-view .card.download .qr-code-text,
  .page.dashboard .dashboard-admin-view .card.download .qr-code-text {
    font-size: 16px;
  }
}
@media (min-width: 1360px) {
  .page.dashboard .dashboard-view .card.download,
  .page.dashboard .dashboard-admin-view .card.download {
    align-items: center;
    height: 100%;
  }
  .page.dashboard .dashboard-view .card.download .qr-code,
  .page.dashboard .dashboard-admin-view .card.download .qr-code {
    gap: 8px;
  }
  .page.dashboard .dashboard-view .card.download .qr-code .qr-code,
  .page.dashboard .dashboard-admin-view .card.download .qr-code .qr-code {
    width: 90px;
    top: 5px;
  }
  .page.dashboard .dashboard-view .card.download .qr-code .qr-code-after,
  .page.dashboard .dashboard-admin-view .card.download .qr-code .qr-code-after {
    right: 2px;
    top: -16px;
  }
  .page.dashboard .dashboard-view .card.download .qr-code .qr-code-wrapper,
  .page.dashboard .dashboard-admin-view .card.download .qr-code .qr-code-wrapper {
    width: 102px;
    height: 114px;
  }
  .page.dashboard .dashboard-view .card.download .qr-code-text,
  .page.dashboard .dashboard-admin-view .card.download .qr-code-text {
    margin-top: 0;
  }
}
.page.dashboard .dashboard-view .card.polls,
.page.dashboard .dashboard-admin-view .card.polls {
  grid-column: 3/span 3;
  grid-row: -1/-3;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 16px;
}
@media (max-width: 1360px) {
  .page.dashboard .dashboard-view .card.polls,
  .page.dashboard .dashboard-admin-view .card.polls {
    grid-row: initial;
    grid-column: initial;
  }
}
@media (max-width: 768px) {
  .page.dashboard .dashboard-view .card.polls,
  .page.dashboard .dashboard-admin-view .card.polls {
    display: none;
  }
}
.page.dashboard .dashboard-view .card.polls .card-body,
.page.dashboard .dashboard-admin-view .card.polls .card-body {
  flex-direction: column;
}
.page.dashboard .dashboard-view .card.polls .polls-slider,
.page.dashboard .dashboard-admin-view .card.polls .polls-slider {
  width: 100%;
  padding: 0;
  height: 100%;
  position: relative;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.page.dashboard .dashboard-view .card.polls .polls-slider > .btn,
.page.dashboard .dashboard-admin-view .card.polls .polls-slider > .btn {
  position: absolute;
  top: 8px;
  right: 8px;
  margin: 0;
  z-index: 2;
  font-size: 14px;
}
.page.dashboard .dashboard-view .card.polls .polls-slider .poll-recap,
.page.dashboard .dashboard-admin-view .card.polls .polls-slider .poll-recap {
  display: flex;
  flex-direction: row;
  column-gap: 25px;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
}
.page.dashboard .dashboard-view .card.polls .polls-slider .poll-recap::after,
.page.dashboard .dashboard-admin-view .card.polls .polls-slider .poll-recap::after {
  content: "";
  display: block;
  background: linear-gradient(0deg, #16aca7, transparent);
  top: 0;
  left: 0;
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.page.dashboard .dashboard-view .card.polls .polls-slider .poll-recap img,
.page.dashboard .dashboard-admin-view .card.polls .polls-slider .poll-recap img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
}
.page.dashboard .dashboard-view .card.polls .polls-slider .poll-recap .poll-info,
.page.dashboard .dashboard-admin-view .card.polls .polls-slider .poll-recap .poll-info {
  max-width: 160px;
  display: flex;
  flex-direction: column;
  column-gap: 25px;
  justify-content: flex-start;
  align-items: flex-start;
  position: absolute;
  bottom: 0;
  width: 100%;
  gap: 8px;
  max-width: unset;
  z-index: 3;
  padding: 16px;
  z-index: 2;
}
.page.dashboard .dashboard-view .card.polls .polls-slider .poll-recap .poll-info p,
.page.dashboard .dashboard-admin-view .card.polls .polls-slider .poll-recap .poll-info p {
  margin: 0;
  color: white;
  font-size: 14px;
}
.page.dashboard .dashboard-view .card.polls .no-poll,
.page.dashboard .dashboard-admin-view .card.polls .no-poll {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  color: #29275a;
  font-size: 16px;
  width: max-content;
}
.page.dashboard .dashboard-view .card.polls .splide__pagination,
.page.dashboard .dashboard-admin-view .card.polls .splide__pagination {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.page.dashboard .dashboard-view .card.polls .splide__pagination button,
.page.dashboard .dashboard-admin-view .card.polls .splide__pagination button {
  background-color: #16aca7;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  padding: 0;
}
.page.dashboard .dashboard-view .card.polls .splide__pagination button.is-active,
.page.dashboard .dashboard-admin-view .card.polls .splide__pagination button.is-active {
  width: 10px;
  height: 10px;
}
.page.dashboard .dashboard-view .card.news,
.page.dashboard .dashboard-admin-view .card.news {
  grid-column: 6/span 3;
  grid-row: 1/-1;
}
@media (max-width: 1360px) {
  .page.dashboard .dashboard-view .card.news,
  .page.dashboard .dashboard-admin-view .card.news {
    grid-row: initial;
    grid-column: initial;
  }
}
.page.dashboard .dashboard-view .card.news .card-body,
.page.dashboard .dashboard-admin-view .card.news .card-body {
  justify-content: flex-start;
  position: relative;
  /******* TO DO *******/
}
@media (min-width: 767px) {
  .page.dashboard .dashboard-view .card.news .card-body,
  .page.dashboard .dashboard-admin-view .card.news .card-body {
    overflow-y: auto;
  }
}
.page.dashboard .dashboard-view .card.news .news-recap,
.page.dashboard .dashboard-admin-view .card.news .news-recap {
  width: 100%;
}
.page.dashboard .dashboard-view .card.news .news-recap:last-child .news-separator,
.page.dashboard .dashboard-admin-view .card.news .news-recap:last-child .news-separator {
  display: none;
}
.page.dashboard .dashboard-view .card.news .news-recap .news-item,
.page.dashboard .dashboard-admin-view .card.news .news-recap .news-item {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.page.dashboard .dashboard-view .card.news .news-recap .news-item .title-desc,
.page.dashboard .dashboard-admin-view .card.news .news-recap .news-item .title-desc {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.page.dashboard .dashboard-view .card.news .news-recap .news-item .title-desc .news-title,
.page.dashboard .dashboard-admin-view .card.news .news-recap .news-item .title-desc .news-title {
  color: #29275a;
  font-size: 16px;
  line-height: 18px;
  font-weight: 600;
  margin: 0;
}
.page.dashboard .dashboard-view .card.news .news-recap .news-item .title-desc .news-short-description,
.page.dashboard .dashboard-admin-view .card.news .news-recap .news-item .title-desc .news-short-description {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0;
  white-space: pre-line;
}
@media (max-width: 768px) {
  .page.dashboard .dashboard-view .card.news .news-recap .news-item .title-desc .news-short-description,
  .page.dashboard .dashboard-admin-view .card.news .news-recap .news-item .title-desc .news-short-description {
    margin: 0;
  }
}
.page.dashboard .dashboard-view .card.news .news-recap .news-item .news-image,
.page.dashboard .dashboard-admin-view .card.news .news-recap .news-item .news-image {
  width: 100%;
  max-height: 128px;
  border-radius: 25px;
  object-fit: cover;
}
.page.dashboard .dashboard-view .card.news .news-recap .news-item .news-image.placeholder,
.page.dashboard .dashboard-admin-view .card.news .news-recap .news-item .news-image.placeholder {
  opacity: 1;
  object-fit: cover;
  background-color: #e1f4f4;
  cursor: inherit;
}
@media (max-width: 768px) {
  .page.dashboard .dashboard-view .card.news .news-recap .news-item .news-image,
  .page.dashboard .dashboard-admin-view .card.news .news-recap .news-item .news-image {
    height: 40vw;
    order: -1;
    border-radius: 16px;
  }
}
@media (max-width: 425px) {
  .page.dashboard .dashboard-view .card.news .news-recap .news-item .news-image,
  .page.dashboard .dashboard-admin-view .card.news .news-recap .news-item .news-image {
    height: 96px;
  }
}
.page.dashboard .dashboard-view .card.news .news-recap .news-item .news-date-posted,
.page.dashboard .dashboard-admin-view .card.news .news-recap .news-item .news-date-posted {
  display: flex;
  flex-direction: row;
  column-gap: 8px;
  align-items: center;
  margin-bottom: 16px;
}
.page.dashboard .dashboard-view .card.news .news-recap .news-item .news-date-posted icon svg,
.page.dashboard .dashboard-admin-view .card.news .news-recap .news-item .news-date-posted icon svg {
  width: 18px;
  height: 18px;
}
@media (max-width: 768px) {
  .page.dashboard .dashboard-view .card.news .news-recap .news-item .news-date-posted,
  .page.dashboard .dashboard-admin-view .card.news .news-recap .news-item .news-date-posted {
    margin: 0;
  }
}
.page.dashboard .dashboard-view .card.news .news-recap .news-separator,
.page.dashboard .dashboard-admin-view .card.news .news-recap .news-separator {
  height: 2px;
  background-color: #f5fbfb;
}
@media (max-width: 768px) {
  .page.dashboard .dashboard-view .card.news .news-recap .news-separator,
  .page.dashboard .dashboard-admin-view .card.news .news-recap .news-separator {
    display: none;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .page.dashboard .dashboard-view .card.news .news-recap:not(:first-of-type),
  .page.dashboard .dashboard-admin-view .card.news .news-recap:not(:first-of-type) {
    display: none;
  }
}
.page.dashboard .dashboard-view .card.quizzes,
.page.dashboard .dashboard-admin-view .card.quizzes {
  grid-column: -1/-4;
  grid-row: 1/span 3;
}
@media (max-width: 1360px) {
  .page.dashboard .dashboard-view .card.quizzes,
  .page.dashboard .dashboard-admin-view .card.quizzes {
    grid-row: initial;
    grid-column: initial;
    height: max-content;
  }
}
.page.dashboard .dashboard-view .card.quizzes .card-body,
.page.dashboard .dashboard-admin-view .card.quizzes .card-body {
  justify-content: flex-start;
  overflow-y: auto;
  position: relative;
  gap: 0;
  /******* TO DO *******/
}
.page.dashboard .dashboard-view .card.quizzes .quizz,
.page.dashboard .dashboard-admin-view .card.quizzes .quizz {
  width: 100%;
}
.page.dashboard .dashboard-view .card.quizzes .quizz:last-child .quizz-separator,
.page.dashboard .dashboard-admin-view .card.quizzes .quizz:last-child .quizz-separator {
  display: none;
}
.page.dashboard .dashboard-view .card.quizzes .quizz .quizz-item,
.page.dashboard .dashboard-admin-view .card.quizzes .quizz .quizz-item {
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.page.dashboard .dashboard-view .card.quizzes .quizz .quizz-item .quizz-icon,
.page.dashboard .dashboard-admin-view .card.quizzes .quizz .quizz-item .quizz-icon {
  position: absolute;
  top: 0;
  left: 0;
}
.page.dashboard .dashboard-view .card.quizzes .quizz .quizz-item .quizz-infos,
.page.dashboard .dashboard-admin-view .card.quizzes .quizz .quizz-item .quizz-infos {
  position: relative;
}
.page.dashboard .dashboard-view .card.quizzes .quizz .quizz-item .quizz-infos .quizz-date,
.page.dashboard .dashboard-admin-view .card.quizzes .quizz .quizz-item .quizz-infos .quizz-date {
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  margin-block: 8px 4px;
  opacity: 0.6;
}
.page.dashboard .dashboard-view .card.quizzes .quizz .quizz-item .quizz-infos .quizz-title,
.page.dashboard .dashboard-admin-view .card.quizzes .quizz .quizz-item .quizz-infos .quizz-title {
  margin-bottom: 0;
  font-size: 16px;
  color: #29275a;
  font-weight: 600;
  line-height: 18px;
}
@media (max-width: 768px) {
  .page.dashboard .dashboard-view .card.quizzes .quizz .quizz-item .quizz-infos .quizz-title,
  .page.dashboard .dashboard-admin-view .card.quizzes .quizz .quizz-item .quizz-infos .quizz-title {
    font-size: 14px;
    font-weight: 500;
  }
}
.page.dashboard .dashboard-view .card.quizzes .quizz .quizz-item .quizz-image,
.page.dashboard .dashboard-admin-view .card.quizzes .quizz .quizz-item .quizz-image {
  width: 100%;
  max-height: 120px;
  border-radius: 25px;
  object-fit: cover;
}
.page.dashboard .dashboard-view .card.quizzes .quizz .quizz-item .quizz-image.placeholder,
.page.dashboard .dashboard-admin-view .card.quizzes .quizz .quizz-item .quizz-image.placeholder {
  opacity: 1;
  object-fit: cover;
  background-color: #e1f4f4;
  cursor: inherit;
}
@media (max-width: 768px) {
  .page.dashboard .dashboard-view .card.quizzes .quizz .quizz-item .quizz-image,
  .page.dashboard .dashboard-admin-view .card.quizzes .quizz .quizz-item .quizz-image {
    height: 40vw;
    padding: 0;
    border-radius: 16px;
    order: -1;
  }
}
@media (max-width: 425px) {
  .page.dashboard .dashboard-view .card.quizzes .quizz .quizz-item .quizz-image,
  .page.dashboard .dashboard-admin-view .card.quizzes .quizz .quizz-item .quizz-image {
    height: 96px;
  }
}
.page.dashboard .dashboard-view .card.quizzes .quizz .quizz-separator,
.page.dashboard .dashboard-admin-view .card.quizzes .quizz .quizz-separator {
  height: 2px;
  background-color: #f5fbfb;
  margin-block: 8px;
}
@media (max-width: 768px) {
  .page.dashboard .dashboard-view .card.quizzes .quizz .quizz-separator,
  .page.dashboard .dashboard-admin-view .card.quizzes .quizz .quizz-separator {
    display: none;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .page.dashboard .dashboard-view .card.quizzes .quizz:not(:first-of-type),
  .page.dashboard .dashboard-admin-view .card.quizzes .quizz:not(:first-of-type) {
    display: none;
  }
}
.page.dashboard .dashboard-view .card.quizzes .btn,
.page.dashboard .dashboard-admin-view .card.quizzes .btn {
  white-space: nowrap;
}
.page.dashboard .dashboard-view .card.cse-nactim,
.page.dashboard .dashboard-admin-view .card.cse-nactim {
  grid-column: -1/-4;
  grid-row: 4;
  order: -1;
  background: url("../img/high-five.jpg") no-repeat center;
  background-size: cover;
  overflow: hidden;
  color: #ffffff;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.page.dashboard .dashboard-view .card.cse-nactim::before,
.page.dashboard .dashboard-admin-view .card.cse-nactim::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, #16aca7, transparent);
}
.page.dashboard .dashboard-view .card.cse-nactim p,
.page.dashboard .dashboard-admin-view .card.cse-nactim p {
  width: 60%;
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}
@media (min-width: 769px) and (max-width: 1360px) {
  .page.dashboard .dashboard-view .card.cse-nactim,
  .page.dashboard .dashboard-admin-view .card.cse-nactim {
    grid-row: 3;
    grid-column: span 2;
    height: 128px;
  }
}
.page.dashboard .dashboard-view .card.cssct,
.page.dashboard .dashboard-admin-view .card.cssct {
  grid-column: -1/-4;
  grid-row: 5;
  order: -1;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.page.dashboard .dashboard-view .card.cssct .text,
.page.dashboard .dashboard-admin-view .card.cssct .text {
  width: 85%;
  color: #29275a;
  position: relative;
  z-index: 1;
}
.page.dashboard .dashboard-view .card.cssct .text p,
.page.dashboard .dashboard-admin-view .card.cssct .text p {
  margin: 8px 0 0;
}
.page.dashboard .dashboard-view .card.cssct img,
.page.dashboard .dashboard-admin-view .card.cssct img {
  position: absolute;
  right: 24px;
  top: 50%;
  translate: 0 -50%;
  z-index: 0;
  height: 80px;
}
@media (min-width: 769px) and (max-width: 1360px) {
  .page.dashboard .dashboard-view .card.cssct,
  .page.dashboard .dashboard-admin-view .card.cssct {
    grid-row: 4;
    grid-column: span 2;
    height: 128px;
  }
}
.page.dashboard .dashboard-view .card.contact,
.page.dashboard .dashboard-admin-view .card.contact {
  grid-column: -1/-4;
  grid-row: 6;
  order: -1;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 769px) and (max-width: 1360px) {
  .page.dashboard .dashboard-view .card.contact,
  .page.dashboard .dashboard-admin-view .card.contact {
    grid-row: 5;
    grid-column: span 2;
    height: 128px;
  }
}
.page.dashboard .dashboard-view .card.contact .title,
.page.dashboard .dashboard-admin-view .card.contact .title {
  margin-bottom: 8px;
}
.page.dashboard .dashboard-view .card.contact p,
.page.dashboard .dashboard-admin-view .card.contact p {
  margin-bottom: 8px;
}
.page.dashboard .dashboard-view .card.contact .mail,
.page.dashboard .dashboard-admin-view .card.contact .mail {
  text-decoration: underline;
}
.page.dashboard .dashboard-view .card.contact .mail img,
.page.dashboard .dashboard-admin-view .card.contact .mail img {
  margin-right: 8px;
}
.page.dashboard .dashboard-view .card.cse-nactim .title, .page.dashboard .dashboard-view .card.cssct .title, .page.dashboard .dashboard-view .card.contact .title,
.page.dashboard .dashboard-admin-view .card.cse-nactim .title,
.page.dashboard .dashboard-admin-view .card.cssct .title,
.page.dashboard .dashboard-admin-view .card.contact .title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .page.dashboard .dashboard-view .card.cse-nactim, .page.dashboard .dashboard-view .card.cssct, .page.dashboard .dashboard-view .card.contact,
  .page.dashboard .dashboard-admin-view .card.cse-nactim,
  .page.dashboard .dashboard-admin-view .card.cssct,
  .page.dashboard .dashboard-admin-view .card.contact {
    grid-row: 3;
    min-height: 128px;
  }
}
.page.dashboard .dashboard-view .card.link::after,
.page.dashboard .dashboard-admin-view .card.link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 32px;
  aspect-ratio: 1;
  background: url("../img/icons/arrow-orange-bg.svg") no-repeat center;
  background-size: contain;
  translate: 0 -50%;
}
.page.dashboard .dashboard-admin-view {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
}
.page.dashboard .dashboard-admin-view .flex-cards .card {
  max-width: 90%;
  height: fit-content;
  width: fit-content;
  margin: 0 auto;
  padding-bottom: 40px;
}
.page.dashboard .dashboard-admin-view .flex-cards .card .card-body {
  height: auto !important;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.page.dashboard .dashboard-admin-view .flex-cards .card .card-body a {
  width: 150px;
  height: 150px;
}
.page.dashboard .dashboard-admin-view .flex-cards .card .card-body a .item {
  padding: 10px;
  justify-content: space-evenly !important;
}
.page.dashboard .admin-text-welcome {
  width: 80%;
  height: fit-content;
  margin: 25px auto;
  background-color: #ffffff;
  border-radius: 25px;
  box-shadow: 3px 3px 20px rgba(22, 172, 167, 0.078);
  padding: 45px;
}
.page.dashboard .admin-text-welcome .welcome-admin-text h3 {
  font-size: 22px;
  color: #29275a;
  font-weight: 600;
  margin-bottom: 10px;
}
.page.dashboard .admin-text-welcome .welcome-admin-text hr {
  width: 150px;
  color: #29275a !important;
  border: 1px solid #29275a;
  opacity: 1;
  margin-bottom: 20px;
}
.page.dashboard .admin-text-welcome .welcome-admin-text p {
  color: #29275a;
  font-size: 18px;
  line-height: 26px;
}

.container-faq {
  flex-grow: 1;
  width: calc(100% - 48px);
  padding: 20px;
  border-radius: 16px;
  border: none;
  overflow-y: auto;
  position: relative;
  background-color: #ffffff;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 24px 24px 0px 24px;
}
@media all and (max-width: 1536px) {
  .container-faq {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .container-faq {
    margin: 0 16px 0px 24px;
  }
}
.container-faq accordion {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 0;
  box-shadow: none;
  background-color: transparent;
}
.container-faq accordion toggle {
  border: none;
  background-color: transparent;
  padding: 16px 24px;
  border-radius: 16px;
  position: relative;
}
.container-faq accordion toggle.is-searched {
  background-color: #fbe7e1;
}
.container-faq accordion toggle::after {
  content: none;
}
.container-faq accordion toggle:hover {
  background-color: #e1f4f4;
}
.container-faq accordion toggle:hover .admin-delete-faq,
.container-faq accordion toggle:hover .admin-edit-faq {
  display: flex;
}
.container-faq accordion toggle .admin-delete-faq,
.container-faq accordion toggle .admin-edit-faq {
  position: absolute;
  display: none;
  top: 16px;
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  z-index: 2;
  cursor: pointer;
}
.container-faq accordion toggle .admin-delete-faq {
  right: 24px;
  background: #ec6246 url(/assets/img/icons/trash.svg) no-repeat center/50%;
}
.container-faq accordion toggle .admin-edit-faq {
  right: 64px;
  background: #29275a url(/assets/img/icons/edit.svg) no-repeat center/50%;
}
.container-faq accordion toggle .toggle-header {
  height: fit-content;
}
.container-faq accordion toggle .toggle-header::before {
  content: "";
  background: #ec6246 url(/assets/img/questionnaire-fill-1.svg) no-repeat center/60%;
  width: 32px;
  aspect-ratio: 1;
  padding: 8px;
  border-radius: 9999px;
  top: 16px;
}
.container-faq accordion toggle .toggle-header > span {
  line-height: 32px;
  padding: 0 20px 0 50px;
}
.container-faq accordion toggle .toggle-header.open + div {
  width: 100%;
  background-color: transparent;
  padding: 20px 20px 20px 50px;
}
.container-faq accordion toggle .toggle-header.open + div::before {
  display: none;
}

.forgot-password-page {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.forgot-password-page .form-wrapper {
  position: relative;
  display: block;
  width: 500px;
  z-index: 2;
  height: auto;
  background-color: #29275a;
  padding: 30px;
  box-shadow: 3px 3px 20px rgba(22, 172, 167, 0.0784313725);
  border-radius: 25px;
  margin-top: 100px;
}
.forgot-password-page .form-wrapper .form-forgot-password {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  column-gap: 15px;
}
.forgot-password-page .form-wrapper .form-forgot-password img {
  margin-bottom: 30px;
  width: 150px;
  height: auto;
  object-fit: contain;
}
.forgot-password-page .form-wrapper .form-forgot-password h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 24px;
}
.forgot-password-page .form-wrapper .form-forgot-password p {
  width: 80%;
  margin: 0 auto 20px auto;
  text-align: center;
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
}
.forgot-password-page .form-wrapper .form-forgot-password input {
  margin-bottom: 15px;
  width: 70%;
  font-size: 16px;
}
.forgot-password-page .form-wrapper .form-forgot-password .password-input {
  width: 70%;
  position: relative;
}
.forgot-password-page .form-wrapper .form-forgot-password .password-input input {
  width: 100%;
}
.forgot-password-page .form-wrapper .form-forgot-password .password-input img {
  position: absolute;
  right: 16px;
  top: 11px;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.forgot-password-page .form-wrapper .form-forgot-password .forgot-password {
  font-size: 14px;
  text-decoration: underline;
  color: #ffffff;
  cursor: pointer;
  display: block;
  margin-top: 24px;
}
@media screen and (max-width: 520px) {
  .forgot-password-page .form-wrapper {
    width: 300px;
  }
  .forgot-password-page .form-wrapper .form-forgot-password p {
    font-size: 14px;
  }
  .forgot-password-page .form-wrapper .form-forgot-password input {
    width: 90%;
    font-size: 14px;
  }
}

.page.news table {
  width: 100%;
}
.page.news.detail .news-detail {
  display: flex;
  width: 100%;
  margin: 0;
  flex-direction: column;
  column-gap: 25px;
  position: relative;
  border-radius: 8px;
  padding: 1.5rem;
}
@media (max-width: 768px) {
  .page.news.detail .news-detail {
    width: 100%;
    padding: 16px;
    padding-top: 0;
  }
}
.page.news.detail .news-detail .thumbnail {
  position: relative;
}
.page.news.detail .news-detail .date {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 9;
  width: fit-content;
  font-size: 18px;
  padding: 10px 15px;
  border-radius: 25px;
  background-color: #16aca7;
  color: white;
  margin: 0;
}
@media (max-width: 768px) {
  .page.news.detail .news-detail .date {
    top: 16px;
    left: 16px;
  }
}
.page.news.detail .news-detail .ctas {
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  gap: 8px;
  z-index: 3;
}
@media (max-width: 768px) {
  .page.news.detail .news-detail .ctas {
    top: initial;
    right: initial;
    bottom: 16px;
    left: 16px;
  }
  .page.news.detail .news-detail .ctas .admin-edit,
  .page.news.detail .news-detail .ctas .admin-delete {
    font-size: 14px !important;
  }
}
.page.news.detail .news-detail .ctas .admin-edit {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 18px;
}
.page.news.detail .news-detail .ctas .admin-edit:hover:before {
  background: transparent url(/assets/img/icons/edit-colored.svg) no-repeat center/cover;
}
.page.news.detail .news-detail .ctas .admin-edit::before {
  content: "";
  width: 20px;
  height: 20px;
  left: 14px;
  background: transparent url(/assets/img/icons/edit.svg) no-repeat center/cover;
}
.page.news.detail .news-detail .ctas .admin-delete {
  margin: 0;
  padding: 8px;
  height: 37px;
  width: 37px;
  background-color: #29275a;
}
.page.news.detail .news-detail .ctas .admin-delete svg {
  width: 16px;
  height: 16px;
  fill: #ffffff;
}
.page.news.detail .news-detail .ctas .admin-delete:hover {
  background-color: #f2f2f5;
}
.page.news.detail .news-detail .ctas .admin-delete:hover svg {
  fill: #29275a;
}
.page.news.detail .news-detail .thumbnail {
  height: 350px;
  width: 100%;
  background-color: #e1f4f4;
  border-radius: 25px;
  overflow: hidden;
}
.page.news.detail .news-detail .thumbnail img.image {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
.page.news.detail .news-detail .thumbnail img.image.placeholder {
  cursor: initial;
  border-radius: 25px;
  background-color: #e1f4f4;
  opacity: 1;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  object-fit: cover;
}
.page.news.detail .news-detail .title {
  margin-bottom: 25px;
}
.page.news.detail .news-detail .content * {
  font-size: 16px;
  line-height: 20px;
}
.page.news.admin-edit .cover .instructions {
  opacity: 0;
  z-index: 3;
}
.page.news.admin-edit .cover:hover .instructions {
  opacity: 1;
}
.page.news .news-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 16px;
  justify-content: center;
}
@media (min-width: 1158px) and (max-width: 1200px) {
  .page.news .news-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .page.news .news-wrapper {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    padding-block: 0 16px;
  }
}
@media (max-width: 425px) {
  .page.news .news-wrapper {
    grid-template-columns: 1fr;
  }
}
.page.news .news-wrapper .news-detail {
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  column-gap: 16px;
  width: 100%;
  height: auto;
  padding: 20px 24px;
  background-color: #ffffff;
  border-radius: 25px;
  box-shadow: 3px 3px 20px rgba(22, 172, 167, 0.078);
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .page.news .news-wrapper .news-detail {
    width: 100%;
    height: fit-content;
  }
}
.page.news .news-wrapper .news-detail img {
  border-radius: 25px;
  width: 100%;
  height: auto;
  min-height: 150px;
  max-height: 150px;
  object-fit: cover;
  background-position: center center;
  margin-bottom: 8px;
}
.page.news .news-wrapper .news-detail h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #29275a;
  font-weight: 600;
}
.page.news .news-wrapper .news-detail p {
  font-size: 14px;
  line-height: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 15px;
  line-break: anywhere;
}
.page.news .news-wrapper .news-detail .news-date {
  background-color: #ffffff;
  border-radius: 12px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page.news .news-wrapper .news-detail .news-date svg {
  aspect-ratio: 1;
  width: 18px;
  fill: #555555;
}
.page.news .news-wrapper .news-detail:hover {
  box-shadow: 3px 3px 20px rgba(22, 172, 167, 0.378);
  transform: scale(1.02);
}

.page.newsletter .table-container {
  padding: 0 24px;
}
.page.newsletter.detail .newsletter-detail {
  display: flex;
  width: 100%;
  margin: 0;
  flex-direction: column;
  column-gap: 25px;
  position: relative;
  border-radius: 8px;
  padding: 1.5rem;
}
.page.newsletter.detail .newsletter-detail .thumbnail {
  position: relative;
}
.page.newsletter.detail .newsletter-detail img.image {
  width: 100%;
  height: 350px;
  border-radius: 25px;
  object-fit: cover;
  object-position: center;
}
.page.newsletter.detail .newsletter-detail .title {
  color: #29275a;
  margin: 0 0 25px 0;
}
.page.newsletter.detail .newsletter-detail .date {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 9;
  width: fit-content;
  font-size: 18px;
  padding: 10px 15px;
  border-radius: 25px;
  background-color: purple;
  color: white;
}

.page.question-boxes table {
  width: 100%;
}
.page.question-boxes.detail .question-boxes-detail {
  display: flex;
  width: 80%;
  margin: 0 auto;
  flex-direction: column;
  column-gap: 25px;
  position: relative;
}
@media (max-width: 768px) {
  .page.question-boxes.detail .question-boxes-detail {
    width: 100%;
    padding: 25px;
  }
}
.page.question-boxes.detail .question-boxes-detail .date {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 9;
  width: fit-content;
  font-size: 18px;
  padding: 10px 15px;
  border-radius: 25px;
  background-color: #16aca7;
  color: white;
  margin: 0;
}
.page.question-boxes.detail .question-boxes-detail .edit {
  position: absolute;
  top: 24px;
  right: 24px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 18px;
  z-index: 3;
}
.page.question-boxes.detail .question-boxes-detail .edit:hover:before {
  background: transparent url(/assets/img/icons/edit-colored.svg) no-repeat center/cover;
}
.page.question-boxes.detail .question-boxes-detail .edit::before {
  content: "";
  width: 20px;
  height: 20px;
  left: 14px;
  background: transparent url(/assets/img/icons/edit.svg) no-repeat center/cover;
}
.page.question-boxes.detail .question-boxes-detail .title {
  margin: 40px 0 25px;
}
.page.question-boxes.detail .question-boxes-detail .content * {
  font-size: 16px;
  line-height: 20px;
}
.page.question-boxes.admin-edit .cover .instructions {
  opacity: 0;
  z-index: 3;
}
.page.question-boxes.admin-edit .cover:hover .instructions {
  opacity: 1;
}
.page.question-boxes .question-boxes-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(256px, 1fr));
  gap: 24px;
  justify-content: center;
  padding-inline: 24px;
}
.page.question-boxes .question-boxes-wrapper.user-padding {
  padding-top: 24px;
}
@media (min-width: 1158px) and (max-width: 1200px) {
  .page.question-boxes .question-boxes-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1534px) {
  .page.question-boxes .question-boxes-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(256px, 450px));
  }
}
.page.question-boxes .question-boxes-wrapper .question-boxes-detail {
  position: relative;
  display: flex;
  flex-direction: column;
  column-gap: 12px;
  width: 100%;
  height: auto;
  padding: 24px;
  background-color: #ffffff;
  border-radius: 25px;
  box-shadow: 3px 3px 20px rgba(22, 172, 167, 0.078);
  transition: all 0.3s ease;
}
.page.question-boxes .question-boxes-wrapper .question-boxes-detail:hover .admin-delete-question {
  display: flex;
}
.page.question-boxes .question-boxes-wrapper .question-boxes-detail .admin-delete-question {
  position: absolute;
  cursor: pointer;
  display: none;
  top: 19px;
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  z-index: 2;
  right: 24px;
  background: #ec6246 url(/assets/img/icons/trash.svg) no-repeat center/50%;
}
.page.question-boxes .question-boxes-wrapper .question-boxes-detail h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #29275a;
  flex-grow: 1;
}
.page.question-boxes .question-boxes-wrapper .question-boxes-detail p {
  font-size: 14px;
  line-height: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 15px;
  flex: none;
}
.page.question-boxes .question-boxes-wrapper .question-boxes-detail button[disabled] {
  background-color: #acacac;
  cursor: default;
}
@media (max-width: 768px) {
  .page.question-boxes .question-boxes-wrapper .question-boxes-detail button.orange {
    display: none;
  }
}
.page.question-boxes .question-boxes-wrapper .question-boxes-detail .news-date {
  background-color: #ffffff;
  padding: 5px 10px 0px;
  border-radius: 12px;
  margin-bottom: 0;
}
.page.question-boxes .question-boxes-wrapper .question-boxes-detail:hover {
  box-shadow: 3px 3px 20px rgba(22, 172, 167, 0.378);
  transform: scale(1.02);
}

.quizzes .quizzes-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  padding: 24px 24px 0px 24px;
}
@media (max-width: 768px) {
  .quizzes .quizzes-wrapper {
    padding: 0 24px 0px 24px;
  }
}
.quizzes .quiz-detail {
  border-radius: 8px;
  padding: 1.5rem;
}
@media (max-width: 768px) {
  .quizzes .quiz-detail {
    padding: 0 16px 24px;
  }
}
.quizzes .quiz-detail.miniature.has-voted * {
  opacity: 0.75;
}
.quizzes .quiz-detail h2 {
  margin-bottom: 20px;
}
.quizzes .quiz-detail toggle::after {
  content: none;
}
.quizzes .quiz-detail toggle .toggle-header {
  padding: 0 20px;
}
.quizzes .quiz-detail toggle .toggle-header::before {
  left: 20px;
}
.quizzes .quiz-detail img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 25px;
  margin: 1rem 0;
}
.quizzes .quiz-detail:not(.miniature) .thumbnail {
  position: relative;
}
.quizzes .quiz-detail:not(.miniature) .thumbnail img {
  height: 350px;
}
@media (max-width: 768px) {
  .quizzes .quiz-detail:not(.miniature) .thumbnail img {
    height: 250px;
  }
}
.quizzes .quiz-detail:not(.miniature) .thumbnail .actions {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
}
.quizzes .quiz-detail .quiz-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray);
  font-size: 0.9rem;
  margin-top: 1rem;
}
.quizzes .quiz-detail .quiz-date icon {
  width: 18px;
  height: 18px;
}
.quizzes .quiz-detail .quiz-date p {
  margin: 0;
  font-size: 16px;
}
.quizzes .quiz-detail:not(.miniature) .quiz-date {
  margin: 0 0 10px;
  gap: 6px;
}
.quizzes .quiz-detail.miniature {
  padding: 20px 24px;
}
.quizzes .quiz-detail.miniature .quiz-header h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #29275a;
  font-weight: 600;
  line-break: anywhere;
}
.quizzes .quiz-detail.miniature .quiz-date {
  position: absolute;
  bottom: 22px;
  left: 8px;
  background-color: #ec6246;
  padding: 4px 8px;
  border-radius: 18px;
  color: #ffffff;
}
.quizzes .quiz-detail .quiz-image {
  position: relative;
}
.quizzes .quiz-detail .votes-number {
  border-radius: 15px;
  padding: 6px 10px;
  font-size: 14px;
  line-height: 14px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.quizzes .quiz-detail .votes-number img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  border-radius: 0;
  margin: 0;
}
.quizzes .quiz-detail .votes-number p {
  margin: 0;
}
.quizzes .quiz-detail.miniature {
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background: white;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}
.quizzes .quiz-detail.miniature:hover {
  box-shadow: 3px 3px 20px rgba(22, 172, 167, 0.378);
  transform: scale(1.02);
}
.quizzes .quiz-detail.miniature .quiz-header {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.quizzes .quiz-detail.miniature .quiz-header h3 {
  flex-grow: 1;
}
.quizzes .quiz-detail.miniature .quiz-date p {
  font-size: 12px;
}
.quizzes .quiz-detail:not(.miniature) .quiz-content-wrapper {
  max-width: 75%;
  background-color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  border-radius: 25px;
  margin-top: -68px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  position: relative;
}
.quizzes .quiz-detail:not(.miniature) .quiz-content-wrapper .quiz-header {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: flex-start;
  align-items: flex-start;
}
.quizzes .quiz-detail .quiz-content .instructions {
  margin: 50px 0 35px;
  font-size: 20px;
  font-weight: 600;
  color: #29275a;
  text-align: center;
  line-height: normal;
}
.quizzes .quiz-detail .quiz-content .answers {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
}
@media (max-width: 768px) {
  .quizzes .quiz-detail .quiz-content .answers {
    flex-wrap: wrap;
  }
}
.quizzes .quiz-detail .quiz-content .answers button {
  width: fit-content;
  display: flex;
  align-items: center;
}
.quizzes .quiz-detail .quiz-content .answers button .check {
  display: none;
  margin-left: 10px;
}
.quizzes .quiz-detail .quiz-content .answers button.selected .check {
  display: block;
  height: 18px;
  width: 18px;
}
.quizzes .quiz-detail .quiz-content .answers button.selected .check img {
  width: 18px;
  height: 18px;
  margin: 0;
  border-radius: 0;
}
.quizzes .quiz-detail .quiz-content .answers button.disabled {
  cursor: not-allowed;
  opacity: 1 !important;
  background-color: #cccccc;
}
.quizzes .quiz-detail .quiz-content .answers button.disabled span {
  opacity: 0.5;
}
.quizzes .quiz-detail .quiz-content .navigation-buttons {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.quizzes .quiz-detail .quiz-results p {
  font-size: 20px;
  text-align: center;
  margin: 25px 0;
}
.quizzes .empty-state {
  text-align: center;
  padding: 3rem;
}
.quizzes .empty-state p {
  color: var(--gray);
  margin-bottom: 1rem;
}
.quizzes .loading-state {
  display: flex;
  justify-content: center;
  padding: 3rem;
}

.reset-password-page,
.create-password-page {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.reset-password-page .form-wrapper,
.create-password-page .form-wrapper {
  position: relative;
  display: block;
  width: 500px;
  z-index: 2;
  height: auto;
  background-color: #29275a;
  padding: 30px;
  box-shadow: 3px 3px 20px rgba(22, 172, 167, 0.0784313725);
  border-radius: 25px;
  margin-top: 100px;
}
.reset-password-page .form-wrapper .form-reset-password,
.reset-password-page .form-wrapper .form-create-password,
.create-password-page .form-wrapper .form-reset-password,
.create-password-page .form-wrapper .form-create-password {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  column-gap: 15px;
}
.reset-password-page .form-wrapper .form-reset-password img,
.reset-password-page .form-wrapper .form-create-password img,
.create-password-page .form-wrapper .form-reset-password img,
.create-password-page .form-wrapper .form-create-password img {
  margin-bottom: 30px;
  width: 150px;
  height: auto;
  object-fit: contain;
}
.reset-password-page .form-wrapper .form-reset-password h1,
.reset-password-page .form-wrapper .form-create-password h1,
.create-password-page .form-wrapper .form-reset-password h1,
.create-password-page .form-wrapper .form-create-password h1 {
  color: #ffffff;
  margin-bottom: 20px;
  text-align: center;
}
.reset-password-page .form-wrapper .form-reset-password h2,
.reset-password-page .form-wrapper .form-create-password h2,
.create-password-page .form-wrapper .form-reset-password h2,
.create-password-page .form-wrapper .form-create-password h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 24px;
}
.reset-password-page .form-wrapper .form-reset-password p,
.reset-password-page .form-wrapper .form-create-password p,
.create-password-page .form-wrapper .form-reset-password p,
.create-password-page .form-wrapper .form-create-password p {
  width: 80%;
  margin: 0 auto 20px auto;
  text-align: center;
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
}
.reset-password-page .form-wrapper .form-reset-password p.forgot-password-message,
.reset-password-page .form-wrapper .form-create-password p.forgot-password-message,
.create-password-page .form-wrapper .form-reset-password p.forgot-password-message,
.create-password-page .form-wrapper .form-create-password p.forgot-password-message {
  margin: 15px 0 !important;
}
.reset-password-page .form-wrapper .form-reset-password input,
.reset-password-page .form-wrapper .form-create-password input,
.create-password-page .form-wrapper .form-reset-password input,
.create-password-page .form-wrapper .form-create-password input {
  margin-bottom: 15px;
  width: 70%;
  font-size: 16px;
}
.reset-password-page .form-wrapper .form-reset-password .password-input,
.reset-password-page .form-wrapper .form-create-password .password-input,
.create-password-page .form-wrapper .form-reset-password .password-input,
.create-password-page .form-wrapper .form-create-password .password-input {
  width: 70%;
  position: relative;
}
.reset-password-page .form-wrapper .form-reset-password .password-input input,
.reset-password-page .form-wrapper .form-create-password .password-input input,
.create-password-page .form-wrapper .form-reset-password .password-input input,
.create-password-page .form-wrapper .form-create-password .password-input input {
  width: 100%;
}
.reset-password-page .form-wrapper .form-reset-password .password-input img,
.reset-password-page .form-wrapper .form-create-password .password-input img,
.create-password-page .form-wrapper .form-reset-password .password-input img,
.create-password-page .form-wrapper .form-create-password .password-input img {
  position: absolute;
  right: 16px;
  top: 11px;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.reset-password-page .form-wrapper .form-reset-password .forgot-password,
.reset-password-page .form-wrapper .form-create-password .forgot-password,
.create-password-page .form-wrapper .form-reset-password .forgot-password,
.create-password-page .form-wrapper .form-create-password .forgot-password {
  font-size: 14px;
  text-decoration: underline;
  color: #ffffff;
  cursor: pointer;
  display: block;
  margin-top: 24px;
}
@media screen and (max-width: 520px) {
  .reset-password-page .form-wrapper,
  .create-password-page .form-wrapper {
    width: 300px;
  }
  .reset-password-page .form-wrapper .form-reset-password p,
  .create-password-page .form-wrapper .form-reset-password p {
    font-size: 14px;
  }
  .reset-password-page .form-wrapper .form-reset-password input,
  .create-password-page .form-wrapper .form-reset-password input {
    width: 90%;
    font-size: 14px;
  }
}

.page.resources .container-resources {
  display: flex;
  justify-content: center;
  padding: 24px;
  width: 100%;
  flex-direction: column;
}
@media (max-width: 768px) {
  .page.resources .container-resources {
    padding: 16px;
    padding-top: 0;
  }
}
.page.resources .container-resources .resource-item .content {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .page.resources .container-resources .resource-item .content {
    flex-direction: column;
    align-items: flex-start;
  }
  .page.resources .container-resources .resource-item .content .resource-date {
    color: #29275a;
    background-color: transparent;
    opacity: 0.6;
    font-size: 12px;
    opacity: 0.6;
    margin-top: 4px;
    padding: 0;
  }
  .page.resources .container-resources .resource-item .content .resource-title {
    font-weight: 500;
    cursor: pointer;
    line-break: anywhere;
  }
  .page.resources .container-resources .resource-item .content .resource-title:hover {
    text-decoration: underline;
  }
}
.page.resources .container-resources .resource-item .icon {
  width: 40px;
  height: 40px;
  flex: none;
}
@media screen and (max-width: 768px) {
  .page.resources .container-resources .resource-item .icon {
    display: grid;
    place-content: center;
    width: 32px;
    height: 32px;
  }
  .page.resources .container-resources .resource-item .icon .word,
  .page.resources .container-resources .resource-item .icon .excel {
    height: 27px;
    width: 27px;
  }
}
.page.resources .container-resources .resource-item .ctas {
  display: flex;
  align-items: center;
  margin: 0;
  column-gap: 8px;
}
.page.resources .container-resources .resource-item .ctas button {
  margin: 0;
  padding: 8px 24px !important;
  border-radius: 100vmax;
}
.page.resources .container-resources .resource-item .ctas button.admin-delete {
  padding: 8px !important;
  background-color: #e1f4f4;
  transition: all 0.3s ease;
}
.page.resources .container-resources .resource-item .ctas button.admin-delete svg {
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .page.resources .container-resources .resource-item .ctas button.admin-delete {
    display: grid;
    place-content: center;
    height: 32px;
    width: 32px;
  }
  .page.resources .container-resources .resource-item .ctas button.admin-delete svg {
    height: 16px;
    width: 16px;
  }
}
.page.resources .container-resources .resource-item .ctas button.admin-delete:hover {
  background-color: #16aca7;
}
.page.resources .container-resources .resource-item .ctas button.admin-delete:hover svg {
  fill: #ffffff;
}
.page.resources .container-resources .resource-item .ctas svg {
  height: 20px;
  width: 20px;
}
.page.resources .container-resources ul {
  list-style: none;
  background-color: #fff;
  padding: 20px 35px;
  border-radius: 24px;
  box-shadow: 3px 3px 20px rgba(22, 172, 167, 0.078);
  border: none;
  width: 100%;
  overflow-y: auto;
}
@media screen and (max-width: 768px) {
  .page.resources .container-resources ul {
    padding: 8px 16px;
  }
}
.page.resources .container-resources ul .folder-container {
  cursor: pointer;
}
.page.resources .container-resources ul .folder-container .folder {
  display: flex;
  gap: 16px;
  align-items: center;
  color: #16aca7;
  font-size: 16px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .page.resources .container-resources ul .folder-container .folder {
    font-size: 12px;
  }
}
.page.resources .container-resources ul .folder-container .folder .icon {
  height: 40px;
  width: 40px;
}
.page.resources .container-resources ul .folder-container .folder .ctas {
  margin-left: auto;
  display: flex;
  align-items: center;
  margin-bottom: 0;
  align-self: initial;
  column-gap: 8px;
}
.page.resources .container-resources ul .folder-container .folder .ctas * {
  margin: 0;
}
.page.resources .container-resources ul .folder-container .folder .ctas button {
  height: 30px;
  width: 30px;
  background-color: transparent;
  padding: 0;
}
.page.resources .container-resources ul .folder-container .folder .ctas button.add, .page.resources .container-resources ul .folder-container .folder .ctas button.admin-delete {
  height: 24px;
  width: 24px;
}
.page.resources .container-resources ul .folder-container .folder .ctas button.admin-delete {
  height: 22px;
  width: 22px;
}
.page.resources .container-resources ul .folder-container .folder .ctas button svg {
  width: 100%;
  height: 100%;
}
.page.resources .container-resources ul .folder-container ul {
  margin-top: 16px;
  padding: 16px;
  box-shadow: 3px 3px 20px rgba(22, 172, 167, 0.2);
}
.page.resources .container-resources ul .folder-container .resource-item .resource-title {
  color: #29275a;
  cursor: pointer;
}
.page.resources .container-resources ul .folder-container .resource-item .resource-title:hover {
  text-decoration: underline;
}
.page.resources .container-resources ul .folder-container .add-file-in-folder {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-radius: 12px;
  color: #ffffff;
  margin-top: 0;
  background-color: #16aca7;
  cursor: pointer;
  transition: all 0.4s ease;
}
.page.resources .container-resources ul .folder-container .add-file-in-folder icon {
  height: 16px;
  width: 16px;
}
.page.resources .container-resources ul .folder-container .add-file-in-folder:hover {
  background-color: #19c3bd;
}
.page.resources .container-resources ul .folder-container .add-file-in-folder::after {
  display: none;
}
.page.resources .container-resources ul li {
  margin-bottom: 25px;
  position: relative;
}
.page.resources .container-resources ul li.loading-state {
  display: grid;
  place-content: center;
}
.page.resources .container-resources ul li.loading-state .loader {
  height: 24px;
  width: 24px;
}
.page.resources .container-resources ul li.loading-state .loader::before {
  border-width: 2px;
}
.page.resources .container-resources ul li:last-child {
  margin-bottom: 10px;
}
.page.resources .container-resources ul li:first-child {
  margin-top: 10px;
}
.page.resources .container-resources ul li::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #f5fbfb;
}
.page.resources .container-resources ul li .resource-content {
  display: flex;
  align-items: center;
  column-gap: 30px;
}
@media screen and (max-width: 768px) {
  .page.resources .container-resources ul li .resource-content {
    column-gap: 8px;
  }
}
.page.resources .container-resources ul li .resource-content p {
  margin-bottom: 0;
}
.page.resources .container-resources ul li .resource-content p.resource-title {
  flex-grow: 1;
  color: #29275a;
  cursor: pointer;
}
.page.resources .container-resources ul li .resource-content p.resource-title:hover {
  text-decoration: underline;
}
.page.resources .container-resources ul li .resource-content p.button-file, .page.resources .container-resources ul li .resource-content p.resource-date {
  flex: none;
}
.page.resources .container-resources ul li .resource-content p.resource-date {
  color: #ffffff;
  padding: 4px 8px;
  border-radius: 4px;
  background-color: #29275a;
}
.page.resources .container-resources ul li .resource-content .button-file {
  background-color: #fef5f3;
  color: #ec6246;
  transition: all 0.3s ease;
  font-size: 15px;
  padding: 6px 20px;
  border-radius: 16px;
  border: none;
  outline: none;
  line-height: 21px;
  text-decoration: none;
  margin: 0;
}
@media (max-width: 768px) {
  .page.resources .container-resources ul li .resource-content .button-file {
    display: none;
  }
}
.page.resources .container-resources ul li .resource-content .button-file:hover {
  background-color: #ec6246;
  color: #ffffff;
}
.page.resources .container-resources ul li .resource-content .button-file-mobile {
  display: none;
  background-color: #fef5f3;
  padding: 8px !important;
  border-radius: 9999px;
  position: relative;
  margin: 0;
}
.page.resources .container-resources ul li .resource-content .button-file-mobile svg {
  width: 16px;
  height: 16px;
}
@media (max-width: 768px) {
  .page.resources .container-resources ul li .resource-content .button-file-mobile {
    display: flex;
  }
}
.page.resources .container-resources ul li:last-of-type::before, .page.resources .container-resources ul li:last-of-type::after {
  display: none;
}
.page.resources .cover {
  width: 100%;
  height: 256px;
  color: #fff;
  background-color: #29275a;
  border-radius: 25px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  margin: 20px 0px;
  border: 1px solid #29275a;
}
.page.resources .cover.nofile {
  height: 45px;
  font-size: 16px;
}
.page.resources .cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  height: 200px;
}
.page.resources .cover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #29275a;
  opacity: 0;
  z-index: 2;
  transition: all 0.3s ease;
}
.page.resources .cover:has(img):hover::after {
  opacity: 0.2;
}
.page.resources .cover:hover {
  background-color: #39367e;
}
.page.resources .cover .instructions {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  pointer-events: none;
}
.page.resources .cover .file-doc {
  object-fit: contain;
  height: 125px;
  width: auto;
  margin-top: 30px;
}
.page.resources object.img, .page.resources img.img {
  border-radius: 8px;
}
.page.resources object.pdf, .page.resources img.pdf {
  aspect-ratio: 9/16;
  height: 520px;
}
.page.resources .popup-content input,
.page.resources .popup-content select {
  border: 2px solid #16aca7;
  width: 100%;
}
.page.resources .popup-content select {
  border-radius: 100vmax;
  padding: 8px 16px;
}
.page.resources .popup-content .create-file-folder, .page.resources .popup-content .create-file-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.page.resources .popup-content .create-file-folder label, .page.resources .popup-content .create-file-title label {
  font-size: 16px;
  color: #29275a;
}
.page.resources .popup-content .create-file-title {
  margin-top: 16px;
}
.page.resources .popup-content h2 {
  line-break: anywhere;
}

.page.settings .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  align-items: center;
}
@media (max-width: 1200px) {
  .page.settings .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 768px) {
  .page.settings .container {
    margin-bottom: 64px;
  }
}
.page.settings .container .card {
  margin-top: 32px;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 3px 3px 20px rgba(22, 172, 167, 0.078);
  border: none;
  width: 720px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 768px) {
  .page.settings .container .card {
    padding: 16px;
    border-radius: 16px;
    width: 100%;
  }
}
.page.settings .container .card .alert {
  background-color: #ec6246;
  padding: 12px;
  color: #ffffff;
  border-radius: 8px;
}
.page.settings .container .card .alert a {
  text-decoration: underline !important;
}
.page.settings .container .card form {
  width: 100%;
}
.page.settings .container .card form .field:first-child {
  margin-top: 0;
}
.page.settings .container .card form .field:last-child {
  margin-bottom: 20px;
}

.signin-page {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.signin-page .form-wrapper {
  position: relative;
  display: block;
  width: 500px;
  z-index: 2;
  height: auto;
  background-color: #29275a;
  padding: 30px;
  box-shadow: 3px 3px 20px rgba(22, 172, 167, 0.0784313725);
  border-radius: 25px;
  margin-top: 100px;
}
.signin-page .form-wrapper .form-signin {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  column-gap: 15px;
}
.signin-page .form-wrapper .form-signin img {
  margin-bottom: 30px;
  width: 150px;
  height: auto;
  object-fit: contain;
}
.signin-page .form-wrapper .form-signin h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 24px;
}
.signin-page .form-wrapper .form-signin p {
  width: 80%;
  margin: 0 auto 20px auto;
  text-align: center;
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
}
.signin-page .form-wrapper .form-signin input {
  margin-bottom: 15px;
  width: 70%;
  font-size: 16px;
}
.signin-page .form-wrapper .form-signin .password-input {
  width: 70%;
  position: relative;
}
.signin-page .form-wrapper .form-signin .password-input input {
  width: 100%;
}
.signin-page .form-wrapper .form-signin .password-input img {
  position: absolute;
  right: 16px;
  top: 11px;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.signin-page .form-wrapper .form-signin .forgot-password {
  font-size: 14px;
  text-decoration: underline;
  color: #ffffff;
  cursor: pointer;
  display: block;
  margin-bottom: 24px;
}
@media screen and (max-width: 520px) {
  .signin-page .form-wrapper {
    width: 300px;
  }
  .signin-page .form-wrapper .form-signin p {
    font-size: 14px;
  }
  .signin-page .form-wrapper .form-signin input {
    width: 90%;
    font-size: 14px;
  }
  .signin-page .form-wrapper .form-signin .password-input {
    width: 90%;
  }
  .signin-page .form-wrapper .form-signin .password-input img {
    top: 6px;
  }
}

.page.social-work .social-work-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  align-items: center;
  padding: 0 24px;
}
@media (max-width: 1200px) {
  .page.social-work .social-work-container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 768px) {
  .page.social-work .social-work-container {
    margin-bottom: 64px;
  }
}
.page.social-work .social-work-container .card {
  padding: 24px;
  border-radius: 16px;
  box-shadow: 3px 3px 20px rgba(22, 172, 167, 0.078);
  border: none;
  width: fit-content;
  min-width: 720px;
  position: relative;
}
@media (max-width: 1200px) {
  .page.social-work .social-work-container .card:last-child {
    margin-bottom: 32px;
  }
}
.page.social-work .social-work-container .card:hover .admin-edit-social-work {
  opacity: 1;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.page.social-work .social-work-container .card.option-details {
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 16px;
}
@media (max-width: 768px) {
  .page.social-work .social-work-container .card {
    padding: 16px;
    border-radius: 16px;
    min-width: 1px;
  }
}
.page.social-work .social-work-container .card .card-title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (max-width: 1920px) {
  .page.social-work .social-work-container .card .card-title {
    margin-bottom: 20px;
  }
}
.page.social-work .social-work-container .card .card-title .placeholder {
  width: fit-content;
}
.page.social-work .social-work-container .card .card-title .placeholder .animated-background {
  width: 200px;
  height: 30px;
}
.page.social-work .social-work-container .card .card-body {
  display: flex;
  gap: 20px;
  padding: 0;
  position: relative;
  width: 100%;
}
.page.social-work .social-work-container .card .card-body#social-work-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 768px) {
  .page.social-work .social-work-container .card .card-body#social-work-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.page.social-work .social-work-container .card .card-body .content p {
  font-size: 16px;
  line-height: 20px;
}
.page.social-work .social-work-container .card .card-body .item {
  aspect-ratio: 1;
  width: 100%;
  height: auto;
  justify-content: center;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  background-color: #f2f2f5;
  border-radius: 25px;
}
.page.social-work .social-work-container .card .card-body .item:hover {
  background-color: #e4e4ef;
}
.page.social-work .social-work-container .card .card-body .item.active {
  background-color: #16aca7;
  cursor: default;
}
.page.social-work .social-work-container .card .card-body .item.active p {
  color: #ffffff;
}
.page.social-work .social-work-container .card .card-body .item.active img {
  filter: brightness(0) invert(1);
}
@media (max-width: 768px) {
  .page.social-work .social-work-container .card .card-body .item {
    border-radius: 16px;
  }
}
.page.social-work .social-work-container .card .card-body .item img {
  height: 50%;
  max-height: 65px;
  width: auto;
}
.page.social-work .social-work-container .card .card-body .item p {
  margin: 0;
  width: 100%;
  font-size: 15px;
  line-height: 18px;
  font-weight: 500;
  max-width: fit-content;
  text-align: center;
  width: 100%;
  display: inline-block;
  color: #29275a;
}
@media (max-width: 768px) {
  .page.social-work .social-work-container .card .card-body .item p {
    font-size: 16px !important;
    line-height: 1.2;
  }
}
.page.social-work .social-work-container .card .card-body .placeholder .animated-background {
  height: 500px;
  min-width: 100%;
}
.page.social-work .social-work-container .card .card-footer {
  background: transparent;
  border: none;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.page.social-work .social-work-container .card .card-footer .buttons-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
}
@media (max-width: 768px) {
  .page.social-work .social-work-container .card .card-footer .buttons-container {
    flex-direction: column;
  }
}
.page.social-work .social-work-container .card .card-footer a {
  transition: all 0.3s ease;
  font-size: 15px;
  padding: 8px 24px;
  border-radius: 9999px;
  border: none;
  outline: none;
  line-height: 21px;
  cursor: pointer;
}
.page.social-work .social-work-container .card .card-footer a.orange {
  background-color: #ec6246;
  color: #ffffff;
}
.page.social-work .social-work-container .card .card-footer a.orange:hover {
  background-color: #fef5f3;
  color: #ec6246;
}
.page.social-work .social-work-container .card .card-footer .placeholder {
  width: fit-content;
}
.page.social-work .social-work-container .card .card-footer .placeholder .animated-background {
  width: 500px;
  height: 37px;
}
.page.social-work .social-work-container .card .admin-edit-social-work {
  position: absolute;
  opacity: 0;
  top: 24px;
  right: 24px;
  margin: 0;
  z-index: 2;
  padding: 6px 20px 6px 40px;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.page.social-work .social-work-container .card .admin-edit-social-work:hover:before {
  background: transparent url(/assets/img/icons/edit-colored.svg) no-repeat center/cover;
}
.page.social-work .social-work-container .card .admin-edit-social-work::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 14px;
  background: transparent url(/assets/img/icons/edit.svg) no-repeat center/cover;
}
.page.social-work .placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: #f5fbfb;
  border-radius: 4px;
}
.page.social-work .placeholder .animated-background {
  display: flex;
  width: 100%;
  animation-duration: 1.25s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: placeHolderShimmer;
  animation-timing-function: linear;
  background: #f5fbfb;
  background: linear-gradient(to right, #efefef 10%, #e3e3e3 18%, #efefef 33%);
  background-size: 800px 100px;
  position: relative;
  border-radius: 4px;
}
@keyframes placeHolderShimmer {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}

.surveys .top-buttons {
  justify-content: space-between;
}
.surveys .surveys-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  padding: 24px 24px 0px 24px;
}
@media (max-width: 768px) {
  .surveys .surveys-wrapper {
    padding: 0 16px 0px 24px;
  }
}
.surveys .surveys-wrapper .surveys-detail {
  cursor: pointer;
}
.surveys .surveys-wrapper .surveys-detail.closed {
  background-color: #fef5f3;
}
.surveys .surveys-wrapper .surveys-detail .surveys-date {
  margin-bottom: 0;
}
.surveys .survey-detail {
  padding: 0 24px;
}
.surveys .survey-detail h2 {
  margin-bottom: 20px;
}
.surveys .survey-detail toggle:after {
  content: none;
}
.surveys .survey-detail toggle .toggle-header:before {
  left: 20px;
}
.surveys .survey-detail toggle .toggle-header span {
  padding: 0 40px;
}
.surveys .surveys-detail {
  border-radius: 8px;
  padding: 1.5rem;
  margin: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (max-width: 768px) {
  .surveys .surveys-detail {
    margin: 0;
    padding: 16px;
    padding-top: 0;
  }
}
.surveys .surveys-detail:hover .admin-delete-survey {
  display: flex;
}
.surveys .surveys-detail .admin-delete-survey {
  position: absolute;
  cursor: pointer;
  display: none;
  top: 19px;
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  z-index: 2;
  right: 24px;
  background: #ec6246 url(/assets/img/icons/trash.svg) no-repeat center/50%;
}
.surveys .surveys-detail h3 {
  flex-grow: 1;
  font-weight: 600;
  font-size: 18px;
}
.surveys .surveys-detail .description {
  font-size: 16px;
  line-height: 18px;
  margin: 20px 0;
}
.surveys .surveys-detail img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 25px;
  margin: 1rem 0;
}
.surveys .surveys-detail:not(.miniature) .thumbnail {
  position: relative;
}
.surveys .surveys-detail:not(.miniature) .thumbnail img {
  height: 350px;
}
@media (max-width: 768px) {
  .surveys .surveys-detail:not(.miniature) .thumbnail img {
    height: 250px;
  }
}
.surveys .surveys-detail:not(.miniature) .thumbnail .actions {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
}
.surveys .surveys-detail .survey-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray);
  font-size: 0.9rem;
}
.surveys .surveys-detail .survey-date icon {
  width: 24px;
  height: 24px;
}
.surveys .surveys-detail .survey-date p {
  margin: 0;
  font-size: 16px;
}
.surveys .surveys-detail .survey-image {
  position: relative;
}
.surveys .surveys-detail .survey-image .votes-number {
  position: absolute;
  top: 20px;
  right: 5px;
  background: #29275a;
  color: white;
  border-radius: 15px;
  padding: 6px 10px;
  font-size: 14px;
  line-height: 14px;
}
.surveys .surveys-detail.miniature {
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background: white;
  border-radius: 25px;
  margin: 0 !important;
  transition: all 0.3s ease;
  padding: 20px 24px;
}
.surveys .surveys-detail.miniature:hover {
  box-shadow: 3px 3px 20px rgba(22, 172, 167, 0.378);
  transform: scale(1.02);
}
.surveys .surveys-detail.miniature .surveys-title h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #29275a;
  font-weight: 600;
  line-break: anywhere;
}
.surveys .surveys-detail.miniature.has-voted {
  background-color: #f4f3f3;
}
.surveys .surveys-detail.miniature .quiz-date p {
  font-size: 12px;
}
.surveys .surveys-detail:not(.miniature) .survey-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 12px;
}
.surveys .surveys-detail .survey-content .custom-answer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.surveys .surveys-detail .survey-content .custom-answer input {
  max-width: 800px;
}
.surveys .surveys-detail .survey-content .answers {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.surveys .surveys-detail .survey-content .answers button {
  width: fit-content;
  display: flex;
  align-items: center;
}
.surveys .surveys-detail .survey-content .answers button .check {
  display: none;
  margin-left: 10px;
}
.surveys .surveys-detail .survey-content .answers button.selected .check {
  display: block;
}
.surveys .surveys-detail .survey-content .answers button.disabled {
  cursor: not-allowed;
  opacity: 1 !important;
}
.surveys .surveys-detail .survey-content .answers button.disabled span {
  opacity: 0.5;
}
.surveys .surveys-detail .survey-content .navigation-buttons {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.surveys .surveys-detail .survey-results p {
  font-size: 20px;
  text-align: center;
  margin: 25px 0;
}
.surveys .empty-state {
  text-align: center;
  padding: 3rem;
}
.surveys .empty-state p {
  color: var(--gray);
  margin-bottom: 1rem;
}
.surveys .loading-state {
  display: flex;
  justify-content: center;
  padding: 3rem;
}
.surveys button[disabled=true] {
  cursor: not-allowed;
  opacity: 0.5;
}
.surveys .popup-content .survey-votes-count {
  font-weight: bold;
  margin-bottom: 12px;
}
.surveys .popup-content .user-votes {
  display: grid;
  width: 100%;
  margin-bottom: 8px;
}
.surveys .popup-content .user-votes .user-vote {
  display: flex;
  justify-content: center;
  flex: 100%;
}
.surveys .popup-content .user-votes .user-vote:first-child p {
  border: 1px solid #000;
}
.surveys .popup-content .user-votes .user-vote:first-child p:first-child {
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
  border-right: none;
}
.surveys .popup-content .user-votes .user-vote p {
  width: 100%;
  padding: 8px;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  margin: 0;
}
.surveys .popup-content .user-votes .user-vote p:first-child {
  border-right: none;
}

.page-users .table-container {
  margin-top: 24px;
}
.page-users .table-ctas {
  margin-left: auto;
  display: flex;
  align-items: center;
  margin-bottom: 0;
  align-self: initial;
}
.page-users .table-ctas * {
  margin: 0;
}
.page-users .table-ctas button {
  height: 30px;
  width: 30px;
  background-color: transparent;
  padding: 0;
  margin-right: 8px;
}
.page-users .table-ctas button:last-of-type {
  margin-right: 0;
}
.page-users .table-ctas button.admin-delete {
  height: 22px;
  width: 22px;
  margin-left: 8px;
}
.page-users .table-ctas button svg {
  width: 100%;
  height: 100%;
}
.page-users .users-search-wrapper {
  position: relative;
  margin-right: auto;
}
.page-users .users-search-wrapper .users-search {
  width: 300px;
  padding-right: 30px;
}
.page-users .users-search-wrapper icon {
  position: absolute;
  right: 15px;
  top: 5px;
}
.page-users .users-search-wrapper icon svg {
  width: 20px;
  height: 24px;
  display: block;
}
.page-users .import-file {
  color: #ffffff;
  border-radius: 9999px;
  padding: 12px 24px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: fit-content;
  background-color: #29275a;
}
.page-users .import-user-list-container {
  max-height: 300px;
  overflow: auto;
}
.page-users accordion {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 0;
  box-shadow: none;
  background-color: transparent;
}
.page-users accordion toggle {
  border: none;
  padding: 16px 24px;
  border-radius: 16px;
  position: relative;
  background-color: #e1f4f4;
}
.page-users accordion toggle::after {
  content: none;
}
.page-users accordion toggle .toggle-header {
  height: fit-content;
}
.page-users accordion toggle .toggle-header::before {
  display: none;
}
.page-users accordion toggle .toggle-header > span {
  line-height: 32px;
  padding: 0 0px 0 0px;
}
.page-users accordion toggle .toggle-header.open + div {
  width: 100%;
  background-color: transparent;
  padding: 20px 0px 0px 0px;
}
.page-users accordion toggle .toggle-header.open + div::before {
  display: none;
}
.page-users .table-container {
  padding: 0 24px;
}
/*# sourceMappingURL=app.css.map */
