@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab&display=swap");
.flash-container {
  position: sticky;
  top: 0;
  width: 100%;
  padding: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin: 0;
  pointer-events: none;
  z-index: 1000;
}

.flash-message {
  margin: 5px 0;
  padding: 12px 24px;
  width: auto;
  max-width: 90%;
  border-radius: 6px;
  display: inline-block;
  color: #fff;
  font-size: 16px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  pointer-events: auto;
}

.flash-message.fade-out {
  opacity: 0;
  transform: translateY(-10px);
}

.flash-message.success {
  background-color: #28a745;
}

.flash-message.error {
  background-color: #dc3545;
}

.flash-message.warning {
  background-color: #ffc107;
  color: #212529;
}

/* profil Base styles */
.profil-alert-warning {
  padding: 1rem;
  text-align: center;
}

.profil .disabled {
  color: grey;
}

.profil .position-relative {
  position: relative;
}

.profil .editProfil, .profil .resetPassword {
  padding: 0.5em 1em;
  border-radius: 1em;
}

.profil .btn-cancel, .profil .btn-save {
  border-radius: 20px;
}

.profil .button-disabled {
  border: solid 1px #d1d1d1;
  background-color: #d1d1d1;
  color: #5f5f5f;
  pointer-events: none;
}

/* Common offcanvas styles for #editProfil and #resetPassword */
.profil .offcanvas#editProfil, .profil .offcanvas#resetPassword {
  width: 50%;
}

.profil input.form-control:disabled {
  background-color: white;
  color: grey;
  border: 1px solid grey;
}

/* offcanvas#editProfil */
.profil .offcanvas#editProfil .input-icon {
  position: absolute;
  left: 8px;
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.profil .offcanvas#editProfil input.form-control {
  padding-left: 36px;
  border: 1px solid #0B41B9;
}

.profil .offcanvas#editProfil input.form-control.border-red {
  border-color: #eb2537;
}

.profil .offcanvas#editProfil .div-error-msg ul {
  margin-bottom: 0;
}

/* Responsive design */
@media (max-width: 980px) {
  .profil .offcanvas#editProfil, .profil .offcanvas#resetPassword {
    width: 100%;
  }
}
/* Change password section */
.password-input {
  padding: 15px 50px 15px 20px;
  border-radius: 10px;
  background-color: #fff;
  border: 2px solid #0b41b9;
}

.password-input:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background-color: #d3d3d3;
  color: #888;
  border-color: #bbb;
}

.password-conditions {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
  max-width: 100%;
  overflow: hidden;
}

.password-conditions.invisible {
  display: none;
}

.password-conditions p {
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #212529;
  font-size: 0.95rem;
}

.password-conditions ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.password-conditions li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.error-message {
  padding: 0.75rem 1.5rem;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
  transition: opacity 0.3s ease-in-out;
  max-width: 350px;
}

.error-message.invisible {
  opacity: 0;
  visibility: hidden;
}

