/* Webfont: Lato-Regular */
/* montserrat-regular - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/montserrat-v15-latin-regular.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/montserrat-v15-latin-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/montserrat-v15-latin-regular.woff2") format("woff2"), url("../fonts/montserrat-v15-latin-regular.woff") format("woff"), url("../fonts/montserrat-v15-latin-regular.ttf") format("truetype"), url("../fonts/montserrat-v15-latin-regular.svg#Montserrat") format("svg");
  /* Legacy iOS */
}

html {
  font-family: Montserrat;
  font-size: 14px;
}

body {
  width: 100%;
  margin: auto;
}

button,
input[type="submit"] {
  cursor: pointer;
}

header {
  height: 40px;
  width: 100%;
  border: 1px solid silver;
  display: flex;
  justify-content: center;
}

header li {
  display: inline;
  padding-left: 20px;
}

header ul {
  /* width: 80%; */
  margin: auto;
}

header button {
  margin-right: 30px;
}

button {
  width: 80px;
  color: white;
  border: none;
  padding: 5px;
  border-radius: 3px;
  margin: 5px;
  background-color: #444444;
}

section {
  margin: auto;
}

tr {
  vertical-align: top;
}

.buttModif {
  background-color: #444444;
}

.buttCreate {
  width: 300px;
}

.buttSupp {
  background-color: #444444;
}

.buttCancel {
  background-color: silver;
}

li {
  cursor: pointer;
}

.BodyInput {
  width: 10px;
}

.TitleInput {
  width: 800px;
}

.ComplexityInput {
  width: 30px;
}

#MainBody {
  display: flex;
  justify-content: space-between;
}

#MentorConnectForm {
  margin: auto;
  width: 400px;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#MentorConnectForm input {
  width: 300px;
  margin: 10px;
  padding: 5px;
}

#MentorConnectForm h1 {
  color: #CC3300;
}

#MainBodyStudent #StudentList li,
#MainBodyStudent #ProjectList li {
  font-size: 0.9rem;
  border: 1px solid silver;
  margin: 5px;
  padding: 3px;
  border-radius: 5px;
  width: 500px;
  list-style: none;
}

#MainBodyStudent #ProjectList li {
  width: 800px;
}

#MainBodyStudent article {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  border: 1px solid silver;
  margin: 10px;
  background-color: #EEEEEE;
}

#MainBodyStudent article input {
  width: 200px;
}

#MainBodyStudent article input[type="checkbox"] {
  width: 20px;
}

#MainBodyStudent article div {
  margin: 10px 0px 10px 0px;
}

#MainBodyStudent article label {
  width: 200px;
  display: inline-block;
  text-align: right;
  padding: 0px 10px 0px 10px;
  font-size: 0.8rem;
}

#MainBodyStudent article .buttLine {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 100%;
}

#StudentDetail {
  font-size: 0.8rem;
  margin: 30px;
  display: flex;
  flex-direction: column;
  margin-left: 100px;
}

#StudentDetail h1,
#StudentDetail h2 {
  text-align: center;
}

#StudentDetail th,
#StudentDetail td {
  text-align: center;
}

#StudentDetail input[type="number"] {
  width: 40px;
  text-align: right;
}

#StudentDetail input[type="text"] {
  text-align: left;
  width: 400px;
}

#StudentDetail #TaskProject,
#StudentDetail #TaskTable {
  border: 1px solid silver;
  border-radius: 10px;
  padding: 7px;
  margin: 20px;
}

#StudentDetail #TaskProject .ComplexityCompletedValue,
#StudentDetail #TaskTable .ComplexityCompletedValue {
  width: 30px;
  text-align: center;
  border: none;
  margin-top: 10px;
}

#StudentDetail #TaskProject td,
#StudentDetail #TaskTable td {
  padding: 0px;
  margin: 0px;
  padding-top: 10px;
}

#StudentDetail #TaskProject .TaskTitle,
#StudentDetail #TaskTable .TaskTitle {
  text-align: left;
  width: 300px;
}

#StudentDetail #TaskProject input[type="text"],
#StudentDetail #TaskTable input[type="text"] {
  width: 300px;
}

#StudentDetail #DivButton {
  text-align: center;
}

#StudentDetail input[type=range] {
  -webkit-appearance: none;
  margin-right: 20px;
  padding-right: 20px;
  width: 90%;
}

#StudentDetail input[type=range]:focus {
  outline: none;
}

#StudentDetail input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 4px;
  cursor: pointer;
  animate: 0.2s;
  background: #03a9f4;
  border-radius: 25px;
}

