@font-face {
  font-family: "Lato";
  src: url("/fonts/Lato-Regular.ttf");
}

@font-face {
  font-family: "lato";
  src: url("/fonts/Lato-Regular.ttf");
}

@font-face {
  font-family: "Lato-Bold";
  src: url("/fonts/Lato-Bold.ttf");
}

@font-face {
  font-family: "Lato-Light";
  src: url("/fonts/Lato-Light.ttf");
}

@font-face {
  font-family: "Lato-Black";
  src: url("/fonts/Lato-Black.ttf");
}

@font-face {
  font-family: "Lato Black";
  src: url("/fonts/Lato-Black.ttf");
}

@font-face {
  font-family: "Lato-SemiBold";
  src: url("/fonts/Lato-SemiBold.ttf");
}

@font-face {
  font-family: "Roboto-Bold";
  src: url("/fonts/Roboto-Bold.ttf");
}

@font-face {
  font-family: "Lato-Medium";
  src: url("/fonts/Lato-Medium.ttf");
}

@font-face {
  font-family: "Rubik";
  src: url("/fonts/Rubik-Regular.ttf");
}

@font-face {
  font-family: Rubik-Medium;
  src: url("/fonts/Rubik-Medium.ttf");
}

@font-face {
  font-family: Rubik-Light;
  src: url("/fonts/Rubik-Light.ttf");
}

