#myForm {
  max-width: 840px;
  margin: 10px auto;
  font-family: 'Roboto' !important;
  width: calc(100% - 120px);
}

#myForm span {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}

.inputBox {
  background: #FFFFFF;
  border: 2px solid rgba(30, 36, 50, 0.42);
  border-radius: 7px;
  height: inherit;
  width: inherit;
  margin-bottom: 4px !important;
  padding-left: 10px;
  font-family: 'Roboto' !important;
  outline: none;
}

.inputBox:focus {
  border: 2px solid #004274 !important;
}

textarea {
  padding: 9px;
  resize: none;
}

textarea:focus {
  border: 2px solid #004274 !important;
}

.text-styles {
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.2px;
}

.labelStyles {
  font-size: 24px;
  line-height: 24px;
  display: flex;
  align-items: center;
  letter-spacing: 0.2px;
  color: #004274;
  margin-bottom: 10px;
  margin-top: 40px;
  height: 27px;
}

.formTitle {
  font-size: 30px;
  font-weight: bold;
  line-height: 24px;
  display: flex;
  align-items: center;
  color: #004274;
  margin-bottom: 10px;
  margin-top: 60px;
  height: 27px;
  letter-spacing: 0.2px;
}

.projectTitleBox {
  width: 100%;
  height: 35px;
  display: flex;
}

.authorsBox {
  width: 360px;
  height: 220px;
  flex-direction: column;
  display: inline-block;
  vertical-align: top;
}

.authorsBox input[type="text"] {
  height: 35px;
}

.clientBox {
  width: 360px;
  height: 35px;
  flex-direction: column;
  display: inline-block;
  vertical-align: top;
}

.studiejaarBox {
  width: 98px;
  padding: 5px 10px 5px 6px;
  display: flex;
  flex-direction: column;
  border: 2px solid rgba(30, 36, 50, 0.42);
  border-radius: 7px;
}
.studiejaarBox span{
  margin: 4px 3px 3px 4px;
}

.studiejaarBox label {
  display: flex;
  cursor: pointer;
}

input[type="radio"] {
  appearance: none;
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.studiejaarBox input[type="radio"] + label:before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 2px solid rgba(30, 36, 50, 0.42);
  border-radius: 3px;
  margin-right: 26px;
  transition: border-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.studiejaarBox input[type="radio"]:checked + label:before {
  background-color: #004274;
}

.studiejaarBox input[type="radio"]:hover + label:before {
  border: 2px solid #004274;
}

.studiejaarBox input[type="radio"]:active + label:before {
  border: 2px solid #004274;
  background-color: #bbb;
}

.selectBox {
  padding: 5px 5px 5px 8px;
  border: 2px solid rgba(30, 36, 50, 0.42);
  border-radius: 7px;
  font-size: 16px;
  width: 120px;
  min-height: 35px;
  box-sizing: border-box;
  background-color: white;
  z-index: 1;
  transition: border-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.selectBox.uploaded {
  width: 100%;
  min-width: 120px;
}

.selectBox:hover {
  border: 2px solid #004274;
  z-index: 2;
}

.selectBox:active {
  border: 2px solid #004274;
  background-color: #bbb;
  z-index: 2;
}

input[type="file"] {
  display: none;
}

.imageUploadLabel {
  display: block;
  padding: 1px 3px 0px;
}

.file-name {
  margin-top: 4px;
  font-size: 14px;
}

.descriptionBox {
  width: 100%;
  height: 72px;
  display: flex;
}

.elementWrapper {
  height: 35px;
  display: flex;
}

.elementWrapper.title { 
  width: 100%;
  display: flex;
}

.elementWrapper.paragraph {
  width: 100%;
  height: 200px;
}

.elementWrapper.image {  
  width: 120px;
}

.elementWrapper.video {
  width: 200px;
}

.elementWrapper.audio {
  width: 120px;
}

.selectBox.dynamicForm {
  border-radius: 0px 0 0 0px;
  margin-right: -2px;
  padding-left: 0px;
  position: relative;
}

.selectBox.dynamicForm:first-child {
  border-radius: 7px 0 0 7px;
}

.selectBox.dynamicForm:last-child {
  border-radius: 0 7px 7px 0;
}

.addElementSpan{
  justify-content: flex-start !important;
  margin-top: 10px;
}

.labelAndCloseButtonSpan {
  align-items: flex-end !important;
}

.closeButton {
  width: 18px;
  height: 18px;
  cursor: pointer;
  margin-left: 8px;
  margin-bottom: 15px;
  filter: brightness(70%) opacity(42%);
}

.handle-wrapper {
  display: flex;
  align-items: center;
  margin-left: -15px;
}

.move-handle {
  cursor: grab;
  font-size: 16px;
  margin-right: 5px;
  color: rgba(30, 36, 50, 0.42);;
}

.dragging {
  opacity: 0.7;
  border: 2px dashed #004274;
  background-color: rgba(0, 66, 116, 0.1);
}