#StudentDetail input[type=range]::-webkit-slider-thumb {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 4px 0 black;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -8px;
}

#StudentDetail input[type=range]:focus::-webkit-slider-runnable-track {
  background: #03a9f4;
}

#StudentDetail .range-wrap {
  width: 500px;
  position: relative;
}

#StudentDetail .range-value {
  position: absolute;
  top: -50%;
}

#StudentDetail .range-value span {
  width: 30px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  background: #03a9f4;
  color: #fff;
  font-size: 12px;
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  border-radius: 6px;
}

#StudentDetail .range-value span:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 10px solid #03a9f4;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  margin-top: -1px;
}

#ContenairChart {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  background-color: silver;
}

#ContenairChart div {
  width: 600px;
  padding: 20px;
  margin: 20px;
  border: 1px solid silver;
  background-color: white;
}

#ContenairChart div h1 {
  font-size: 1rem;
  text-align: center;
}

#BlockPaths div {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

#BlockPaths div button {
  width: 200px;
}

#BlockProjects .Title {
  Width: 100px;
}

#BlockProjects .Body {
  width: 400px;
}

#BlockProjects .Expertise {
  width: 50px;
}

#BlockProjects #DivButton {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin-top: 50px;
}

#BlockProjects #DivButton button {
  width: 250px;
}

#ProjectList {
  margin-left: 50px;
}

#BlockTasks {
  width: 80%;
  margin: auto;
}

#BlockTasks span {
  padding-left: 20px;
}

#BlockTasks h1 {
  font-size: 1rem;
}

#BlockTasks .TitleInput {
  width: 400px;
}

#BlockTasks .BodyInputDiv {
  display: none;
}

#BlockTasks .TitleInput {
  width: 560px;
}

#BlockTasks .BodyInput {
  width: 300px;
  height: 100px;
}

#BlockTasks .ComplexityInput {
  width: 40px;
}

#BlockTasks article {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin-bottom: 20px;
}

#BlockTasks label {
  vertical-align: top;
  padding-left: 10px;
  padding-right: 10px;
}

#BlockTasks button {
  margin: 0;
  margin-left: 10px;
  margin-right: 10px;
}

#BlockTasks #DivButton {
  width: 100%;
  display: flex;
  justify-content: space-around;
}

#BlockTasks #DivButton button {
  width: 150px;
}

#TitlePlanningTable {
  text-align: center;
  color: #444444;
  font-size: 1rem;
}

#TableProjects {
  font-size: 0.9rem;
  margin: auto;
}

#TableProjects td,
#TableProjects th {
  border-bottom: 1px solid silver;
  border-right: 1px solid silver;
  width: 100px;
  text-align: center;
  white-space: nowrap;
  padding: 3px;
}

#TableProjects .IsCurrent {
  background-color: #FFCBC1;
}

#ContenairChart button {
  width: 280px;
}

#MainBodyPresentation section label,
#MainEditStudent section label,
#MainBodySession section label {
  min-width: 70px;
  display: inline-block;
  text-align: right;
  font-size: 0.9rem;
}

#MainBodyPresentation #ProjectId,
#MainEditStudent #ProjectId,
#MainBodySession #ProjectId {
  max-width: 350px;
}

#MainBodyPresentation textarea,
#MainEditStudent textarea,
#MainBodySession textarea {
  padding: 5px;
}

#MainBodyPresentation #RadioStatus label,
#MainEditStudent #RadioStatus label,
#MainBodySession #RadioStatus label {
  min-width: unset;
  display: inline-block;
  padding-right: 54px;
}

#MainBodyPresentation #CommandBar,
#MainEditStudent #CommandBar,
#MainBodySession #CommandBar {
  display: flex;
  justify-content: center;
  width: unset;
}

#MainBodyPresentation #PresentationForm,
#MainBodyPresentation #SessionForm,
#MainEditStudent #PresentationForm,
#MainEditStudent #SessionForm,
#MainBodySession #PresentationForm,
#MainBodySession #SessionForm {
  width: 1500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  background-color: silver;
  /* justify-content:space-between; */
}

#MainBodyPresentation #PresentationForm label,
#MainBodyPresentation #SessionForm label,
#MainEditStudent #PresentationForm label,
#MainEditStudent #SessionForm label,
#MainBodySession #PresentationForm label,
#MainBodySession #SessionForm label {
  margin: 5px;
  vertical-align: top;
}