:root {
  /* colors  */
  --primary-color: #fd5250;
  --primary-color-middle: #feafae;
  --primary-color-light: #feeded;
  --black: #000;
  --white: #ffffff;
  --gray: #7f7f7f;
  --middle-gray: #bfbfbf;
  --light-gray: #f2f3f5;
  --orange: #fe870e;
  --middle-orange: #fed9ae;
  --light-orange: #fef6ed;
  --green: #24ae85;
  --middle-green: #6ed8b8;
  --light-green: #f4f9f7;
  --blue: #2c85e8;
  --middle-blue: #aed3fe;
  --light-blue: #edf5fe;
  --yellow: #ffc107;
  --middle-yellow: #feeaae;
  --light-yellow: #fefaed;

  /*gradients*/

  --primary-gradient: linear-gradient(347.05deg, #fd3159 9.84%, #fd505a 91.14%);
  --secondary-gradient: linear-gradient(347.05deg,
      #ff6218 9.84%,
      #fe870e 91.14%);
  --green-gradient: linear-gradient(347.05deg, #04956a 9.84%, #24ae85 91.14%);
  --violet-gradient: linear-gradient(347.05deg, #87226e 9.84%, #b34b99 91.14%);
  --gray-gradient: linear-gradient(347.05deg, #dadada 9.84%, #f2f3f5 91.14%);
  --level-gradient: linear-gradient(to right, #fd1e1c, #fe870e, #24ae85);

  /* BOX SHADOW */

  --btn-primary-box-shadow: 0px 4px 8px rgba(253, 49, 89, 0.2);

  /* FONTS */

  --rubik-medium: Rubik-Medium;
  --rubik-regular: Rubik;
  --rubik-light: Rubik-Light;

  /* Sizes */

  --x-lage-size: 28px;
  --large-size: 24px;
  --medium-size: 20px;
  --medium-light-size: 18px;
  --light-size: 16px;
  --x-light-size: 14px;
  --xx-light-size: 12px;
}

  .container {
    display: flex;
    flex-direction: column;
    padding: 24px 52px;
  }

  /* Line height */
  .border-miniature {
    position: relative;
    width: 200px;
    height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 16px !important;
    margin-right: 16px !important;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
    border: 1px solid #f2f3f5;
    border-radius: 4px;
    overflow: visible;
    background-color: var(--white);
    cursor: pointer;
  }

/* code de base  */

/* .tool-tip-text {
  width: 100%;
  background-color: var(--gray);
  color: #fff;
  border-radius: 6px;
  padding: 5px;
  position: relative;
  z-index: 1;
  bottom: 150%;
  left: 3px;
}

.tool-tip-text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent var(--gray) transparent transparent;
} */

.link-input {
  color: #2c85e8;
  font-family: Rubik;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 125% */
  text-decoration-line: underline;
}

[data-reactroot] {
  width: 100%;
  min-height: 100%;
}

body {
  margin: 0;
  height: 100vh;
}

/* ------------------  */

.separator {
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--gray);
}

.separator::before,
.separator::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #bfbfbf;
}

.separator:not(:empty)::before {
  margin-right: 16px;
}

.separator:not(:empty)::after {
  margin-left: 16px;
}

.tool-tip {
  max-width: 348px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 8px;
  background-color: transparent;
  border-radius: 4px;
  margin-right: 4px;
  height: 32px;
  z-index: 9999 !important;
}

.tool-tip-text {
  width: 100%;
  background-color: var(--gray);
  color: #fff;
  border-radius: 6px;
  padding: 5px;
  position: relative;
  z-index: 1;
  bottom: 150%;
  left: 3px;
}

.tool-tip-text-left {
  width: 100%;
  background-color: var(--gray);
  color: #fff;
  border-radius: 6px;
  padding: 5px;
  position: relative;
  z-index: 1;
  bottom: 150%;
  left: 3px;
}

.tool-tip-text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent var(--gray) transparent transparent;
}

.tool-tip-text-left::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent var(--gray);
} 

.link-input {
  color: #2c85e8;
  font-family: Rubik;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 125% */
  text-decoration-line: underline;
}

.btn-primary {
  background: var(--primary-gradient);
  border-radius: 4px;
  color: var(--white);
  box-shadow: var(--btn-primary-box-shadow);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 12px;
}

.btn-muted {
  background-color: var(--gray);
  border-radius: 4px;
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 12px;
}

.title-listing {
  font-family: var(--rubik-medium);
  font-size: var(--x-lage-size);
  line-height: 24px;
  color: var(--black);
}

/* .border-miniature {
  position: relative;
  width: 200px;
  height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 16px !important;
  margin-right: 16px !important;
  padding-top: 8px !important;
  padding-bottom: 8px !important;
  border: 1px solid #f2f3f5;
  border-radius: 4px;
  overflow: hidden;
  background-color: var(--white);
  cursor: pointer;
} */

.btn-icon-text {
  display: flex;
  flex-direction: row;
  cursor: pointer;
  align-items: center;
  box-shadow: var(--btn-primary-box-shadow);
  background: var(--primary-gradient);
  border-radius: 4px;
  height: 44px;
  padding: 8px 16px;
  border: none;
  outline: none;
}

.btn-icon-text-muted {
  display: flex;
  flex-direction: row;
  cursor: pointer;
  align-items: center;
  background: var(--gray);
  border-radius: 4px;
  height: 40px;
  padding: 8px 16px;
  border: none;
  outline: none;
}

.icon-btn-light {
  position: relative;
  display: flex;
  width: 40px;
  height: 40px;
  padding: 7px 6px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2px;
  border-radius: 4px;
  background-color: var(--primary-color-light);
  border: none;
  outline: none;
  cursor: pointer;
}

.back-btn {
  height: 40px;
  width: 40px;
  background: var(--primary-gradient);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  outline: none;
  border: none;
}

.rounded {
  border-radius: 50% !important;
}

.note-container {
  display: flex;
  flex-direction: column;
  border: var(--light-gray) 2px solid;
  border-radius: 4px;
}

.header-title {
  width: 100%;
  font-family: var(--rubik-medium);
  font-size: 28px;
  font-weight: 500;
  color: #ffffff;
  background: transparent;
  border: none;
  transition: 3s;
  resize: none;
  cursor: pointer;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}

.status-finished {
  background-color: var(--blue);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 8px;
}

.status-inprogress {
  background-color: var(--orange);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 8px;
}

.status-completed {
  background-color: var(--blue);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 8px;
}

.status-notstarted {
  background-color: #ffe0c1;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 8px;
}

/*-------------------------- Labels --------------------------------*/

.label-planned {
  display: flex;
  height: 20px;
  padding: 4px 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  background: var(--DAY_White, #fff);
  box-shadow: -2.81px 22.81px 2.81px 0px rgba(253, 82, 80, 0.08) inset,
    2.83px -2.83px 2.83px 0px rgba(253, 82, 80, 0.16) inset,
    -2.83px 2.83px 2.83px 0px rgba(255, 255, 255, 0.16) inset;
  backdrop-filter: blur(2.8350000381469727px);
}

.level-container:hover {
  box-shadow: rgba(253, 152, 0,0.6);
}

.level-container.selected {
  box-shadow:  0px 8px 16px rgba(20, 10, 34, 0.1);
}

.level-card {
  display:flex; 
  flex-direction:column;
  width:100%;
  height:304px;
  padding:16px 10px 16px 16px;
  margin:0px 0px 0px 0px;
  border-radius:4px;
  background-color:var(--white);
  border:1px solid var(--light-gray); 
  box-sizing: border-box;
}

.btn-select {
  display:flex;
  background-color:var(--white);
  justify-content:center;
  align-self:center;
  align-items:center;
  border-radius:100px;
  height:40px;
  width:120px;
  margin:0px 0px 0px 0px;
  cursor:pointer;
  border:1px solid var(--primary-color);
  box-sizing:border-box;
}

.btn-select.selected {
  background-color: var(--primary-color);
}

.btn-select-text{
  font-family: var(--rubik-regular);
  font-size:var(--x-light-size);
  color:var(--primary-color);
  line-height:var(--light-line-height);
  margin:0px;
}

.btn-select-text.selected {
  color: var(--white);
}

.level-title {
  margin:0px;
  color:var(--black);
  font-family: var(--rubik-medium);
  font-size:var(--medium-light-size);
  line-height:var(--medium-light-line-height)
}

.level-description {
  margin:5px 0px 0px 0px;
  color:var(--gray);
  font-family: var(--rubik-regular);
  font-size:var(--x-light-size);
  line-height: var(--light-line-height);
}

.label-diffused {
  display: flex;
  height: 20px;
  padding: 4px 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  background: var(--primary-color);
  box-shadow: 2.83px -2.83px 2.83px 0px rgba(255, 255, 255, 0.16) inset,
    -2.83px 2.83px 2.83px 0px rgba(255, 255, 255, 0.16) inset;
  backdrop-filter: blur(2.8350000381469727px);
}

.label-diffused span {
  color: var(--white);
  font-family: var(--rubik-regular);
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.label-inprogress {
  display: flex;
  height: 20px;
  padding: 4px 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  background: var(--white);
  box-shadow: -2.81px 22.81px 2.81px 0px rgba(254, 135, 14, 0.08) inset,
    2.83px -2.83px 2.83px 0px rgba(254, 135, 14, 0.16) inset,
    -2.83px 2.83px 2.83px 0px rgba(255, 255, 255, 0.16) inset;
  backdrop-filter: blur(2.8350000381469727px);
}

.label-inprogress span {
  color: var(--orange);
  font-family: var(--rubik-regular);
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.label-done {
  display: flex;
  height: 20px;
  padding: 4px 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  background: var(--white);
  box-shadow: -2.81px 22.81px 2.81px 0px rgba(44, 133, 232, 0.08) inset,
    2.83px -2.83px 2.83px 0px rgba(44, 133, 232, 0.16) inset,
    -2.83px 2.83px 2.83px 0px rgba(255, 255, 255, 0.16) inset;
  backdrop-filter: blur(2.8350000381469727px);
}

.label-done span {
  color: var(--blue);
  font-family: var(--rubik-regular);
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.label-toreview {
  display: flex;
  height: 24px;
  padding: 4px 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  background: var(--blue);
  backdrop-filter: blur(2.8350000381469727px);
}

.label-toreview span {
  color: var(--white);
  font-family: var(--rubik-regular);
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.label-reviewed {
  display: flex;
  height: 20px;
  padding: 4px 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  background: var(--green);
  box-shadow: 2.83px -2.83px 2.83px 0px rgba(255, 255, 255, 0.16) inset,
    -2.83px 2.83px 2.83px 0px rgba(255, 255, 255, 0.16) inset;
  backdrop-filter: blur(2.8350000381469727px);
}

.label-reviewed span {
  color: var(--white);
  font-family: var(--rubik-regular);
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.label-passed {
  display: flex;
  height: 20px;
  padding: 4px 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  background: var(--gray);
  box-shadow: 2.83px -2.83px 2.83px 0px rgba(255, 255, 255, 0.16) inset,
    -2.83px 2.83px 2.83px 0px rgba(255, 255, 255, 0.16) inset;
  backdrop-filter: blur(2.8350000381469727px);
}

.label-passed span {
  color: var(--white);
  font-family: var(--rubik-regular);
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* --------------------------- MENU ---------------------------------*/

.menu-container {
  display: flex;
  flex-direction: column;
  height: 100vh;
  position: fixed;
  z-index: 134;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.12);
  background-color: #FFFFFF;
  justify-content: space-between;
  top: 0;
}

.menu-container.expanded {
  width: 200px;
}

.menu-container.collapsed {
  width: 80px;
}

.routes-container {
  display: flex;
  flex-direction: column;
  max-height: 95%;
}

.cgu-text {
  font-size: var(--xx-light-size);
  line-height: var(--xx-light-line-height);
  cursor: pointer;
  padding: 0px 19px;
  color: var(--middle-gray);
}

.txt-center{
  text-align: center;
}

.menu-item-container {
  display:flex;
  flex-direction:column; 
}

.menu-item-container.expanded {
  width: 200px;
}

.menu-item-container.collapsed {
  width: 100%;
}


.menu-item {
  display:flex; 
  align-items:center; 
  justify-content:space-between;
  cursor:pointer;
  padding:12px 16px;
}

.item-icon {
  margin:11px 0 11px 0;
  width:25px; 
  height:25px;
}

.sub-menu {
  box-shadow:0px 8px 16px rgba(20, 10, 34, 0.16);
  border-radius:4px; 
  display:flex; 
  position:absolute; 
  top:10px;
  left:81px; 
  background-color:#FFFFFF;
}

.level-container {
  display:flex;
  flex-direction:row; 
  align-items:center;
  /* boxShadow:boxShadow,  */
  border-radius:4px; 
  width: 20%;
  padding-right: 16px;
}

.level-container:last-child {
  display:flex;
  flex-direction:row; 
  align-items:center;
  /* boxShadow:boxShadow,  */
  border-radius:4px; 
  width: 18%;
  /* padding-left: 16px; */
  padding-right: 0;
}

.level-container:hover {
  box-shadow: rgba(253, 152, 0,0.6);
}

.level-container.selected {
  box-shadow:  0px 8px 16px rgba(20, 10, 34, 0.1);
}

.level-card {
  display:flex; 
  flex-direction:column;
  width:100%;
  height: 236px;
  max-height:236px;
  padding:16px 10px 16px 16px;
  margin:0px 0px 0px 0px;
  border-radius:4px;
  background-color:var(--white);
  border:1px solid var(--light-gray); 
  box-sizing: border-box;
}

.btn-select {
  display:flex;
  background-color:var(--white);
  justify-content:center;
  align-self:center;
  align-items:center;
  border-radius:100px;
  height:40px;
  width:120px;
  margin:0px 0px 0px 0px;
  cursor:pointer;
  border:1px solid var(--primary-color);
  box-sizing:border-box;
}

.btn-select.selected {
  background-color: var(--primary-color);
}

.btn-select-text{
  font-family: var(--rubik-regular);
  font-size:var(--x-light-size);
  color:var(--primary-color);
  line-height:var(--light-line-height);
  margin:0px;
}

.btn-select-text.selected {
  color: var(--white);
}

.level-title {
  margin:0px;
  color:var(--black);
  font-family: var(--rubik-medium);
  font-size:var(--medium-light-size);
  line-height:var(--medium-light-line-height)
}

.level-description {
  margin:5px 0px 0px 0px;
  color:var(--gray);
  font-family: var(--rubik-regular);
  font-size:var(--x-light-size);
  line-height: var(--light-line-height);
}


/* ------------------------ SPACINGS -------------------------------*/

/*--------------------- Margins------------------------ */

.m-1 {
  margin: 1px;
}

.m-2 {
  margin: 2px;
}

.m-3 {
  margin: 3px;
}

.m-4 {
  margin: 4px;
}

.m-5 {
  margin: 5px;
}

.m-6 {
  margin: 6px;
}

.m-8 {
  margin: 8px;
}

.m-10 {
  margin: 10px;
}

.m-12 {
  margin: 12px;
}

.m-14 {
  margin: 14px;
}

.m-16 {
  margin: 16px;
}

.m-18 {
  margin: 18px;
}

/* Left */
.ml-1 {
  margin-left: 1px;
}

.ml-2 {
  margin-left: 2px;
}

.ml-3 {
  margin-left: 3px;
}

.ml-4 {
  margin-left: 4px;
}

.ml-5 {
  margin-left: 5px;
}

.ml-6 {
  margin-left: 6px;
}

.ml-7 {
  margin-left: 7px;
}

.ml-8 {
  margin-left: 8px;
}

.ml-9 {
  margin-left: 9px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-12 {
  margin-left: 12px;
}

.ml-14 {
  margin-left: 14px;
}

.ml-16 {
  margin-left: 16px;
}

.ml-18 {
  margin-left: 18px;
}

/* Right */

.mr-1 {
  margin-right: 1px;
}

.mr-2 {
  margin-right: 2px;
}

.mr-3 {
  margin-right: 3px;
}

.mr-4 {
  margin-right: 4px;
}

.mr-5 {
  margin-right: 5px;
}

.mr-6 {
  margin-right: 6px;
}

.mr-7 {
  margin-right: 7px;
}

.mr-8 {
  margin-right: 8px;
}

.mr-9 {
  margin-right: 9px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-12 {
  margin-right: 12px;
}

.mr-14 {
  margin-right: 14px;
}

.mr-16 {
  margin-right: 16px;
}

.mr-18 {
  margin-right: 18px;
}

/* Top */

.mt-1 {
  margin-top: 1px;
}

.mt-2 {
  margin-top: 2px;
}

.mt-3 {
  margin-top: 3px;
}

.mt-4 {
  margin-top: 4px;
}

.mt-5 {
  margin-top: 5px;
}

.mt-6 {
  margin-top: 6px;
}

.mt-7 {
  margin-top: 7px;
}

.mt-8 {
  margin-top: 8px;
}

.mt-9 {
  margin-top: 9px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-12 {
  margin-top: 12px;
}

.mt-14 {
  margin-top: 14px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-18 {
  margin-top: 18px;
}

/* Bottom */

.mb-1 {
  margin-bottom: 1px;
}

.mb-2 {
  margin-bottom: 2px;
}

.mb-3 {
  margin-bottom: 3px;
}

.mb-4 {
  margin-bottom: 4px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-6 {
  margin-bottom: 6px;
}

.mb-7 {
  margin-bottom: 7px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-9 {
  margin-bottom: 9px;
}

.mb-10 {
  margin-bottom: 10px;
}
.mb-12 {
  margin-bottom: 12px;
}

.mb-14 {
  margin-bottom: 14px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-18 {
  margin-bottom: 18px;
}

/*------------------------- Paddings----------------------- */

.p-1 {
  padding: 1px;
}

.p-2 {
  padding: 2px;
}

.p-3 {
  padding: 3px;
}

.p-4 {
  padding: 4px;
}

.p-6 {
  padding: 6px;
}

.p-8 {
  padding: 8px;
}

.p-10 {
  padding: 10px;
}

.p-12 {
  padding: 12px;
}

.p-14 {
  padding: 14px;
}

.p-16 {
  padding: 16px;
}

.p-18 {
  padding: 18px;
}

/* Left */

.pl-1 {
  padding-left: 1px;
}

.pl-2 {
  padding-left: 2px;
}

.pl-3 {
  padding-left: 3px;
}

.pl-4 {
  padding-left: 4px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-6 {
  padding-left: 6px;
}

.pl-7 {
  padding-left: 7px;
}

.pl-8 {
  padding-left: 8px;
}

.pl-9 {
  padding-left: 9px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-12 {
  padding-left: 12px;
}

.pl-14 {
  padding-left: 14px;
}

.pl-16 {
  padding-left: 16px;
}

.pl-18 {
  padding-left: 18px;
}

/* Right */

.pr-1 {
  padding-right: 1px;
}

.pr-2 {
  padding-right: 2px;
}

.pr-3 {
  padding-right: 3px;
}

.pr-4 {
  padding-right: 4px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-6 {
  padding-right: 6px;
}

.pr-7 {
  padding-right: 7px;
}

.pr-8 {
  padding-right: 8px;
}

.pr-9 {
  padding-right: 9px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-12 {
  padding-right: 12px;
}

.pr-14 {
  padding-right: 14px;
}

.pr-16 {
  padding-right: 16px;
}

.pr-18 {
  padding-right: 18px;
}

/* Top */

.pt-1 {
  padding-top: 1px;
}

.pt-2 {
  padding-top: 2px;
}

.pt-3 {
  padding-top: 3px;
}

.pt-4 {
  padding-top: 4px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-6 {
  padding-top: 6px;
}

.pt-7 {
  padding-top: 7px;
}

.pt-8 {
  padding-top: 8px;
}

.pt-9 {
  padding-top: 9px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-12 {
  padding-top: 12px;
}

.pt-14 {
  padding-top: 14px;
}

.pt-16 {
  padding-top: 16px;
}

.pt-18 {
  padding-top: 18px;
}

/* Bottom */

.pb-1 {
  padding-bottom: 1px;
}

.pb-2 {
  padding-bottom: 2px;
}

.pb-3 {
  padding-bottom: 3px;
}

.pb-4 {
  padding-bottom: 4px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-6 {
  padding-bottom: 6px;
}

.pb-7 {
  padding-bottom: 7px;
}

.pb-8 {
  padding-bottom: 8px;
}

.pb-9 {
  padding-bottom: 9px;
}

.pb-10 {
  padding-bottom: 10px;
}
.pb-12 {
  padding-bottom: 12px;
}

.pb-14 {
  padding-bottom: 14px;
}

.pb-16 {
  padding-bottom: 16px;
}

.pb-18 {
  padding-bottom: 18px;
}

/*-----------------------------------------------------------------*/
  /*-----------------------------------------------------------------*/

  /*--------------------- NOTIFICATIONS --------------------*/

  .notifications-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center; 
    margin-bottom:50px;
  }

  .notifications-body .title-nodes {
    font-family:var(--rubik-medium); 
    font-size:var(--medium-size);
    line-height:23px;
    color:var(--black);
  }

  .notification-card {
    display:flex; 
    min-height:80px; 
    background-color: var(--white);
    border:1px solid var(--light-gray); 
    border-radius:4px; 
    align-items:center;
    justify-content:space-between;
    padding:12px 33px 12px 16px;
  }

  .notification-card.clickable {
    cursor: pointer;
  }

  .avatar-container {
    position: relative
  }

  .avatar-container .avatar {
    width:56px; 
    height: 56px; 
    border-radius: 50%; 
  }

  .avatar-container .icon {
    right:0px;
    bottom:0;
    position:absolute;
    display:flex; 
    align-items:center;
    justify-content:center; 
    width:24px;
    height:24px;
  }

 .dates-container {
    display: flex; 
    flex-direction: row;
    align-items:center;
  }

  .dates-container .date-time {
    margin:0;
    padding:0; 
    color:#919191;
    font-family:var(--rubik-regular);
    font-size:12px;
    line-height:15px; 
    margin-right:19px;
  }

  .dates-container .options-icon {
    cursor: pointer;
    height: 21px; 
    width: 5px; 
    color: #B4B4B4; 
    font-size: 13px; 
    line-height: 21px; 
    text-align: right; 
    margin-top: 3px; 
  }

  .alt-msg { 
    font-size: var(--light-size);
    line-height:var(--large-line-height);
    font-family:var(--rubik-light);
    color:var(--gray);
  }
.btn-primary {
  background: var(--primary-gradient);
  border-radius: 4px;
  color: var(--white);
  box-shadow: var(--btn-primary-box-shadow);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 12px;
}

.btn-muted {
  background-color: var(--gray);
  border-radius: 4px;
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 12px;
}

.title-listing {
  font-family: var(--rubik-medium);
  font-size: var(--x-lage-size);
  line-height: var(--x-lage-line-height);
  color: var(--black);
}

/* .border-miniature {
  position: relative;
  width: 200px;
  height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 16px !important;
  margin-right: 16px !important;
  padding-top: 8px !important;
  padding-bottom: 8px !important;
  border: 1px solid #f2f3f5;
  border-radius: 4px;
  overflow: hidden;
  background-color: var(--white);
} */

.btn-icon-text {
  display: flex;
  flex-direction: row;
  cursor: pointer;
  align-items: center;
  box-shadow: var(--btn-primary-box-shadow);
  background: var(--primary-gradient);
  border-radius: 4px;
  height: 40px;
  padding: 8px 16px;
  border: none;
  outline: none;
}

.btn-icon-text-muted {
  display: flex;
  flex-direction: row;
  cursor: pointer;
  align-items: center;
  background: var(--gray);
  border-radius: 4px;
  height: 40px;
  padding: 8px 16px;
  border: none;
  outline: none;
}

.back-btn {
  height: 40px;
  width: 40px;
  background: var(--primary-gradient);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  outline: none;
  border: none;
}

.rounded {
  border-radius: 50% !important;
}

.note-container {
  display: flex;
  flex-direction: column;
  border: var(--light-gray) 2px solid;
  border-radius: 4px;
}

.header-title {
  width: 100%;
  font-family: var(--rubik-medium);
  font-size: 28px;
  font-weight: 500;
  color: #ffffff;
  background: transparent;
  border: none;
  transition: 3s;
  resize: none;
  cursor: pointer;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}

.status-finished {
  background-color: var(--blue);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 8px;
}

.status-inprogress {
  background-color: var(--orange);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 8px;
}

.status-completed {
  background-color: var(--blue);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 8px;
}

.status-notstarted {
  background-color: #ffe0c1;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 8px;
}

/*-------------------------- Labels --------------------------------*/

.label-planned {
  display: flex;
  height: 20px;
  padding: 4px 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  background: var(--DAY_White, #fff);
  box-shadow: -2.81px 22.81px 2.81px 0px rgba(253, 82, 80, 0.08) inset,
    2.83px -2.83px 2.83px 0px rgba(253, 82, 80, 0.16) inset,
    -2.83px 2.83px 2.83px 0px rgba(255, 255, 255, 0.16) inset;
  backdrop-filter: blur(2.8350000381469727px);
}

.label-planned span {
  color: var(--white);
  font-family: var(--rubik-regular);
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.label-diffused {
  display: flex;
  height: 20px;
  padding: 4px 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  background: var(--primary-color);
  box-shadow: 2.83px -2.83px 2.83px 0px rgba(255, 255, 255, 0.16) inset,
    -2.83px 2.83px 2.83px 0px rgba(255, 255, 255, 0.16) inset;
  backdrop-filter: blur(2.8350000381469727px);
}

.label-diffused span {
  color: var(--white);
  font-family: var(--rubik-regular);
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.label-inprogress {
  display: flex;
  height: 20px;
  padding: 4px 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  background: var(--white);
  box-shadow: -2.81px 22.81px 2.81px 0px rgba(254, 135, 14, 0.08) inset,
    2.83px -2.83px 2.83px 0px rgba(254, 135, 14, 0.16) inset,
    -2.83px 2.83px 2.83px 0px rgba(255, 255, 255, 0.16) inset;
  backdrop-filter: blur(2.8350000381469727px);
}

.label-inprogress span {
  color: var(--orange);
  font-family: var(--rubik-regular);
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.label-done {
  display: flex;
  height: 20px;
  padding: 4px 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  background: var(--white);
  box-shadow: -2.81px 22.81px 2.81px 0px rgba(44, 133, 232, 0.08) inset,
    2.83px -2.83px 2.83px 0px rgba(44, 133, 232, 0.16) inset,
    -2.83px 2.83px 2.83px 0px rgba(255, 255, 255, 0.16) inset;
  backdrop-filter: blur(2.8350000381469727px);
}

.label-done span {
  color: var(--blue);
  font-family: var(--rubik-regular);
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.label-toreview {
  display: flex;
  height: 24px;
  padding: 4px 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  background: var(--blue);
  backdrop-filter: blur(2.8350000381469727px);
}

.label-toreview span {
  color: var(--white);
  font-family: var(--rubik-regular);
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.label-reviewed {
  display: flex;
  height: 20px;
  padding: 4px 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  background: var(--green);
  box-shadow: 2.83px -2.83px 2.83px 0px rgba(255, 255, 255, 0.16) inset,
    -2.83px 2.83px 2.83px 0px rgba(255, 255, 255, 0.16) inset;
  backdrop-filter: blur(2.8350000381469727px);
}

.label-reviewed span {
  color: var(--white);
  font-family: var(--rubik-regular);
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.label-passed {
  display: flex;
  height: 20px;
  padding: 4px 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  background: var(--gray);
  box-shadow: 2.83px -2.83px 2.83px 0px rgba(255, 255, 255, 0.16) inset,
    -2.83px 2.83px 2.83px 0px rgba(255, 255, 255, 0.16) inset;
  backdrop-filter: blur(2.8350000381469727px);
}

.label-passed span {
  color: var(--white);
  font-family: var(--rubik-regular);
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* ------------------------ SPACINGS -------------------------------*/

/*--------------------- Margins------------------------ */

.lds-loader {
  background: transparent;
  display: inline-block;
  position: relative;
  width: 12px;
  height: 12px;
  margin-bottom: 8px;
}
.lds-loader div {
  transform-origin: 10.8px 10.8px;
  animation: lds-loader 1.2s linear infinite;
}
.lds-loader div:after {
  content: " ";
  display: block;
  position: absolute;
  left: 9.99px;
  width: 1.89px;
  height: 5.67px;
  border-radius: 20%;
  background: linear-gradient(347.05deg, rgb(253, 49, 89) 9.84%, rgb(253, 80, 90) 91.14%);
}
.lds-loader div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}
.lds-loader div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}
.lds-loader div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}
.lds-loader div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}
.lds-loader div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}
.lds-loader div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}
.lds-loader div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}
.lds-loader div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}
.lds-loader div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}
.lds-loader div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}
.lds-loader div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}
.lds-loader div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}
@keyframes lds-loader {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.lds-loader-grey {
  background: transparent;
  display: inline-block;
  position: relative;
  width: 90px; /* Increased from 30px to 90px */
  height: 90px; /* Increased from 30px to 90px */
  margin-bottom: 8px;
}
.lds-loader-grey div {
  transform-origin: 32.4px 32.4px; /* Adjusted from 10.8px to 32.4px */
  animation: lds-loader-grey 1.2s linear infinite;
}
.lds-loader-grey div:after {
  content: " ";
  display: block;
  position: absolute;
  left: 29.97px; /* Adjusted from 9.99px to 29.97px */
  width: 5.67px; /* Adjusted from 1.89px to 5.67px */
  height: 17.01px; /* Adjusted from 5.67px to 17.01px */
  border-radius: 20%;
  background: linear-gradient(347.05deg, rgba(127, 127, 127, 1) 9.84%, rgba(191, 191, 191, 1) 91.14%);
}
.lds-loader-grey div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}
.lds-loader-grey div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}
.lds-loader-grey div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}
.lds-loader-grey div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}
.lds-loader-grey div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}
.lds-loader-grey div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}
.lds-loader-grey div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}
.lds-loader-grey div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}
.lds-loader-grey div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}
.lds-loader-grey div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}
.lds-loader-grey div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}
.lds-loader-grey div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}
@keyframes lds-loader-grey {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}



 /*-----------------------------------------------------------------*/

  /*--------------------- NOTIFICATIONS --------------------*/

  .notifications-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
    margin-bottom:50px;
  }

  .notifications-body .title-nodes {
    font-family:var(--rubik-medium);
    font-size:var(--medium-size);
    line-height:23px;
    color:var(--black);
  }

  .notification-card {
    display:flex;
    min-height:80px;
    background-color: var(--white);
    border:1px solid var(--light-gray);
    border-radius:4px;
    align-items:center;
    justify-content:space-between;
    padding:12px 33px 12px 16px;
  }

  .notification-card.clickable {
    cursor: pointer;
  }

  .avatar-container {
    position: relative
  }

  .avatar-container .avatar {
    width:56px;
    height: 56px;
    border-radius: 50%;
  }

  .avatar-container .icon {
    right:0px;
    bottom:0;
    position:absolute;
    display:flex;
    align-items:center;
    justify-content:center;
    width:24px;
    height:24px;
  }

 .dates-container {
    display: flex;
    flex-direction: row;
    align-items:center;
  }

  .dates-container .date-time {
    margin:0;
    padding:0;
    color:#919191;
    font-family:var(--rubik-regular);
    font-size:12px;
    line-height:15px;
    margin-right:19px;
  }

  .dates-container .options-icon {
    cursor: pointer;
    height: 21px;
    width: 5px;
    color: #B4B4B4;
    font-size: 13px;
    line-height: 21px;
    text-align: right;
    margin-top: 3px;
  }

  .alt-msg {
    font-size: var(--light-size);
    line-height:var(--large-line-height);
    font-family:var(--rubik-light);
    color:var(--gray);
  }

  .see-more {
    display: flex;
    width: 135px !important;
    height: 24px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 20px;
    background: var(--primary-color);
    box-shadow: 2.83px -2.83px 2.83px 0px rgba(255, 255, 255, 0.16) inset, -2.83px 2.83px 2.83px 0px rgba(255, 255, 255, 0.16) inset;
    backdrop-filter: blur(2.8350000381469727px);
    cursor: pointer;
  }

  .see-more span {
    font-family: var(--rubik-regular);
    font-size: var(--x-light-size);
    line-height: var(--light-line-height);
    color: var(--white);
    font-weight: lighter;
  }

  .level-evel-text {
    font-family: var(--rubik-regular);
    font-weight: 500;
    font-size: var(--light-size);
    line-height: var(--light-line-height);
    color: var(--primary-color);
  }
  .level-input-group {
    display: flex;
    flex-direction: column;
    padding-top: 8px;
  }

  .level-input-group .title {
    font-family: var(--rubik-medium);
    font-size: var(--medium-light-size);
    line-height: var(--x-lage-line-height);
    color: var(--primary-color);
    font-weight: 500;
  }

  .dropdown-container {
    display: flex;
    flex-direction: column;
    position: absolute;
    z-index: 99;
    background-color: var(--white);
    box-shadow: 0px 8px 16px rgba(20, 10, 34, 0.16);
    margin: 21px -267px 10px 0px;
    min-width: 351px;
    padding: 8px 8px;
    border-radius: 4px;
  }

  .dropdown-container2 {
    display: flex;
    flex-direction: column;
    position: absolute;
    z-index: 99;
    background-color: var(--white);
    box-shadow: 0px 8px 16px rgba(20, 10, 34, 0.16);
    margin: 120px 0px 10px 120px;
    min-width: 351px;
    padding: 8px 8px;
    border-radius: 4px
  }

  .dropdown-item {
    width: 100%;
    min-width: 351px !important;
    display: flex;
    flex-direction: row;
    align-items: center;
    min-height: 48px;
    padding: 4px 8px;
    cursor: pointer;
    background-color: var(--white);
    border-radius: 4px;
  }

  .dropdown-item2 {
    width: 100%;
    max-width: 138px !important;
    display: flex;
    flex-direction: row;
    align-items: center;
    min-height: 48px;
    padding: 4px 8px;
    cursor: pointer;
    background-color: var(--white);
    border-radius: 4px;
  }

  .dropdown-item:hover {
    background-color: var(--light-gray);
  }
  .dropdown-item2:hover {
    background-color: var(--light-gray);
  }

  .searchbar-input::placeholder {
    font-style: italic;
  }


/*-----------------------------------------------------------------*/

.todo-cell-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 42px;
  width: 100%;
  border-bottom: 1px solid var(--light-gray);
  padding: 10px 8px;
}

.todo-cell-container .left {
  display: flex;
  flex-direction: row;
  /* justify-content: space-between; */
  align-items: center;
  height: 100%;
}

.todo-cell-container .right {
  display: flex;
  flex-direction: row;
  /* justify-content: space-between; */
  align-items: center;
  height: 100%;
}

.todo-cell-container .right .badge {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.todo-cell-container .right .badge.muted {
  background-color: var(--gray);
}
  .subtitle-creation {
    color: var(--primary-color);
    font-family: var(--rubik-medium);
    font-size: var(--medium-size);
    font-style: normal;
    font-weight: 500;
    line-height: var(--large-line-height);
  }

  .text-creation {
    color: var(--gray);
    font-family: var(--rubik-regular);
    font-size: var(--x-light-size);
    font-style: normal;
    font-weight: 400;
    margin: 0;
    /* line-height: var(--light-line-height); */
  }

  .text-creation .underlined {
    text-decoration-line: underline;
    line-height: 16px;
    cursor: pointer;
  }

  .no_competence {
    border-radius: 4px;
    background-color: rgba(254, 135, 14, 0.64);
  }

  .seperator-dropdown {
    width:100%;
    align-self:center;
    display:flex; 
    height:1.5px; 
    background-color:#F2F3F5; 
    border-radius:1px; 
    margin:0px;
    margin-top:8px; 
    margin-bottom:8px;
  }

  .options-container {
    position: relative;
    display:flex; 
    flex-direction:column;
    width:100%;
    padding-right:16px;
    border-radius:4px;
    padding-left:20px;
    height: 40px;
    align-items: center;
    justify-content: center;
    overflow: visible;
  }

  .option-container {
    width:100%;
    display:flex;
    flex-direction:row; 
    align-items:center; 
    cursor:pointer;
    height: 100% !important;
  }

  .options-container:hover {
    background-color: var(--light-gray);
  }

  .option-icon-container {
    margin-right:8px; 
    color:#7F7F7F; 
    width:24px;
    height:24px;
    display:flex;
    justify-content:center;
    align-items:center;
  }

  .option-title {
    padding:0;
    margin:0;
    color: var(--black);
    font-family:var(--rubik-regular);
    font-weight:400;
    font-size: var(--light-size); 
    line-height:var(--medium-size);
  }

  .option-title.muted {
    color: var(--middle-gray);
    cursor: default;
  }

  .options-btn {
    height: 24px;
    /* width: 72px; */
    max-width: fit-content;
    border-radius: 50px;
    background: var(--primary-gradient);
    display: flex;
    flex-direction: row;
    align-items: center;
    /* justify-content: space-between; */
    padding: 4px 3px 4px 8px;
    cursor: pointer;
  }

  .options-btn .title{
    font-family: var(--rubik-regular);
    color: var(--white);
    font-size: var(--xx-light-size);
    font-weight: 400;
    width: 50px;
  }

  .project-description-title-section{
    font-family: Rubik-Medium;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #000000;
}

.scroll-container {
  overflow-y: scroll;
}

.timeline {
  width: auto !important;
  max-width: 600px;
}

.horizontal-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  height: fit-content;
}