.button-primary {
  color: white;
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
  padding: 0.5rem 2rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.button-primary:hover {
  background-color: var(--color-primary-text);
  border-color: var(--color-primary-text);
}

.button-secondary {
  color: white;
  background-color: var(--color-secondary);
  border: 1px solid var(--color-secondary);
  padding: 0.5rem 2rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.button-success {
  color: white;
  background-color: var(--color-success);
  border: 1px solid var(--color-success);
  padding: 0.5rem 2rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.button-success:hover {
  background-color: var(--color-success-text);
  border-color: var(--color-success-text);
}

.button-danger {
  color: white;
  background-color: var(--color-danger);
  border: 1px solid var(--color-danger);
  padding: 0.5rem 2rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.button-danger:hover {
  background-color: var(--color-danger-text);
  border-color: var(--color-danger-text);
}

.button-warning {
  color: white;
  background-color: var(--color-warning);
  border: 1px solid var(--color-warning);
  padding: 0.5rem 2rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.button-warning:hover {
  background-color: var(--color-warning-text);
  border-color: var(--color-warning-text);
}

.button-info {
  color: white;
  background-color: var(--color-info);
  border: 1px solid var(--color-info);
  padding: 0.5rem 2rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.button-info:hover {
  background-color: var(--color-info-text);
  border-color: var(--color-info-text);
}

.button-disabled {
  color: var(--color-disabled-text);
  background-color: var(--color-disabled);
  border: 1px solid var(--color-disabled);
  padding: 0.5rem 2rem;
  cursor: not-allowed;
  opacity: 0.6;
}

.button-disabled:hover {
  background-color: var(--color-disabled);
  border-color: var(--color-disabled);
}

.rounded-sm {
  border-radius: 4px;
}

.rounded {
  border-radius: 6px;
}

.rounded-md {
  border-radius: 8px;
}

.rounded-lg {
  border-radius: 12px;
}

.rounded-xl {
  border-radius: 16px;
}

.rounded-full {
  border-radius: 9999px;
}

.sticky-bottom {
  position: sticky;
  bottom: 5vh;
  z-index: 10;
}

.test-platform-block {
  width: 88%;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
  text-align: left;
  line-height: 1.6;
  background-color: #fff;
}

.test-platform-title {
  font-size: 1.5rem;
  color: #383d41;
  margin-bottom: 2rem;
}

.intro-section {
  margin-bottom: 2rem;
}

.objectives-section {
  background-color: #edf4fc;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.objectives-list {
  list-style: none;
  padding-left: 0;
}

.objectives-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.objectives-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4CAF50;
  font-weight: bold;
  font-size: 1.2rem;
}

.attempts-info {
  background-color: #d1ecf1;
  border-left: 4px solid #17a2b8;
  padding: 0.5rem 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.attempts-info p {
  font-size: 0.9rem;
  margin: 0;
  color: #0c5460;
}

:root {
  --color-primary: #007bff;
  --color-primary-text: #0b41b9ff;
  --color-primary-bg: #edf4fcff;
  --color-secondary: #6c757d;
  --color-secondary-text: #383d41;
  --color-secondary-bg: #e2e3e5;
  --color-success: #00d1a5ff;
  --color-success-text: #007e63ff;
  --color-success-bg: #d4edda;
  --color-danger: #dc3545;
  --color-danger-text: #721c24;
  --color-danger-bg: #f8d7da;
  --color-warning: #ffc107;
  --color-warning-text: #856404;
  --color-warning-bg: #fff3cd;
  --color-info: #17a2b8;
  --color-info-text: #0c5460;
  --color-info-bg: #d1ecf1;
  --color-disabled: #e9ecef;
  --color-disabled-text: #6c757d;
  --color-certified: #00D2A4;
  --color-not-certified: #D81A37;
  --color-retake: #FF8A61;
}

* {
  font-family: "Montserrat";
}

.robSlab {
  font-family: "Roboto+Slab";
}

.container {
  max-width: 100%;
  padding: 0;
  margin: 0;
  flex: 1;
}

.cursor {
  cursor: pointer;
}

.center {
  text-align: center;
}

.bold {
  font-weight: bold;
}

.semi-bold {
  font-weight: 600;
}

.medium {
  font-weight: 500;
}

.light {
  font-weight: 300;
}

.bolder {
  font-weight: 800;
}

.mb5 {
  margin-bottom: 5px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb50 {
  margin-bottom: 50px;
}

.mt15 {
  margin-top: 15px;
}

.mt50 {
  margin-top: 50px;
}

.mr5 {
  margin-right: 5px;
}

.ml5 {
  margin-left: 5px;
}

.ml15 {
  margin-left: 15px;
}

.top15 {
  top: 15px;
}

.flexinline {
  display: inline-flex;
  justify-content: space-between;
}

.bottomSeparator {
  border-bottom: 1px #1E54CC solid;
  opacity: 20%;
}

.invisible {
  display: none;
}

.sticky {
  position: sticky;
  top: 0;
}

.box-shadow {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}

.full-width {
  width: 100%;
}


h1 {
  font-size: 42px;
  font-weight: 900;
  color: #222222;
  margin: 0 0 20px 0;
  padding: 0;
}

h2 {
  font-size: 26px;
  font-weight: 900;
  color: #222222;
  margin: 0 0 10px 0;
  padding: 0;
}

.pages--title {
  background-color: #E5F9F3;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pages--title-container {
  max-width: 1360px;
  padding: 20px 20px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pages--title-container-subtitle {
  font-size: 14px;
  font-weight: 500;
  color: #717171;
}

.button {
  width: max-content;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0px;
  border-radius: 34px;
  text-decoration: none;
  text-align: center;
  padding: 10px 40px 10px 40px;
  font-weight: 600;
  font-size: initial;
  transition: transform 0.1s;
  cursor: pointer;
}

.button:hover {
  transform: scale(1.1);
}

.button:hoverimg {
  transform: scale(1.1);
}

a:hover.primary-button, a:hover.certif-dl-button, a:hover.forth-button, a:hover.secondary-button, a:hover.annex-button, a:hover.certif-dl-secondary {
  color: #fff;
}

a:hover.somber-bg-button {
  color: #0b41b9;
}

a:hover.third-button {
  color: #147BFF;
}

a:hover.close-popin-button {
  color: #707070;
}

.button-left {
  margin-left: 0;
}

.button-right {
  margin-right: 0;
}

.certif-dl-button {
  border: solid 4px #00D1A5;
  background-color: #00D1A5;
  color: #fff;
}

.certif-dl-secondary {
  border: solid 4px #147BFF;
  background-color: #147BFF;
  color: #fff;
}

.somber-bg-button {
  border: solid 4px #fff;
  background-color: #fff;
  color: #0b41b9;
  margin-top: 30px;
}

.primary-button {
  border: solid 4px #00D1A5;
  background-color: #00D1A5;
  color: #fff;
  margin-top: 30px;
}

.secondary-button {
  border: solid 4px #147BFF;
  background-color: #147BFF;
  color: #fff;
  margin-top: 30px;
}

.third-button {
  border: solid 4px #147BFF;
  background-color: #fff;
  color: #147BFF;
  margin-top: 30px;
}

.forth-button {
  border: solid 4px #1E54CC;
  background-color: #1E54CC;
  color: #fff;
  margin-top: 30px;
}

.forth-buttona:hover {
  color: currentColor;
}

.certified-button {
  border: solid 4px #00D1A5;
  background-color: #fff;
  color: #00D1A5;
  margin-top: 30px;
}

.certified-button:hover {
  background-color: #00D1A5;
  color: #fff;
}

.not-certified-button {
  border: solid 4px #D81A37;
  background-color: #fff;
  color: #D81A37;
  margin-top: 30px;
}

.not-certified-button:hover {
  background-color: #D81A37;
  color: #fff;
}

.close-popin-button {
  border: solid 2px #D1D1D1;
  padding-top: 12px;
  background-color: #fff;
  color: #707070;
  margin-top: 30px;
}

.no-margin-btn {
  margin-top: 0;
}

.annex-button {
  border: solid 4px #0F47AB;
  background-color: #0F47AB;
  color: #fff;
  margin-top: 30px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 5px;
}

.annex-button img {
  height: 30px;
  margin-right: 10px;
}

.annex-button.primary-button {
  border: solid 4px #00D1A5;
  background-color: #00D1A5;
  color: #fff;
}

.btn280 {
  width: 280px;
}

.btn380 {
  width: 380px;
}

.disable-button {
  border: solid 4px #D1D1D1;
  background-color: #D1D1D1;
  color: #5F5F5F;
  pointer-events: none;
}

.one-line-button {
  max-height: 53px;
  min-width: 190px;
}

.go-top-button {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 20px;
  border-radius: 15px;
  background-color: #0b41b9;
  cursor: pointer;
}

.go-top-button.mereos {
  bottom: 90px;
}

.go-top-link {
  width: 60px;
  height: 60px;
}

/* Footer Styles */
.site-footer {
  margin: 3rem 0;
}

.site-footer--links {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 1rem 0 1rem;
  border-bottom: 1px solid #E0DEE0;
}

@media (min-width: 768px) {
  .site-footer--links {
    flex-direction: row;
    padding: 1.5rem 1rem;
  }
}
.site-footer--link {
  font-size: 16px;
  font-weight: 400;
  color: #7A7879;
  text-decoration: underline;
  padding: 0.5rem 0;
  margin-bottom: 1rem;
}

.site-footer--link:hover {
  color: #007bff;
}

@media (min-width: 768px) {
  .site-footer--link {
    flex: 1 1 33.333%;
    padding: 0;
    margin-bottom: 0;
  }
}
.site-footer--copyright {
  padding: 1rem;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  color: #7A7879;
}



.input input[type=text],
.input input[type=email],
.input input[type=password],
.input input[type=tel],
.input input[type=date] {
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  background-color: #FFFFFF;
  border: 1px solid #E9E9E9;
  border-radius: 6px;
  color: #222222;
  padding: 9px 14px 10px;
  outline: none;
  transition: all 0.3s ease;
  appearance: none;
}

.input label {
  font-size: 14px;
  font-weight: 500;
  color: #717171;
  display: block;
  margin-bottom: 6px;
}

.new-button {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  min-width: 150px;
  color: #FFFFFF;
  background-color: #007E63;
  border: none;
  transition: all 0.2s ease;
  text-align: center;
  cursor: pointer;
  border-radius: 6px;
  display: inline-block;
  padding: 10px 20px 11px;
  position: relative;
  overflow: hidden;
  appearance: none;
}

.grid-wrapper {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
}

.breadcrumb {
  background-color: transparent;
  padding: 10px 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 1100px;
  color: #5A5859;
}

.breadcrumb--container {
  width: 100%;
  max-width: 1360px;
  padding: 0 20px;
}

.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb ol li {
  font-size: 14px;
  font-weight: 500;
  color: #222222;
  display: inline-block;
  margin: 0 2px;
}

.breadcrumb ol li:after {
  content: ">";
  color: #007E63;
  margin-left: 4px;
}

.breadcrumb ol li:first-child {
  margin-left: 0;
}

.breadcrumb ol li:last-child {
  margin-right: 0;
}

.breadcrumb ol li:last-child:after {
  display: none;
}

.breadcrumb ol li a {
  color: #007E63;
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumb ol li a:hover {
  text-decoration: underline;
}

.portlet {
  width: 100%;
  background-color: #FFFFFF;
  border: 1px solid #E9E9E9;
  border-radius: 10px;
  display: block;
  margin: 0 0 20px;
}

.portlet--title {
  padding: 0 25px;
  border-bottom: 1px solid #E9E9E9;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.is-closed .portlet--title {
  border-bottom: none;
}

.is-compact .portlet--title {
  padding: 0 18px;
}

.portlet--title-label {
  font-size: 16px;
  font-weight: 600;
  color: #222222;
  line-height: 60px;
  flex-grow: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.is-compact .portlet--title-label {
  font-size: 12px;
  line-height: 42px;
}

.portlet--title-label svg {
  width: 24px;
  height: auto;
  stroke: #717171;
  margin-right: 10px;
}

.is-compact .portlet--title-label svg {
  width: 16px;
}

.portlet--title-toolbar {
  display: flex;
  align-items: center;
  align-content: flex-end;
}

.portlet--title-toolbar .new-button {
  min-width: initial;
  color: #FFFFFF;
  padding: 6px 20px 6px;
  margin: 0 2px;
  display: flex;
}

.portlet--title-toolbar .new-button:first-child {
  margin-left: 0;
}

.portlet--title-toolbar .new-button:last-child {
  margin-right: 0;
}

.portlet--body {
  padding: 25px;
  transition: all 0.3s ease;
}

.is-closed .portlet--body {
  display: none;
}

.is-compact .portlet--body {
  padding: 18px;
}

.title {
  font-size: 38px;
  margin-top: 10px;
  margin-bottom: 30px;
}

.title.title60 {
  font-size: 60px;
}

.title.title80 {
  font-size: 80px;
}

.txt11 {
  font-size: 11px;
}

.txt15 {
  font-size: 15px;
}

.txt17 {
  font-size: 17px;
}

.txt20 {
  font-size: 20px;
}

.txt25 {
  font-size: 25px;
}

.txt30 {
  font-size: 30px;
}

.txt38 {
  font-size: 38px;
}

.txt55 {
  font-size: 55px;
}

.txt80 {
  font-size: 80px;
}

.bold600 {
  font-weight: 600;
}

.txtLeft {
  text-align: left;
}

.subheadPrimary {
  color: #0b41b9;
  font-size: 25px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.subheadTitle {
  font-size: 25px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.subtitleCertif {
  margin-top: -20px;
}

.textPrimary {
  color: #0b41b9;
}

.textPrimary2 {
  color: #007E63;
}

.textUndertext {
  color: #147BFF;
}

.textWarning {
  color: #FF9300;
}

.textSecondary {
  color: #00D1A5;
}

.textSecondaryImportant {
  color: #1E54CC;
}

.textDisable {
  color: #707070;
}

.textSomberBG {
  color: #fff;
}

.backgroundBody {
  background-color: transparent;
  width: 100%;
  padding-bottom: 50px;
}

.breadcrumbs {
  color: #707070;
  padding: 40px 0;
  background-color: #fff;
  width: 100%;
}

.breadcrumbs .breadcrumbsBody {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
}

.breadcrumbs a {
  color: #707070;
  text-decoration: none;
}

.bodyBloc {
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  border-radius: 30px;
  padding: 30px;
}

.userInfoBloc {
  border-bottom: 1px solid #707070;
  padding: 0px 70px;
  padding-bottom: 15px;
}

.certifBloc {
  padding: 0px 70px;
  padding-top: 15px;
}

.certifRow {
  background-color: #EDF4FC;
  border-radius: 20px;
  border: solid 2px #0b41b9;
  padding: 20px 50px;
  width: 100%;
}

.certifRow a {
  text-decoration: none;
}

.title-row {
  background-color: #F8FDFD;
  border-radius: 20px;
  border: solid 2px #00D1A5;
  padding: 20px 50px;
  width: 100%;
}

.certif-row-exam {
  padding: 20px 0px;
  width: 100%;
}

.userInfoRows {
  padding-left: 30px;
}

.infoText {
  width: fit-content;
  padding: 4px 10px;
  background-color: #EDF4FC;
  color: #147BFF;
  border-radius: 10px;
}

.certifRowTitle {
  color: #0b41b9;
  font-size: 24px;
  padding-top: 8px;
}

.certifRowSubTitle {
  color: #0b41b9;
  font-size: 18px;
  padding-top: 8px;
}

.entete-profil {
  background-color: #3db5a6;
  color: white;
  border-radius: 14px;
  padding: 40px 70px;
  width: 90%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  line-height: 22px;
  margin-top: 80px;
}

.encart-email {
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border-radius: 9px;
  opacity: 0.57;
  color: #147BFF;
  padding: 5px;
}

.profil-header-img {
  position: absolute;
  height: 280px;
  margin-top: -104px;
  margin-left: 580px;
}

.welcome-profil {
  width: 500px;
}

.encart {
  border: 2px solid #0b41b9;
  border-radius: 25px;
  padding: 40px 30px;
  text-align: center;
  background-color: #EDF4FC;
  flex: 1 1 0;
}

@media all and (max-width: 1050px) {
  .profil-header-img {
    display: none;
  }
}
.certif-row-title-exam {
  padding-top: 8px;
}

.centerImg {
  margin: auto;
  display: flex;
}

.titleImg {
  width: 120px;
}

.uploadImg {
  width: 80px;
}

.logoTopLeft {
  position: absolute;
  margin: 40px;
  width: 250px;
  padding-right: 30px;
  border-right: #fff 1px solid;
}

.bgImg {
  max-width: 45%;
  height: 1200px;
  background-image: linear-gradient(90deg, #020024 0%, #3db5a6 0%, rgba(61, 181, 166, 0.888393) 30%, rgba(61, 181, 166, 0.325368) 50%, rgba(61, 181, 166, 0) 100%), url("/img/background_login.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.smallIcon {
  width: 20px;
  vertical-align: top;
}

.popinIcon {
  width: 35px;
  vertical-align: middle;
  margin-right: 5px;
}

.iconLeft {
  margin-left: -40px;
  margin-right: 20px;
}

.buttonIcon {
  width: 25px;
  vertical-align: top;
}

.titleIcon {
  height: 30px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -10px;
  margin-bottom: 20px;
}

.img50h {
  height: 50px;
}

.img70h {
  height: 70px;
}

.img90h {
  height: 90px;
}

.img30 {
  width: 30px;
}

.img80 {
  width: 80px;
}

.img150 {
  width: 150px;
}

.yellowLine {
  height: 1050px;
  border: solid 8px #ffd953;
  position: absolute;
  margin-left: 800px;
}

.verticalSeparatorLine {
  height: 1200px;
  border: solid 8px #00D1A5;
  position: absolute;
  margin-left: 45%;
}

.formContainer {
  position: absolute;
  margin-left: 53%;
  width: 40%;
  margin-top: 40px;
  padding: 80px 50px;
  background-color: #fff;
  border-radius: 30px;
}

/* Full-width input fields */
.container .form-input {
  width: 100%;
  padding: 15px 50px;
  margin: 5px 0 22px 0;
  border: none;
  background-color: #f1f1f1;
}

.container .form-input:focus {
  background-color: #ddd;
  outline: none;
}

.iconMail {
  background-image: url("/img/envelope.svg");
  background-repeat: no-repeat;
  background-size: 25px;
  background-position: center left 15px;
}

.iconLock {
  background-image: url("/img/lock.svg");
  background-repeat: no-repeat;
  background-size: 25px;
  background-position: center left 15px;
}

.eyeVisibility {
  content: url("/img/eye.svg");
  margin-left: -40px;
  cursor: pointer;
  width: 25px;
  vertical-align: middle;
}

.eyeVisibility.eyeSlash {
  content: url("/img/eye_slash.svg");
}

.inputBloc {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.checkboxLogin {
  transform: scale(2);
  margin-left: 8px;
}

.checkboxTextLogin {
  margin-top: -28px;
  margin-left: 40px;
}

.logoTopLeftLogin {
  position: absolute;
  margin: 40px;
  width: 250px;
  padding-right: 20px;
  border-right: #fff 1px solid;
}

.logoTopLeftLogin2 {
  position: absolute;
  margin: 40px;
  margin-left: 300px;
  width: 250px;
}

@media all and (max-width: 1200px) {
  .formContainer {
    margin-left: 10%;
    margin-right: 10%;
    margin-top: 120px;
    width: 80%;
    max-width: 80%;
    position: absolute;
    padding-left: 15%;
    padding-right: 15%;
  }
  .verticalSeparatorLine {
    display: none;
  }
  .bgImg {
    max-width: 100%;
    height: 1500px;
  }
  .logoTopLeft {
    margin-top: -130px;
  }
}
@media all and (max-width: 900px) {
  .formContainer {
    margin-top: 120px;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
  }
  .bgImg {
    height: 800px;
  }
}
.navbar {
  z-index: 5;
  background-color: #3DB5A6;
}

.navbar .navbar-nav .nav-link {
  color: #fff;
}

.navbar-body {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.navbarIcon {
  height: 30px;
  vertical-align: bottom;
  margin-right: 10px;
}

.navbar-right {
  float: right;
}

.navbar-collapse {
  flex-basis: initial;
  flex-grow: initial;
}

.nav-item {
  margin: 0px 30px;
}

.nav-item:hover {
  transform: scale(1.1);
}

.navbar-toggler-icon {
  content: url("/img/menu.svg");
}

.navbar-toggler:focus {
  box-shadow: none;
}

.verticalNavLine {
  width: 2px;
  height: 30px;
  margin-top: 10px;
  border-right: #fff 1px solid;
}

/*Dropdown menu*/
.dropdown-content {
  display: none;
  position: absolute;
  padding: 10px 20px;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0px 0px 8px #707070;
}

.dropdown-content a {
  float: none;
  color: #3DB5A6;
  font-weight: bold;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  transform: scale(1.1);
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

.dropbtn {
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media screen and (max-width: 1000px) {
  .navbar-right {
    float: initial;
  }
  .navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
  }
  .dropdown-content {
    left: 5px;
    right: initial;
  }
  .nav-item:hover {
    transform: none;
  }
  .verticalNavLine {
    display: none;
  }
}
.pagination a {
  margin: 1px;
}

.warningPopin {
  background-color: #FFE9DD;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 60px;
}

.warningPopin .warningImg {
  height: 30px;
  width: 30px;
  margin: 0;
  margin-right: 10px;
}

.warningPopin .warningText {
  margin: 0;
}

.quoteImg {
  width: 180px;
  margin-left: 75%;
  margin-bottom: -90px;
}

.womanComputerImg {
  height: 500px;
  position: absolute;
  right: 0;
}

.homeTitleBloc {
  width: 100%;
  background-image: linear-gradient(90deg, #020024 0%, #3db5a6 0%, rgba(61, 181, 166, 0.969625) 34%, rgba(61, 181, 166, 0.860382) 50%, rgba(61, 181, 166, 0) 75%), url("/img/homeHeader.png");
  background-repeat: no-repeat;
  background-size: cover, 1000px;
  background-position: center, right 0 top 0;
  padding: 80px 15%;
}

.homeTitle {
  color: #fff;
  font-size: 60px;
  max-width: 600px;
  font-weight: 500;
  line-height: 65px;
  margin-top: 50px;
  margin-bottom: 30px;
}

.homeYellowBloc {
  color: #0b41b9;
  font-size: 30px;
  font-weight: 300;
  width: 100%;
  padding-top: 25px;
  padding-bottom: 25px;
  margin: 0;
  text-align: center;
  background-color: #ffd953;
}

.homeNumberApprenantsBloc {
  color: #007E63;
  font-size: 30px;
  font-weight: 300;
  width: 100%;
  padding-top: 35px;
  padding-bottom: 35px;
  margin: 0;
  text-align: center;
  background-color: #EAF8F7;
}

.homeCertificateursBloc {
  color: #007E63;
  font-size: 30px;
  font-weight: 300;
  width: 100%;
  padding-top: 35px;
  padding-bottom: 35px;
  margin: 0;
  background-color: #F8FDFD;
  margin-left: auto;
  margin-right: auto;
}

.homeCertificateursBloc .txtLeft {
  padding-left: 20%;
}

.imgCertificateur {
  height: 120px;
  margin-left: 10px;
  padding: 10px;
  border: 2px #D3F0ED solid;
  border-radius: 20px;
}

.homeLightblueCenterBloc {
  color: #0b41b9;
  font-size: 30px;
  font-weight: 300;
  width: 75%;
  margin-left: auto;
  margin-right: auto;
  padding: 60px;
  padding-right: 35%;
  background-color: #f1f1f1;
  border-radius: 30px;
}

.homeQuoteBlocImg {
  height: 20px;
  margin-left: 15px;
  vertical-align: initial;
}

.homeCenterBloc {
  width: 80%;
  max-width: 800px;
  margin-bottom: 150px;
  margin-left: auto;
  margin-right: 15%;
}

.homeCenterBlocBackground {
  height: 600px;
  margin-left: 15%;
  background-image: url("/img/homeImg2.png");
  background-repeat: no-repeat;
  background-size: contain;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  margin-top: 100px;
  margin-bottom: -600px;
}

.homeCenterTextBloc {
  color: #007E63;
  font-size: 30px;
  font-weight: 300;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 60px;
  padding-right: 10%;
  background-color: #EAF8F7;
  border-radius: 30px;
}

.homeLightblueBloc {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f1f1f1;
}

.homeLightblueBloc .button {
  margin-left: auto;
  margin-right: auto;
}

.homeLightGreenBloc {
  margin-top: 0;
  padding: 40px 20%;
  background-color: #EAF8F7;
}

.homeLightGreenBloc .button {
  margin-left: auto;
  margin-right: auto;
}

.lightblueTitle {
  font-size: 30px;
  font-weight: 400;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.row {
  display: flex;
  width: 100%;
  margin: 0;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

.column {
  max-width: 500px;
}

.cardBody {
  text-align: left;
  font-weight: 300;
}

.homeCardsBloc {
  color: #fff;
  background-color: #3DB5A6;
}

.homeCardsBloc .card {
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 40px;
  text-align: center;
  background-color: inherit;
  border: #fff 2px solid;
  border-radius: 30px;
}

.homeCardsBloc .cardTitle {
  font-size: 20px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 300px;
}

.homeStatsBackground {
  width: 800px;
  height: 800px;
  margin-left: auto;
  background-image: url("/img/homeImg1.png");
  background-repeat: no-repeat;
  background-size: cover;
  border-top-left-radius: 30px;
  margin-top: 50px;
}

.homeStatsBloc .card {
  margin-top: -700px;
  margin-bottom: 50px;
  padding: 50px 80px;
  background-color: #fff;
  border: #00D1A5 2px solid;
  border-radius: 30px;
}

.homeStatsBloc .cardTitle {
  color: #0b41b9;
  font-size: 40px;
  text-align: left;
  line-height: 50px;
}

.homeStatsBloc .column {
  margin-left: 10%;
  max-width: 550px;
}

/*Definition popin*/
.popinBackground {
  z-index: 999;
  position: fixed;
  display: none;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5019607843);
}

.popin {
  position: fixed;
  max-width: 700px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.popinButtonLine {
  width: 100%;
  padding-left: 80px;
  padding-right: 80px;
}

.popinBackgroundColor {
  border-radius: 30px;
  border: #0b41b9 2px solid;
  background-color: #fff;
  padding: 30px 50px;
}

.popinBackgroundColor.small-popin {
  padding: 30px 90px;
}

.secondPopinBackgroundColor {
  border-radius: 30px;
  background-color: #fff;
  padding: 30px 50px;
}

.popinBackgroundColor.small-popin {
  padding: 30px 90px;
}

.badge-column {
  min-width: 180px;
}

.popinTitle {
  color: #0b41b9;
  font-size: 40px;
}

.alertZone {
  background-color: #FEF6F7;
  border: #FF5F77 2px solid;
  border-radius: 30px;
  text-align: left;
  padding: 20px 60px;
  margin-top: 30px;
  margin-bottom: -10px;
}

.alertTitle {
  color: #FF5F77;
}

.checkboxHome {
  transform: scale(2);
}

.checkboxHomeDiv {
  margin-bottom: -200px;
}

.checkboxTextHome {
  width: 85%;
  text-align: left;
  margin-left: 20%;
}

.imgBorderRightPrimary2 {
  border-right: #007E63 1px solid;
  padding-right: 20px;
  margin-right: 20px;
}

@media screen and (max-width: 1000px) {
  .homeCardsBloc .column {
    width: 100%;
    max-width: 100%;
    display: block;
    margin-bottom: 20px;
  }
  .homeStatsBloc .column {
    margin-left: 5%;
    margin-right: 5%;
    display: block;
    margin-bottom: 20px;
  }
  .womanComputerImg {
    width: 0px;
    position: absolute;
    right: 0;
  }
  .homeGreenCenterBloc {
    padding-right: 60px;
    text-align: center;
  }
  .homeGreenCenterBloc .button-left {
    margin-left: auto;
    margin-right: auto;
  }
  .homeCenterBloc {
    margin-bottom: 50px;
  }
  .homeCenterTextBloc {
    font-size: 20px;
  }
}
.certifTitleBloc {
  width: 88%;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}

.certifTitleBloc .accordion-button {
  width: 100%;
  cursor: pointer;
}

.certifTitleDescription {
  width: 88%;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  padding: 0px 20px;
}

.circleExam {
  width: 80px;
  height: 80px;
  padding-left: 31px;
  padding-top: 22px;
  border-radius: 100%;
  border: solid 4px #f1f1f1;
  background-color: #f1f1f1;
  font-size: 20px;
  margin-left: auto;
  margin-right: auto;
}

.circleExam img {
  width: 40px;
  margin-left: -15px;
  margin-top: -3px;
}

.circleBorder {
  border-color: #147BFF;
}

.avancementExamBloc {
  margin-top: 100px;
  margin-bottom: 50px;
}

.avancementExam {
  width: 100%;
}

.avancementExamText {
  width: 100%;
}

.avancementExamUser {
  width: 100%;
}

.examBgLine {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  padding: 0px 50px;
  margin-top: 140px;
  margin-bottom: -130px;
  height: 6px;
  background: linear-gradient(#EDF4FC, #EDF4FC);
}

.examBgLine.soumis {
  background: linear-gradient(to right, #D3F0ED 50%, #EDF4FC 50%);
}

.examBgLine.corrected {
  background: #D3F0ED;
}

.circleFill {
  background-color: #00D1A5;
  border-color: #00D1A5;
  color: #fff;
}

.userIconExam {
  width: 80px;
  height: 80px;
}

.headerExam {
  margin: 0;
  padding: 0;
  display: inline-flex;
  width: 100%;
  border-bottom: initial;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  background-color: #f1f1f1;
  overflow: hidden;
}

.headerExamElement {
  background-color: #f1f1f1;
  text-align: center;
  margin: 0;
  padding: 30px 0px 10px 0px;
  flex: auto;
}

.headerExamElement .nav-link {
  border: initial;
}

.headerExamElement:hover {
  transform: initial;
}

.headerExamElement.active {
  box-shadow: 5px 5px 5px #000;
}

.headerExamSelected:after {
  content: "";
  position: sticky;
  bottom: 0;
  border-bottom: 25px solid #fff;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
}

.bodyBlocExam {
  width: 90%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  border-radius: 30px;
  padding-bottom: 30px;
}

.iconHeaderExam {
  width: 40px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
  content: url("/img/circleBlue.svg");
}

.iconHeaderExamCompleted {
  width: 40px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
  content: url("/img/circleGreenCheck.svg");
}

.iconHeaderExamLock {
  width: 40px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
  content: url("/img/lock.svg");
}

.borderRight {
  box-shadow: 2px 0 4px darkgrey !important;
}

.headerExamOpen {
  background-color: #AEC5F7;
}

.headerExamFinished {
  background-color: #1E54CC;
}

.titleExamNotFinished {
  color: #1E54CC;
}

.titleExamFinished {
  color: #fff;
}

.offcanvas {
  width: 80%;
  padding: 30px;
}

.offcanvas-head {
  padding-bottom: 30px;
  padding-left: 16px;
  border-bottom: 2px solid #EDF4FC;
}

.textCircle {
  flex: 1;
  text-align: center;
}

.userLogoLine {
  flex: 1;
  text-align: center;
}

.offcanvas-close {
  position: relative;
  margin-left: 98%;
}

.resultInfo {
  width: initial;
  padding-left: initial;
  text-align: end;
}

.statusInfo {
  border-radius: 10px;
  border: 4px solid #147BFF;
  max-width: 250px;
  text-align: left;
  padding-left: 20px;
  margin-top: -4px;
  padding-top: 4px;
  padding-bottom: 4px;
}

.separator {
  border-top: 1px solid #f1f1f1;
  width: 90%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.accordion-group {
  width: 88%;
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 5px;
  border: 2px solid #1E54CC;
}

.accordion {
  max-width: 1000px;
  margin: 0 auto;
}

.accordion-item {
  border-radius: 0.25rem;
  border: 0;
}

.accordion-button {
  background-color: #F8FDFD;
  margin-left: 0;
  margin-right: 0;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: inherit;
  box-shadow: none;
}

.accordion-button.collapsed {
  border-radius: 10px !important;
}

.bottomArrow {
  position: absolute;
}

.mailResult {
  width: fit-content;
  padding: 4px 10px;
  background-color: #EDF4FC;
  color: #147BFF;
  border-radius: 10px;
  margin-left: 30px;
}

.examTitle {
  padding: 0px 50px;
}

.circleFailed {
  background-color: #ff5f77;
  border-color: #ff5f77;
}

.circleRetake {
  background-color: #ff9a5f;
  border-color: #ff9a5f;
}

.colorFailed {
  color: #ff5f77;
}

.certif-title-row {
  width: 95%;
}

.certif-title-logo {
  width: fit-content;
  padding-left: 20px;
}

.certif-logo {
  height: 80px;
}

.examBloc {
  width: 90%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.examQuestionBloc {
  background-color: #fff;
  border-radius: 30px;
  padding: 50px 60px;
  padding-bottom: 20px;
}

.examQuestionBloc img {
  max-width: 100% !important;
  height: auto !important;
}

.answerBloc {
  width: 100%;
  height: fit-content;
  max-width: 600px;
  border-radius: 30px;
  margin-bottom: 15px;
  vertical-align: middle;
}

.answerBloc .input-group-text {
  border-radius: 10px;
  border: solid 1px #EDF4FC;
}

.answerBloc .form-control {
  border: solid 1px #EDF4FC;
  border-right: 0;
}

.answerId {
  width: 45px;
  text-align: center;
  background: #f1f1f1;
}

.answerName {
  border-left: 0;
  border-right: 0;
  padding-top: 12px;
  padding-bottom: 12px;
}

.answerTextzone {
  width: 100%;
  height: 200px;
  background-color: #EDF4FC;
  border-radius: 10px;
  border: solid 3px #E0EDFC;
  padding: 10px;
}

.answer-textzone-corrected {
  width: 100%;
  height: 200px;
  background-color: #f1f1f1;
  border-radius: 10px;
  border: solid 3px #D1D1D1;
  padding: 10px;
}

.checkboxAnswer {
  background-color: initial;
  padding-right: 20px;
}

.checkboxAnswer input {
  transform: scale(1.5);
}

.hideDragAndDropFile {
  display: none;
}

.dragAndDropFile {
  width: 100%;
  border: dashed 2px #147BFF;
  border-radius: 30px;
  text-align: center;
  padding: 30px;
  cursor: pointer;
}

.timerExam {
  border: 3px solid #007E63;
  width: fit-content;
  border-radius: 20px;
  padding: 15px 20px;
  color: #007E63;
  background-color: #fff;
  font-size: 22px;
}

.breadcrumbsExam {
  color: #707070;
  padding: 10px 10px;
  background-color: #fff;
  width: 100%;
  display: inline-flex;
  z-index: 1;
}

.breadcrumbsTextExam {
  padding-top: 25px;
  padding-left: 10px;
}

.breadcrumbsTextExam a {
  color: #707070;
  text-decoration: none;
}

.titleExam {
  font-size: 25px;
  background-color: #0b41b9;
  border-radius: 20px;
  color: #fff;
  padding: 15px 0;
  margin-top: 10px;
  margin-bottom: 30px;
}

.subheadTitleExam {
  font-size: 25px;
  background-color: #147BFF;
  border-radius: 20px;
  color: #fff;
  padding: 15px 0;
  margin-top: 10px;
  margin-bottom: 30px;
}

.warningZone {
  background-color: #FFFAF2;
  border: 2px solid #FF9300;
  border-radius: 20px;
  padding: 30px 40px;
}

.closePopin {
  width: 30px;
  display: block;
  margin-left: auto;
  margin-top: -20px;
  margin-right: -40px;
}

.closePopin:hover {
  cursor: pointer;
}

.answerSelected .answerId {
  border: solid 2px #147BFF;
  border-right: 0;
  background-color: #147BFF;
  color: #fff;
  font-weight: bold;
}

.answerSelected .answerName {
  border: solid 2px #147BFF;
  border-left: 0;
  border-right: 0;
}

.answerSelected .checkboxAnswer {
  border: solid 2px #147BFF;
  border-left: 0;
}

.questionScore {
  border: 1px #147BFF solid;
  max-height: 25px;
  padding: 0px 5px 5px 10px;
  margin-left: auto;
  min-width: fit-content;
}

.hidden-checkbox {
  display: none;
}

.loader {
  position: fixed;
  width: 325px;
  right: 10px;
  top: 120px;
  padding: 10px 20px;
  border: 3px solid #007E63;
  background-color: #fff;
  border-radius: 30px;
  z-index: 10;
}

.loader-img {
  margin-right: 5px;
}

.answerRight .answerId {
  background-color: #147BFF;
  color: #fff;
}

.answerRight .answerName {
  background-color: #EDF4FC;
}

.answerRight .checkboxAnswer {
  background-color: #EDF4FC;
}

.answerWrong .answerId {
  background-color: #FF5F77;
  color: #fff;
}

.answerWrong .answerName {
  background-color: #FEF6F7;
}

.answerWrong .checkboxAnswer {
  background-color: #FEF6F7;
}

.answerMiss .answerId {
  background-color: #00D1A5;
  color: #fff;
}

.answerMiss .answerName {
  background-color: #D3F0ED;
}

.answerMiss .checkboxAnswer {
  background-color: #D3F0ED;
}

.inputMark {
  border-radius: 10px;
  padding: 2px 0;
  text-align: center;
  color: #395589;
  border-color: #395589;
  opacity: 60%;
  max-width: 60px;
}

.answerIcon {
  width: 25px;
  margin-left: 20px;
}

.generalMark {
  background-color: #147BFF;
  border-radius: 10px;
  color: #fff;
  font-weight: bold;
  width: fit-content;
  padding: 10px 20px;
  margin-right: 10px;
}

.generalMark .inputMark {
  opacity: 100%;
}

.generalMark.disableMark {
  background-color: #9f9f9f;
}

.statusSelect {
  width: 200px;
  height: 50px;
  padding: 10px 10px;
  border-radius: 10px;
  background-color: #fff;
}

.correction-header {
  background-color: #fff;
  border-radius: 30px;
  padding: 30px 60px 50px 60px;
  box-shadow: 2px 2px 8px #707070;
}

.exam-score {
  border: 2px #0b41b9 solid;
  color: #0b41b9;
  max-height: 30px;
  padding: 2px 5px;
  min-width: 60px;
  width: fit-content;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  vertical-align: middle;
}

.chapter-score {
  border: 2px #147BFF solid;
  color: #147BFF;
  max-height: 30px;
  padding: 2px 5px;
  min-width: 60px;
  width: fit-content;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  vertical-align: middle;
}

.chapter-score.right {
  margin-left: auto;
}

.comment-title {
  background-color: #0b41b9;
  color: #fff;
  border-radius: 8px;
  width: fit-content;
  padding: 8px 30px;
  text-align: center;
}

.file-response {
  background-color: #EDF4FC;
  border-radius: 8px;
  padding: 0 18px;
  max-width: 400px;
  width: 100%;
}

.examCorrectionTitleBloc {
  width: 100%;
  margin: 0;
  padding: 20px;
  padding-top: 35px;
}

.examCorrectionBloc {
  border-radius: 20px;
  border: solid 2px #0b41b9;
  width: 100%;
  padding: 20px;
  padding-top: 40px;
}

.examCorrectionBloc:hover {
  background-color: #0b41b9;
}

.examCorrectionBloc:hover p {
  color: #fff;
}

.examCorrectionBloc:hover .statusACertifie {
  color: #147BFF;
}

.examCorrectionBloc:hover .statusCorrige, .examCorrectionBloc:hover .statusEnCours, .examCorrectionBloc:hover .statusNonCorrige {
  background-color: #fff;
  color: #0b41b9;
}

.examCorrectionBloc:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(2%) hue-rotate(333deg) brightness(107%) contrast(101%);
}

.examCorrectionBloc:hover .exam-list-separator {
  border-right: 1px solid #fff;
}

.ulExam {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.ulExam li p {
  width: 16%;
  text-align: center;
}

.certifCorrectionBody {
  width: 90%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.certifCorrectionBodyBloc {
  background-color: #fff;
  border-radius: 30px;
  padding: 50px 60px;
}

.iconSearch {
  background-image: url("/img/search.svg");
  background-repeat: no-repeat;
  background-size: 25px;
  background-position: center left 15px;
}

.searchInput {
  width: 380px;
  padding: 8px 50px;
  margin-bottom: 22px;
  border-radius: 12px;
  border: solid 2px #0b41b9;
  background-color: #fff;
}

.statusEnCours {
  border-radius: 20px;
  background-color: #FFFAF2;
  color: #FF9300;
  padding: 10px 0;
  margin-top: -10px;
  width: min-content;
}

.statusCorrige {
  border-radius: 20px;
  background-color: #D3F0ED;
  color: #00D1A5;
  padding: 10px 0;
  margin-top: -10px;
  width: min-content;
}

.statusNonCorrige {
  border-radius: 20px;
  background-color: #FCD8DD;
  color: #D81A37;
  padding: 10px 0;
  margin-top: -10px;
  width: min-content;
}

.statusCertifie {
  border-radius: 20px;
  background-color: #00D1A5;
  color: #fff;
  padding: 10px 0;
  margin-top: -10px;
  width: min-content;
}

.statusNonCertifie {
  border-radius: 20px;
  background-color: #D81A37;
  color: #fff;
  padding: 10px 0;
  margin-top: -10px;
  width: min-content;
}

.statusACertifie {
  border-radius: 20px;
  background-color: #fff;
  color: #147BFF;
  padding: 10px 0;
  margin-top: -10px;
  width: min-content;
  border: 2px solid #147BFF;
}

.correctionLinkEye {
  width: 35px;
}

#btnFilterCapterList .btnFiltre {
  border-radius: 12px;
  padding: 12px 30px;
  margin: 0 10px;
  opacity: 0.9;
  text-transform: capitalize;
}

#btnFilterCapterList .btnFiltre:hover {
  opacity: 1;
}

#btnFilterCapterList input + label {
  opacity: 0.9;
  background-color: #B3D6FE !important;
  border-color: #B3D6FE !important;
}

#btnFilterCapterList input:checked + label {
  background-color: #1E54CC !important;
  border-color: #1E54CC !important;
}

.inputDate {
  margin-right: 10px;
}

.formSelect {
  width: 310px;
  padding: 8px 50px;
  margin: 5px 5px 22px 5px;
  border-radius: 12px;
  border: solid 2px #0b41b9;
  background-color: #fff;
}

.oneLineStatus {
  max-height: 45px;
}

.filter-bloc {
  padding: 0 60px;
}

.results-header {
  padding: 0 60px;
}

.exam-correction-link {
  color: initial;
  text-decoration: none;
}

.exam-list-separator {
  border-right: 1px solid #0b41b9;
}

.correct-button {
  background: none;
  border: none;
}

.correct-button:hover {
  transform: scale(1.1);
}

.limit-title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.corrector-menu {
  width: 240px;
  margin-left: -120px;
  z-index: 5;
}

.corrector-menu button {
  border: 0;
  background-color: #fff;
}

.statusCorrigeResultats {
  border-radius: 20px;
  background-color: #D3F0ED;
  color: #00D1A5;
  padding: 10px 20px;
  width: min-content;
  text-align: center;
  min-width: 120px;
}

.statusNonCorrigeResultats {
  border-radius: 20px;
  background-color: #FCD8DD;
  color: #D81A37;
  padding: 10px 20px;
  width: min-content;
  text-align: center;
  min-width: 120px;
}

.statusDraft {
  border-radius: 20px;
  background-color: #fbe7c7;
  color: #d18c2f;
  padding: 10px 0;
  margin-top: -10px;
  width: min-content;
}

.instructionZone {
  background-color: #fff;
  border: 2px solid #007E63;
  border-radius: 20px;
  padding: 30px 40px;
}

.instructionZone img {
  max-width: 100% !important;
  height: auto !important;
}

.instructionTitle {
  background-color: #D3F0ED;
  color: #00D1A5;
  border-radius: 8px;
  width: fit-content;
  padding: 8px 30px;
  text-align: center;
}

.subjectBloc {
  background-color: #fff;
  border: 1px solid #0F47AB;
  border-radius: 20px;
  padding: 30px 40px;
}

.subjectBloc img {
  max-width: 100% !important;
  height: auto !important;
}

.titleBlocExam {
  width: 90%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  border-radius: 30px;
}

.subjectTitle {
  background-color: #E0EDFC;
  color: #147BFF;
  border-radius: 8px;
  width: fit-content;
  padding: 8px 30px;
  text-align: center;
}

.popinDebutExamCorps {
  margin-left: auto;
  margin-right: auto;
  width: 80%;
}

.date-selector-title {
  width: 90%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 20px;
  border-bottom: 2px solid #EDF4FC;
}

.date-selector-body {
  width: 90%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  border-radius: 30px;
  padding: 30px;
}

.date-picker-input {
  border-radius: 10px;
  padding: 4px 10px;
  background: #f1f1f1;
  border: none;
  width: 100%;
  max-width: 150px;
}

.result-bg-certificator {
  background-color: #EDF4FC;
  border-radius: 4px;
}

.result-bg-certificator .answerTextzone {
  background-color: #fff;
}

.dot-separator {
  border-bottom: 2px dashed #EDF4FC;
}

.certif-count {
  background: #fff;
  padding: 10px 20px 15px 20px;
  border-radius: 20px;
  height: fit-content;
}

.pvRow {
  border-radius: 20px;
  border: solid 2px #0b41b9;
  padding: 20px 50px;
  width: 100%;
}

.pvRow a {
  text-decoration: none;
}

.bgLightGrey {
  background-color: #EDF4FC;
  padding: 4px;
  border-radius: 8px;
}

.datas-kpis .pages--title {
  padding-bottom: 40px;
}

.datas-kpis--cells {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.pages--title + .grid-wrapper .datas-kpis--cells {
  margin-top: -40px;
}

.datas-kpis--cells-cell {
  background-color: #FFFFFF;
  border: 1px solid #E9E9E9;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-shrink: 0;
  flex-grow: 1;
  margin: 0 5px 5px 20px;
  padding: 10px 14px;
}

.datas-kpis--cells-cell:first-child {
  margin-left: 0;
}

.datas-kpis--cells-cell:last-child {
  margin-right: 0;
}

.datas-kpis--cells-cell-tooltip {
  width: 14px;
  height: 14px;
  color: #FFFFFF;
  background-color: #007E63;
  border-radius: 14px;
  cursor: pointer;
  display: inline-block;
  margin-right: 4px;
  vertical-align: 0px;
  position: relative;
}

.datas-kpis--cells-cell-tooltip span {
  width: max-content;
  font-weight: 500;
  text-transform: initial;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  border-radius: 5px;
  padding: 8px 16px;
  transition: all 0.2s ease;
  pointer-events: none;
  transform: translate3d(-45%, -10px, 0);
  box-sizing: border-box;
  position: absolute;
  display: block;
  opacity: 0;
}

.datas-kpis--cells-cell-tooltip:hover span {
  transform: translate3d(-45%, 6px, 0);
  opacity: 1;
}

.datas-kpis--cells-cell:first-child .datas-kpis--cells-cell-tooltip span {
  transform: translate3d(0, -10px, 0);
}

.datas-kpis--cells-cell:first-child .datas-kpis--cells-cell-tooltip:hover span {
  transform: translate3d(0, 6px, 0);
}

.datas-kpis--cells-cell-title {
  font-size: 10px;
  font-weight: 600;
  color: #717171;
  text-align: center;
  margin-bottom: 8px;
}

.datas-kpis--cells-cell-value {
  font-size: 32px;
  font-weight: 900;
  text-align: center;
  color: #222222;
  line-height: 32px;
}

.datas-kpis--certificator {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 30px;
}

.datas-kpis--certificator-search {
  width: 400px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.datas-kpis--certificator-search .dropdown {
  margin-right: 10px;
}

.datas-kpis--certificator-title {
  padding-bottom: 20px;
}

.datas-kpis--certificator-title h2 {
  text-align: center;
}

.datas-kpis--certificator-title span {
  color: #717171;
  text-align: center;
  display: block;
}

.datas-kpis--certifications-filters {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
}

.datas-kpis--certifications-filters-list {
  flex-grow: 1;
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.datas-kpis--certifications-filters-list-certification {
  width: 400px;
  padding-right: 20px;
}

.datas-kpis--certifications-filters-list-date {
  padding-right: 20px;
}

.datas-kpis--certifications-filters-action {
  flex-grow: 0;
  flex-shrink: 0;
  padding-left: 20px;
}

.datas-kpis--separator {
  padding: 60px 0;
}

.datas-kpis--separator hr {
  width: 100%;
  max-width: 700px;
  height: 1px;
  background-color: #E9E9E9;
  opacity: 1;
  margin: 0 auto;
}

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