#MainBodyPresentation #PresentationForm section,
#MainBodyPresentation #SessionForm section,
#MainEditStudent #PresentationForm section,
#MainEditStudent #SessionForm section,
#MainBodySession #PresentationForm section,
#MainBodySession #SessionForm section {
  width: 100%;
  border: 1px solid silver;
  padding: 10px;
}

#MainBodyPresentation #PresentationForm #Report,
#MainBodyPresentation #SessionForm #Report,
#MainEditStudent #PresentationForm #Report,
#MainEditStudent #SessionForm #Report,
#MainBodySession #PresentationForm #Report,
#MainBodySession #SessionForm #Report {
  width: 1000px;
  height: 600px;
}

#MainBodyPresentation #PresentationForm #Link,
#MainBodyPresentation #SessionForm #Link,
#MainEditStudent #PresentationForm #Link,
#MainEditStudent #SessionForm #Link,
#MainBodySession #PresentationForm #Link,
#MainBodySession #SessionForm #Link {
  width: 400px;
}

#MainBodyPresentation #PresentationForm #Remarks,
#MainBodyPresentation #SessionForm #Remarks,
#MainEditStudent #PresentationForm #Remarks,
#MainEditStudent #SessionForm #Remarks,
#MainBodySession #PresentationForm #Remarks,
#MainBodySession #SessionForm #Remarks {
  width: 1000px;
  height: 150px;
}

#MainBodyPresentation #QuillContainer,
#MainEditStudent #QuillContainer,
#MainBodySession #QuillContainer {
  margin-left: 86px;
  max-width: 1000px;
  background-color: white;
}

#MainBodyPresentation #QuillContainer #report,
#MainEditStudent #QuillContainer #report,
#MainBodySession #QuillContainer #report {
  background-color: white;
}

#MainBodyPresentation #PresentationTable select,
#MainEditStudent #PresentationTable select,
#MainBodySession #PresentationTable select {
  width: 135px;
}

#MainBodyPresentation #PresentationTable input[type="text"],
#MainBodyPresentation #PresentationTable select,
#MainBodyPresentation #PresentationTable .NoBorder,
#MainEditStudent #PresentationTable input[type="text"],
#MainEditStudent #PresentationTable select,
#MainEditStudent #PresentationTable .NoBorder,
#MainBodySession #PresentationTable input[type="text"],
#MainBodySession #PresentationTable select,
#MainBodySession #PresentationTable .NoBorder {
  border: none;
}

#MainBodyPresentation #PresentationTable,
#MainBodyPresentation #SessionTable,
#MainBodyPresentation #EarningTable,
#MainBodyPresentation #BodyStudentTable,
#MainEditStudent #PresentationTable,
#MainEditStudent #SessionTable,
#MainEditStudent #EarningTable,
#MainEditStudent #BodyStudentTable,
#MainBodySession #PresentationTable,
#MainBodySession #SessionTable,
#MainBodySession #EarningTable,
#MainBodySession #BodyStudentTable {
  width: 1300px;
  margin: auto;
}

#MainBodyPresentation #PresentationTable td,
#MainBodyPresentation #SessionTable td,
#MainBodyPresentation #EarningTable td,
#MainBodyPresentation #BodyStudentTable td,
#MainEditStudent #PresentationTable td,
#MainEditStudent #SessionTable td,
#MainEditStudent #EarningTable td,
#MainEditStudent #BodyStudentTable td,
#MainBodySession #PresentationTable td,
#MainBodySession #SessionTable td,
#MainBodySession #EarningTable td,
#MainBodySession #BodyStudentTable td {
  border: 1px solid silver;
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 3px;
  padding-right: 3px;
  font-size: 0.9rem;
  border-radius: 5px;
}

#MainBodyPresentation #PresentationTable th,
#MainBodyPresentation #SessionTable th,
#MainBodyPresentation #EarningTable th,
#MainBodyPresentation #BodyStudentTable th,
#MainEditStudent #PresentationTable th,
#MainEditStudent #SessionTable th,
#MainEditStudent #EarningTable th,
#MainEditStudent #BodyStudentTable th,
#MainBodySession #PresentationTable th,
#MainBodySession #SessionTable th,
#MainBodySession #EarningTable th,
#MainBodySession #BodyStudentTable th {
  cursor: pointer;
}

