.section {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 25px;
}

.sectionheader {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 50px;
  line-height: 50px;
  margin-bottom: 50px;
  border-bottom: 2px solid var(--main-color);
}

.sectionfooter {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 50px;
  line-height: 50px;
  margin-top: 50px;
  border-top: 2px solid var(--main-color);
}

.name_header {
  margin-bottom: 50px;
}

/* statusbutton */
#status {
  font-size: 14px;
  height: 25px;
  width: 110px;
  border: none;
}

select[data-chosen="1"] {
  color: white;
  background-color: green;
  border-radius: 5px;
  box-shadow: 0px 4px 15px #9999;
}

select[data-chosen="2"] {
  color: white;
  background-color: orange;
  border-radius: 5px;
  box-shadow: 0px 4px 15px #9999;
}

select[data-chosen="0"] {
  color: white;
  background-color: slateblue;
  border-radius: 5px;
  box-shadow: 0px 4px 15px #9999;
}

/* general listing of a list, just some list */
.somelist {
  width: 350px;
  margin-left: 25px;
  margin-right: 25px;
}

.somelist ul {
  all: unset;
  list-style-type: none;
}

.somelist li {
  display: flex;
  box-sizing: border-box;
  align-items: center;
  height: 50px;
  border-bottom: 2px solid var(--main-color-transparent);
  transition: 0.2s ease-in;
}

.somelist li:hover {
  cursor: pointer;
  border-bottom: 2px solid var(--main-color);
  transition: 0.3s ease-in-out;
}

.somelist_left {
  font-weight: bold;
  width: 120px;
}

.somelist_right {
  width: 220px;
}

.somelist_right.somelist_dual {
  display: flex;
  justify-content: space-between;
}

.somelist_dual_div {
  width: 105px;
}

/* Specific to lesinformatie / lessoninfo */
.lessons_info li:last-child {
  margin-bottom: 50px;
}

/* selection box used in many forms  */
.select {
  font-size: 14px;
  border: none;
  background: white;
  width: 100%;
  height: 45px;
}

/* textbox markup */
.textbox {
  display: flex;
  flex-direction: column;
}

.textbox.bottom_margin {
  margin-bottom: 50px;
}

.textbox_header {
  display: flex;
  height: 50px;
  line-height: 50px;
  justify-content: space-between;
  border-bottom: 2px solid var(--main-color-transparent);
}

.textbox_btnbox {
  display: flex;
}

.textbox_btn {
  all: unset;
  width: 30px;
  font-size: 20px;
  text-align: center;
  color: var(--main-color);
  transition: 0.5s ease-in-out;
}

@keyframes bigsmall {
  0%{
    opacity: 0;
      font-size: 30px;
  }
  25% {
    opacity: 0.50;
    font-size: 40px;
  }
  50%{
    opacity: 1;
      font-size: 30px;
  }
  100% {
    opacity: 1;
    font-size: 30px;
  }
}

.textbox_btn:hover {
  cursor: pointer;
  font-size: 30px;
}

.textbox_main[data-stuinfo="30"] {
  padding: 15px 0;
}

.textbox_main {
  min-height: 100px;
  max-height: 100px;
  overflow: hidden;
  line-height: 25px;
  padding: 15px 0;
  /* border-style: none; */
  border-bottom: 2px solid var(--main-color-transparent);
  transition: max-height 0.6s ease-in-out 0.5s;
  /* max-width: 100%;
  font-family: var(--font-standard); */
}

/* .textbox_main h5 {
  margin-top: 15px;
} */

.textbox_main p {
  margin: 0;
}

.textbox_main:hover {
  max-height: 1000px;
}

.textbox_footer {
  display: flex;
  flex-direction: column;
  text-align: right;
  padding-top: 15px;
  line-height: 25px;
}

.textbox_attachments {
  all: unset;
  font-style: italic;
  transition: 0.3s ease-in-out;
  text-decoration: wavy;
}

.textbox_attachments:hover {
  cursor: pointer;
  color: var(--main-color);
}

.textbox_main.notes {
  margin-bottom: 15px;
}

.textbox_empty {
  display: none;
  margin-top: 15px;
  height: 15px;
  font-style: italic;
}

.textbox_empty.nohomework {
  color: green;
  transition: 0.3s ease-in-out;
}

.textbox_deletenote {
  all: unset;
  display: none;
  position: relative;
  float: right;
}

.deletenote {
  color: lightgrey;
  font-weight: bold;
  font-size: 15px;
}

.textbox_main.notes:hover .textbox_deletenote {
  display: block;
}

.deletenote:hover {
  cursor: pointer;
  color: red;
}

.textbox_deletenote:hover {
  display: block;
}

.textbox_main.history {
  min-height: unset;
  max-height: unset;
}

.author {
  font-style: italic;
  font-size: 10px;
  color: var(--main-color);
}

.author.underline {
  text-decoration: underline;
}

.somelist {
  vertical-align: middle;
}

.form_input {
  position: relative;
  z-index: 10;
  border-style: hidden;
  font-size: 14px;
  color: #454545;
}

.form_input:disabled {
  pointer-events: none;
  background-color: unset;
}

#motivation_text {
  box-sizing: border-box;
  font-family: var(--font-standard);
  width: 100%;
  padding: 0px 15px;
  outline: none;
  border-style: none;
  border: none;
  overflow: hidden;
}

.btn {
  font-size: 1.1rem;
  width: max-content;
  padding: 0.5rem 1.5rem;
  color: white;
  font-weight: bold;
  background-color: var(--main-color);
  border-radius: 5px;
  border: none;
  border-color: var(--main-color-transparent);
  transition: 0.3s ease-in-out;
}

.btn:hover {
  cursor: pointer;
  background-color: black;
  box-shadow: 0 0 5px var(--main-color);
}

.section.newstudent {
  justify-content: flex-end;
}

