.bodydiv {
  width: 100%;
  height: 100%;
  min-height: 100vh;
}

.bodydiv.gradientbackground {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.bodydiv.gradientbackground.centeralignment {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.logindiv {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 1000px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  background-color: #fff;
  box-shadow: 9px 9px 25px -8px #000;
}

.logindivleft {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 400px;
  height: 500px;
  padding: 35px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.logindivright {
  width: 600px;
  height: 500px;
  background-image: url('../images/BG.png');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.loginimage {
  width: 200px;
  margin-bottom: 25px;
}

.text-block {
  margin-bottom: 30px;
  border-bottom: 1px solid #cfcfcf;
  font-family: 'Open Sans', sans-serif;
  color: #7f8183;
  font-size: 25px;
  line-height: 40px;
  font-weight: 300;
}

.text-block-2 {
  font-family: 'Open Sans', sans-serif;
  color: #7f8183;
  font-weight: 300;
}

.defaulttext {
  margin-bottom: 30px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
  font-family: 'Open Sans', sans-serif;
  color: #7f8183;
  font-weight: 300;
}

.defaulttext.small {
  margin-bottom: 0px;
  font-size: 12px;
}

.defaulttext.small.centeralignment {
  color: #838383;
  text-align: center;
}

.defaulttext.small.centeralignment.done {
  color: #007caf;
}

.defaulttext.extrasmall {
  width: 80px;
  margin-bottom: 0px;
  font-size: 10px;
  line-height: 15px;
  text-align: center;
}

.defaulttext.nomargin {
  margin-bottom: 0px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.defaulttext.nomargin.rightalignment {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  font-size: 16px;
}

.defaulttext.nomargin.bold {
  font-weight: 400;
}

.defaultbutton {
  width: 100%;
  border: 1px solid #4cb4b1;
  background-color: #4cb4b1;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  text-align: center;
}

.defaultbutton.staticwidth {
  width: 270px;
  margin-left: 5px;
}

.defaultbutton.uploadbutton {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 150px;
  height: 30px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.defaultbutton.fixedwidth {
  width: 200px;
}

.defaultbutton.upload {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  height: 30px;
  margin-left: 5px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.text-field {
  font-family: Lato, sans-serif;
  font-weight: 300;
}

.text-field-2 {
  font-family: Lato, sans-serif;
  font-weight: 300;
}

.headersection {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 500px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  background-image: -webkit-gradient(linear, left bottom, left top, from(hsla(0, 0%, 83.3%, 0.4)), to(hsla(0, 0%, 100%, 0.86))), url('../images/BG_Dashboard.jpeg');
  background-image: linear-gradient(0deg, hsla(0, 0%, 83.3%, 0.4), hsla(0, 0%, 100%, 0.86)), url('../images/BG_Dashboard.jpeg');
  background-position: 0px 0px, 100% 50%;
  background-size: auto, cover;
}

.headerdiv {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
  margin-bottom: 0px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.logolinkimage {
  width: 200px;
}

.placeholder {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.defaultlink {
  margin-left: 15px;
  font-family: Lato, sans-serif;
  color: #7f8183;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
}

.pipe {
  margin-right: 10px;
  margin-left: 10px;
  font-family: 'Open Sans', sans-serif;
  color: #7f8183;
  font-weight: 400;
}

.filtersection {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin-top: -380px;
  margin-bottom: 15px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.filterdiv {
  height: 100%;
  margin-top: 0px;
  margin-bottom: 25px;
  padding: 20px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color: #fff;
  box-shadow: 2px 2px 8px -3px #000;
}

.buttondiv {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 25px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.buttondiv.nomargin {
  margin-bottom: 0px;
}

.defaultheader {
  margin-bottom: 0px;
  font-family: 'Open Sans', sans-serif;
  color: #7f8183;
  font-size: 20px;
  line-height: 24px;
  font-weight: 300;
}

.defaultheader.blue {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  color: #007caf;
}

.defaultheader.blue.marginbottom {
  margin-bottom: 15px;
}

.form-block {
  margin-top: 10px;
  margin-bottom: 0px;
}

.form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.defaultsubheader {
  width: auto;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-family: 'Open Sans', sans-serif;
  color: #7f8183;
  font-size: 14px;
  font-weight: 400;
  text-align: left;
}

.defaultsubheader.blue {
  color: #007caf;
}

.defaultsubheader.blue.center-alignment {
  text-align: center;
}

.defaultsubheader.blue.thin {
  margin-bottom: 10px;
  font-weight: 300;
}

.defaultsubheader.name {
  font-size: 16px;
  line-height: 22px;
}

.defaultsubheader.date {
  width: 80px;
  text-align: center;
}

.columns {
  margin-bottom: 5px;
}

.columns.marginbottom {
  margin-bottom: 15px;
}

.filterwrapper {
  margin-top: 5px;
}

.filtertrigger {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.filterarrow {
  width: 14px;
  margin-right: 10px;
}

.filtercontent {
  overflow: hidden;
  height: auto;
  padding-left: 15px;
}

.filtercontent.marginbottom {
  margin-bottom: 0px;
}

.text-field-3 {
  margin-bottom: 0px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}

.container {
  margin-top: -250px;
}

.datasection {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 25px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.datadiv {
  padding: 30px 30px 30px 29px;
  background-color: #fff;
}

.datarowdiv {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2px;
  padding: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(127, 129, 131, 0.15);
}

.datarowdetaildiv {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 300px;
  margin-left: 10px;
  padding-right: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  border-right: 1px solid #7f8183;
}

.datarowseparator {
  width: 1px;
  height: 100px;
  max-height: 100%;
  min-height: 100%;
  background-color: #000;
}

.datarowcontroldiv {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 60px;
  margin-left: 10px;
  padding-right: 10px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-right: 1px solid #7f8183;
}

.datarowcontroldiv.dates {
  width: 225px;
}

.datarowcontroldiv.noborger {
  border-right-style: none;
}

.datarowcontrolelement {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 120px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.datarowcontrolelement.download {
  width: 60px;
}

.controlbutton {
  width: 36px;
  height: 36px;
  border: 1px solid #7f8183;
  border-radius: 20px;
  background-color: transparent;
  background-image: url('../images/send_1send.png');
  background-position: 30% 50%;
  background-size: 24px 24px;
  background-repeat: no-repeat;
}

.controlbutton.quiestionnaire {
  background-image: url('../images/document_1document.png');
  background-position: 50% 50%;
}

.controlbutton.quiestionnaire.done {
  width: 36px;
  border-color: #007caf;
  background-image: url('../images/check-mark_1check-mark.png');
  background-position: 50% 50%;
  background-size: 20px 20px;
}

.controlbutton.document {
  background-image: url('../images/document_1document.png');
  background-position: 50% 50%;
}

.controlbutton.document.done {
  border-color: #007caf;
  background-image: url('../images/check-mark_1check-mark.png');
  background-size: 20px 20px;
}

.controlbutton.finalization {
  background-image: url('../images/stamp_1stamp.png');
  background-position: 50% 50%;
}

.controlbutton.finalization.disabled {
  border-color: #adadad;
  background-image: url('../images/stamp_disabled_1stamp_disabled.png');
}

.controlbutton.finalization.done {
  border-color: #007caf;
  background-image: url('../images/check-mark_1check-mark.png');
  background-size: 20px 20px;
  color: #333;
}

.controlbutton.download {
  background-image: url('../images/download_1download.png');
  background-position: 50% 50%;
}

.controlbutton.download.disabled {
  border-color: #adadad;
  background-image: url('../images/download_disabled_1download_disabled.png');
}

.controlbutton.mail {
  background-image: url('../images/mail_1mail.png');
  background-position: 50% 50%;
}

.controlbutton.mail.marginleft {
  margin-left: 10px;
}

.controlbutton.printer.marginleft {
  margin-left: 10px;
  background-image: url('../images/print_1print.png');
  background-position: 50% 50%;
}

.containerdiv {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 1000px;
  margin-top: 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.container-2 {
  position: static;
}

.datarowdateelement {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.datarowfunctionsdiv {
  margin-left: 10px;
}

.editlink {
  padding: 10px;
}

.image {
  width: 24px;
  height: 24px;
}

.navigationrow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.navigationrow.reversemargin {
  margin-top: 20px;
  margin-bottom: 0px;
}

.paginationlink {
  font-family: 'Open Sans', sans-serif;
  color: #007caf;
  text-decoration: none;
}

.defaulttab {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border: 1px solid #007caf;
  background-color: #fff;
  font-family: 'Open Sans', sans-serif;
  color: #007caf;
  font-size: 16px;
  font-weight: 300;
}

.defaulttab.w--current {
  background-color: #007caf;
  color: #fff;
}

.tabs-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.tabs-content {
  margin-top: 25px;
}

.tabcontentdiv {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  background-color: #fff;
}

.admindatawrapper {
  margin-bottom: 2px;
}

.admindatatrigger {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(127, 129, 131, 0.15);
  cursor: pointer;
}

.admindatacontent {
  overflow: hidden;
}

.functionbutton {
  width: 30px;
  height: 30px;
  margin-left: 10px;
  background-color: transparent;
  background-image: url('../images/edit_1edit.png');
  background-position: 50% 50%;
  background-size: 24px 24px;
  background-repeat: no-repeat;
}

.functionbutton.delete {
  background-image: url('../images/delete_1delete.png');
}

.functionbutton.download {
  background-image: url('../images/download_1download.png');
}

.admincontentrow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 5px 0px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.admincontentrow.lastline {
  margin-bottom: 10px;
}

.adminleftcolumn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.adminrightcolumn {
  padding-right: 0px;
  padding-left: 0px;
}

.questionnairediv {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2px;
  padding: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(127, 129, 131, 0.15);
}

.form-block-2 {
  margin-bottom: 0px;
}

.settingsrow {
  margin-bottom: 10px;
}

.text-field-4 {
  width: 80px;
  margin-right: 10px;
  margin-bottom: 0px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
}

.select-field {
  margin-bottom: 0px;
}

.select-field-2 {
  margin-bottom: 0px;
}

.column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.text-block-3 {
  font-family: 'Open Sans', sans-serif;
}

.overlaydiv {
  position: fixed;
  z-index: 9000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  margin-bottom: 5px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
}

.overlaycontentdiv {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 700px;
  padding: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #fff;
}

.overlayclosebutton {
  position: fixed;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: auto;
  width: 50px;
  height: 50px;
  background-color: transparent;
  background-image: url('../images/close_1close.png');
  background-position: 50% 50%;
  background-size: 16px 16px;
  background-repeat: no-repeat;
}

.dialogheader {
  margin-bottom: 10px;
  background-color: rgba(127, 129, 131, 0.15);
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 45px;
  font-weight: 300;
  text-align: center;
}

.form-block-3 {
  margin-bottom: 0px;
}

.text-field-5 {
  margin-bottom: 0px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
}

.text-field-5.note {
  height: 150px;
}

.text-block-4 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-family: 'Open Sans', sans-serif;
}

.uploaddiv {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.select-field-3 {
  margin-bottom: 0px;
}

.div-block {
  display: none;
}

.div-block-2 {
  display: none;
}

.separatordiv {
  height: 1px;
  margin-top: 15px;
  margin-bottom: 15px;
  background-color: rgba(127, 129, 131, 0.15);
}

.separatordiv.nomargintop {
  margin-top: 0px;
}

.separatordiv.lessmargintop {
  margin-top: 5px;
}

.div-block-3 {
  display: none;
}

.div-block-3.status {
  display: none;
}

.div-block-3.reminder {
  display: none;
}

.checkbox-field {
  font-family: 'Open Sans', sans-serif;
}

.linkdiv {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.link {
  font-family: 'Open Sans', sans-serif;
  color: #7f8183;
  font-size: 12px;
  font-weight: 300;
  text-decoration: none;
}

.div-block-4 {
  display: none;
}

.overlaydivquestionnaire {
  position: fixed;
  z-index: 9000;
  display: none;
  width: 100%;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
}

.dataheaderdiv {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 15px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.datarowdaterow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
}

.datarowdaterow.marginbotom {
  margin-bottom: 5px;
}

.text-block-5 {
  font-family: 'Open Sans', sans-serif;
  color: #7f8183;
  font-weight: 300;
}

.headerlinkdiv {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 5px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.headerlink {
  font-family: 'Open Sans', sans-serif;
  color: #007caf;
  font-size: 12px;
  font-weight: 300;
}

.form-block-4 {
  margin-bottom: 0px;
}

.checkbox-field-2 {
  margin-bottom: 0px;
}

.html-embed {
  width: auto;
  height: auto;
}

.columns-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 5px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.column-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.select-field-4 {
  margin-bottom: 0px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
}

.filterseparator {
  width: 100%;
  height: 1px;
  margin-top: 15px;
  margin-bottom: 15px;
  background-color: #e6e6e6;
}

.text-span {
  color: #7f8183;
}

.userdocumentrow {
  margin-bottom: 2px;
  padding: 10px;
  background-color: rgba(127, 129, 131, 0.15);
}

.userdocumentrow.title {
  background-color: rgba(127, 129, 131, 0.25);
}

.userdocumentrow.marginbottom {
  margin-bottom: 10px;
}

.userdocumentrow.marginbottom.lastrow {
  margin-bottom: 25px;
}

.userdocumentcolumn.upload {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.factorycontent {
  display: block;
  overflow: hidden;
}

.factorytrigger {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(127, 129, 131, 0.25);
  cursor: pointer;
}

.factoryarrow {
  width: 12px;
  margin-right: 15px;
}

.factorysubcontent {
  padding: 15px 0px 15px 15px;
  background-color: #fff;
}

.factorywrapper {
  margin-bottom: 10px;
}

.factorywrapper.last {
  margin-bottom: 20px;
}

.documentlistdiv {
  padding: 5px 10px 10px;
  background-color: rgba(127, 129, 131, 0.15);
}

.documentlistdiv.last {
  margin-bottom: 10px;
}

.documentlistdiv.marginbottom {
  margin-bottom: 10px;
}

.userdocumentlink {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-top: 5px;
  margin-bottom: 0px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
}

.pdficon {
  width: 32px;
  margin-right: 15px;
}

.defaultparagraph {
  margin-bottom: 0px;
  padding-top: 5px;
  padding-left: 10px;
  font-family: 'Open Sans', sans-serif;
  color: #7f8183;
  font-weight: 300;
}

.div-block-5 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.form-block-5 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.text-field-6 {
  margin-bottom: 0px;
}

.defaulttextfield {
  margin-bottom: 0px;
}

.defaulttextfield.leftalignment {
  margin-left: 2px;
}

.textarea {
  min-height: 100px;
}

.defaulttextarea {
  min-height: 150px;
  margin-top: 10px;
  margin-bottom: 5px;
  margin-left: 0px;
}

.documentdeletebutton {
  width: 20px;
}

.documentupload {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.userstatusdiv {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 25px;
  padding: 10px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(127, 129, 131, 0.15);
}

.userstatusbubble {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.userstatusimagediv {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
  padding: 10px;
  border: 2px solid #7f8183;
  border-radius: 25px;
}

.userstatusimage {
  width: 24px;
}

.userstatusimage.disabled {
  display: none;
}

.userstatustext {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 300;
  text-align: center;
}

.statusdeparator {
  height: 2px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color: #7f8183;
}

.updloaddiv {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 5px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.updloaddiv.invoices {
  margin-top: 5px;
}

.text-block-6 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-family: 'Open Sans', sans-serif;
  color: #7f8183;
  font-weight: 300;
}

.select-field-5 {
  margin-bottom: 0px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
}

.invoicebox {
  margin-right: 15px;
}

.checkbox-label {
  color: #7f8183;
}

.checkbox-label-2 {
  color: #7f8183;
}

.checkbox-label-3 {
  color: #7f8183;
}

.tabs-menu-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.tab-link-tab-1 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border: 1px solid #007caf;
  background-color: #fff;
  color: #007caf;
}

.tab-link-tab-1.w--current {
  border: 1px solid #007caf;
  background-color: #007caf;
  color: #fff;
}

.tab-link-tab-2 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border: 1px solid #007caf;
  background-color: #fff;
  color: #007caf;
}

.tab-link-tab-3 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.tabheader {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  text-align: center;
}

.image-2 {
  width: 30px;
}

.link-block {
  margin-left: 10px;
}

.languagediv {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
  padding: 15px;
  border-style: solid;
  border-width: 1px;
  border-color: #e0e0e0;
}

.languagetext {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 300;
}

.image-3 {
  width: 24px;
}

.link-block-2 {
  margin-left: 10px;
}

.datainputdiv {
  height: 100%;
}

.form-block-6 {
  height: 100%;
  margin-bottom: 0px;
}

.form-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.text-block-7 {
  margin-bottom: 10px;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 300;
}

.text-field-7 {
  margin-bottom: 25px;
  font-family: Lato, sans-serif;
  font-weight: 300;
}

.textarea-2 {
  height: 300px;
  min-height: 250px;
  margin-bottom: 25px;
  font-family: Lato, sans-serif;
  font-weight: 300;
}

.columns-3 {
  margin-bottom: 0px;
}

.columns-3.moremargin {
  margin-bottom: 0px;
}

.column-3 {
  padding-right: 10px;
  padding-left: 0px;
}

.column-4 {
  padding-right: 0px;
  padding-left: 0px;
}