#MainBodyPresentation #PresentationTable .Centered,
#MainBodyPresentation #SessionTable .Centered,
#MainBodyPresentation #EarningTable .Centered,
#MainBodyPresentation #BodyStudentTable .Centered,
#MainEditStudent #PresentationTable .Centered,
#MainEditStudent #SessionTable .Centered,
#MainEditStudent #EarningTable .Centered,
#MainEditStudent #BodyStudentTable .Centered,
#MainBodySession #PresentationTable .Centered,
#MainBodySession #SessionTable .Centered,
#MainBodySession #EarningTable .Centered,
#MainBodySession #BodyStudentTable .Centered {
  text-align: center;
}

#MainBodyPresentation #PresentationTable .NoBorder,
#MainBodyPresentation #SessionTable .NoBorder,
#MainBodyPresentation #EarningTable .NoBorder,
#MainBodyPresentation #BodyStudentTable .NoBorder,
#MainEditStudent #PresentationTable .NoBorder,
#MainEditStudent #SessionTable .NoBorder,
#MainEditStudent #EarningTable .NoBorder,
#MainEditStudent #BodyStudentTable .NoBorder,
#MainBodySession #PresentationTable .NoBorder,
#MainBodySession #SessionTable .NoBorder,
#MainBodySession #EarningTable .NoBorder,
#MainBodySession #BodyStudentTable .NoBorder {
  border: none;
}

#MainBodyPresentation #PresentationTable .Remarks,
#MainBodyPresentation #SessionTable .Remarks,
#MainBodyPresentation #EarningTable .Remarks,
#MainBodyPresentation #BodyStudentTable .Remarks,
#MainEditStudent #PresentationTable .Remarks,
#MainEditStudent #SessionTable .Remarks,
#MainEditStudent #EarningTable .Remarks,
#MainEditStudent #BodyStudentTable .Remarks,
#MainBodySession #PresentationTable .Remarks,
#MainBodySession #SessionTable .Remarks,
#MainBodySession #EarningTable .Remarks,
#MainBodySession #BodyStudentTable .Remarks {
  max-width: 100px;
  font-size: 0.8rem;
  text-overflow: ellipsis;
}

#MainBodyPresentation #EarningTable,
#MainEditStudent #EarningTable,
#MainBodySession #EarningTable {
  width: 800px;
}

#MainBodyPresentation #EarningTable td,
#MainBodyPresentation th,
#MainEditStudent #EarningTable td,
#MainEditStudent th,
#MainBodySession #EarningTable td,
#MainBodySession th {
  max-width: 100px;
}

#MainBodyPresentation #NewPresentation,
#MainEditStudent #NewPresentation,
#MainBodySession #NewPresentation {
  width: 100%;
  margin-bottom: 20px;
  margin-top: 20px;
}

#MainBodyPresentation #NewPresentation div,
#MainEditStudent #NewPresentation div,
#MainBodySession #NewPresentation div {
  display: flex;
  justify-content: center;
  font-size: 12px;
}

#MainBodyPresentation #NewPresentation button,
#MainEditStudent #NewPresentation button,
#MainBodySession #NewPresentation button {
  width: 300px;
  cursor: pointer;
}

#MainBodyPresentation #NewPresentation span,
#MainEditStudent #NewPresentation span,
#MainBodySession #NewPresentation span {
  padding: 6px;
  color: white;
  background-color: #7451eb;
  margin: 5px;
  padding-left: 5px;
  padding-right: 5px;
  border-radius: 5px;
}

#MainBodyPresentation #NewPresentation strong,
#MainEditStudent #NewPresentation strong,
#MainBodySession #NewPresentation strong {
  color: #444444;
  background-color: white;
  border: 1px solid #444444;
  padding-left: 5px;
  padding-right: 5px;
  margin-left: 10px;
}

#NewSessionButton {
  width: 100%;
  text-align: center;
}

#NewSessionButton button {
  width: 300px;
}

#MainEditStudent div {
  width: 100%;
  display: flex;
  justify-content: center;
}

#MainEditStudent div button {
  width: 200px;
}

#MainEditStudent section {
  margin: 20px;
}

#MainEditStudent section label {
  margin-left: 10px;
  vertical-align: top;
}

#MainEditStudent #SectionActive {
  display: flex;
  justify-content: flex-start;
}

#MainEditStudent #SectionActive label {
  margin: 0px;
  min-width: unset;
  vertical-align: top;
}

#MainEditStudent #SectionActive .separator {
  width: 50px;
}

#MainEditStudent #Remarks {
  width: 1000px;
  height: 150px;
}

.ql-indent-1 {
  margin-left: 20px;
}

.ql-indent-2 {
  margin-left: 40px;
}

.ql-indent-3 {
  margin-left: 60px;
}

.Report {
  width: 500px;
}
/*# sourceMappingURL=main.css.map */