/* 	table variables 	*/
/*	section variables 	*/
.section {
  background-color: #f6f5f2;
  padding: 20px;
  margin: 10px;
  page-break-inside: avoid; }

.section h2 {
  font-family: inherit;
  font-weight: bold;
  color: #949494;
  font-size: 130%;
  margin: 0px; }

.section.flex {
  display: flex; }

.half {
  flex-flow: row;
  width: 50%; }

.section hr {
  margin-top: 10px;
  margin-bottom: 10px; }

.section h2.title {
  color: #6e6e6e;
  margin-bottom: 20px;
  text-decoration: underline; }

.section .header-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap; }

.section .image-container.loading {
  width: auto;
  margin: 0px; }

.section .image-container.loading img {
  width: 25px;
  height: 25px; }

.section .header-container img {
  width: 16px;
  height: 16px;
  margin-bottom: 0px; }

.section .title.collapse-handle {
  cursor: pointer; }

.section .title.highlight {
  margin-bottom: 0px; }

/* This is for the little sign tags that we're going to start proliferating everywhere! */
.sign-tag {
  position: relative;
  top: 0;
  left: 0; }

.sign-tag p {
  font-weight: bold; }

.sign-content::before {
  background-position: center;
  background-repeat: no-repeat;
  min-width: 32px;
  width: 32px;
  min-height: 32px;
  height: 32px;
  content: "";
  position: absolute;
  left: -32px;
  top: 0px; }

.sign-tag.signed .sign-content {
  display: none; }

.sign-content {
  margin-left: 32px;
  padding-left: 10px;
  padding-right: 10px;
  position: absolute;
  right: -200px;
  width: 200px;
  min-height: 32px;
  word-wrap: normal;
  white-space: nowrap;
  display: flex;
  justify-content: flex-end;
  align-items: center; }

.admin .sign-content::before {
  background-image: url("/portal/tpro-files/backend/media/website/sign-turquoise.png"); }

.admin .sign-content {
  background-color: #6be2f0; }

.assessor .sign-content::before {
  background-image: url("/portal/tpro-files/backend/media/website/sign-blue.png"); }

.assessor .sign-content {
  background-color: #6bc7f0; }

.student .sign-content::before {
  background-image: url("/portal/tpro-files/backend/media/website/sign-pink.png"); }

.student .sign-content {
  background-color: #fabfc1; }

.guardian .sign-content::before {
  background-image: url("/portal/tpro-files/backend/media/website/sign-orange.png"); }

.guardian .sign-content {
  background-color: #f9ab58; }

.employer .sign-content::before {
  background-image: url("/portal/tpro-files/backend/media/website/sign-yellow.png"); }

.employer .sign-content {
  background-color: #f5ed4c; }

.supervisor .sign-content::before {
  background-image: url("/portal/tpro-files/backend/media/website/sign-green.png"); }

.supervisor .sign-content {
  background-color: #69e566; }

/* this is for modal windows with a fixed bottom */
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(128, 128, 128, 0.8);
  z-index: 10;
  opacity: 0;
  -webkit-transition: opacity 400ms ease-in;
  -moz-transition: opacity 400ms ease-in;
  transition: opacity 400ms ease-in;
  pointer-events: none; }

.modal:target {
  opacity: 1;
  pointer-events: auto; }

.modal > * {
  position: absolute;
  top: 10%;
  left: 10%;
  right: 10%;
  bottom: 10%;
  border-radius: 3px;
  background: #eee;
  -moz-box-shadow: 5px 5px 8px #777;
  -webkit-box-shadow: 5px 5px 8px #777;
  box-shadow: 5px 5px 8px #777;
  max-height: 80%;
  max-width: 80%;
  text-align: center; }

.modal > div > div,
.modal > * > .content {
  position: relative;
  border-radius: 3px;
  padding: 20px;
  background: #eee;
  max-height: 100%;
  text-align: center;
  overflow-y: auto;
  overflow-x: visible; }

.modal > * > h3 {
  margin-top: 10px; }

.modal .close {
  background: #606061;
  color: #FFFFFF;
  line-height: 25px;
  position: absolute;
  right: -10px;
  text-align: center;
  top: -10px;
  width: 24px;
  text-decoration: none;
  font-weight: bold;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  -moz-box-shadow: 5px 5px 8px #777;
  -webkit-box-shadow: 5px 5px 8px #777;
  box-shadow: 5px 5px 8px #777;
  z-index: 20; }

.modal .close:hover {
  background: #00d9ff; }

/* this is for modals with a flexible bottom */
.modal.flexible > * {
  position: absolute;
  bottom: initial;
  min-height: 20%;
  max-height: 80%; }

/* this will alternate the color of a tables rows and columns! */
table.alternate-background > tbody > tr:nth-child(even) > td {
  background-color: #e0e0ff;
  /* alternate background colors of tables */ }

table.alternate-background > tbody > tr:nth-child(odd) > td {
  background-color: #f0f1f7; }

table.alternate-background > tbody > tr > th {
  background-color: #aaaaff; }

/* this will alternate the color of a tables rows and columns! */
table.alternate-background-expansion > tbody > tr:nth-child(4n) > td, table.alternate-background-expansion > tbody > tr:nth-child(4n + 1) > td {
  background-color: #E1E0FF;
  /* alternate background colors of tables */ }

table.alternate-background-expansion > tbody > tr:nth-child(4n+2) > td, table.alternate-background-expansion > tbody > tr:nth-child(4n + 3) > td {
  background-color: #F0F1F7;
  /* alternate background colors of tables */ }

table.alternate-column tr:nth-child(even) td:nth-child(even) {
  background-color: #c0c0ff;
  /* alternate background colors of tables */ }

table.alternate-column tr:nth-child(odd) td:nth-child(even) {
  background-color: #e0e0ff;
  /* alternate background colors of tables */ }

.table.alternate-background > *:nth-child(even) > *,
.alternate-background > *:nth-child(even) {
  background-color: #e0e0ff;
  /* alternate background colors of tables */ }

.table.alternate-background > *:nth-child(odd) > *,
.alternate-background > *:nth-child(odd) {
  background-color: #F0F1F7; }

/* this will alternate the color of a tables rows and columns! */
.table.alternate-background-expansion > *:nth-child(4n) > *, div.table.alternate-background-expansion > *:nth-child(4n + 1) > * {
  background-color: #E1E0FF;
  /* alternate background colors of tables */ }

.table.alternate-background-expansion > *:nth-child(4n+2) > *, div.table.alternate-background-expansion > *:nth-child(4n + 3) > * {
  background-color: #F0F1F7;
  /* alternate background colors of tables */ }

.table.alternate-column > *:nth-child(even) > *:nth-child(even) {
  background-color: #c0c0ff;
  /* alternate background colors of tables */ }

.table.alternate-column > *:nth-child(odd) > *:nth-child(even) {
  background-color: #e0e0ff;
  /* alternate background colors of tables */ }

table td.button-col {
  width: 100px; }

.signature-container {
  width: 100%;
  margin-bottom: 10px; }

.signature-wrapper {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #e3e3e3; }

.signature-wrapper:after {
  padding-top: 37.5%;
  display: block;
  content: ''; }

.signature-pad {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  outline-style: solid; }

#signature-widget-confirm-button {
  margin-top: 10px; }

.button.signature-clear {
  width: auto;
  position: absolute;
  right: 0;
  top: 0; }

/* running column defines a two column section that runs on from col a -> col b and then moves down a row */
.running-column {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }

.running-column * {
  box-sizing: border-box; }

.running-column > * {
  width: 50%; }

.running-column > *:nth-child(2n) {
  padding-left: 10px; }

.running-column > *:nth-child(2n+1) {
  padding-right: 10px; }

.split-column {
  display: flex;
  flex-wrap: wrap; }

/* wrapper for label and input */
.contained-label {
  display: block;
  max-width: 100%;
  padding-left: 3px;
  padding-bottom: 5px;
  padding-top: 10px;
  text-align: left; }

.contained-label input {
  width: 100%;
  margin-bottom: 5px;
  margin-top: 5px; }

.button.widget-search-button > div > span {
  /* padding:0px; */ }

.search-container > * {
  margin-bottom: 10px; }

.search-container {
  margin-bottom: 2em; }

.button.full {
  width: 100%; }

.full {
  width: 100%; }

.button.half {
  width: 49%; }

.button.loading > div > * {
  padding: 0; }

.button.loading > div > * > img {
  margin-bottom: 0px;
  width: 30px;
  height: 30px; }

.button span {
  height: 40px;
  line-height: 1; }

.button.drive-icon span {
  padding: 5px;
  vertical-align: middle; }

.button.drive-icon img {
  width: 28px;
  height: 28px;
  margin: auto;
  line-height: 1; }

.button.token div span {
  width: 100px; }

div.button.locked {
  outline: none;
  background-color: #bbbbbb !important;
  cursor: default; }

div.button.locked:hover {
  background-color: #bbbbbb !important; }

div.data > *:nth-child(1) {
  font-weight: bold;
  margin-bottom: 0px; }

div.data > *:nth-child(2) {
  margin-left: 10px;
  /*margin-right: 10px;*/
  width: calc(100% - 10px);
  margin-bottom: 1em; }

div.data .title {
  font-weight: bold;
  display: flex;
  align-items: center; }

div.data .title > * {
  margin-bottom: 0px; }

div.data .title .helper {
  margin-left: 1em;
  width: 16px;
  height: 16px; }

div.data > .selectable {
  display: flex;
  justify-content: space-between; }

div.data .selectable .select {
  margin-right: 1em;
  margin-left: 1em;
  color: #955cce;
  text-decoration: underline; }

div.data .selectable .select:hover {
  color: #7F18CE;
  cursor: pointer; }

div.data > .edit {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  /*flex:auto;
  justify-content: flex-start;
  flex-wrap: nowrap;
  max-width:100%;*/ }

div.data > .edit > *:nth-child(1) {
  /*width:100%;*/
  /*flex: 2;*/
  flex: 1;
  margin-right: 5px; }

div.data > .edit > *:nth-child(2) {
  /*width: auto;*/
  /*margin-right:0px;
  margin-left:auto;
  text-align:right;
  display:block;*/
  /*flex: 1;*/
  vertical-align: middle; }

.loading-parent {
  position: relative; }

.loading-container::before {
  width: 16px;
  /*margin-left:16px;*/ }

.loading-container {
  box-sizing: content-box;
  margin-left: 8px;
  display: block;
  width: 32px;
  min-width: 32px;
  height: 32px;
  min-height: 32px;
  /*padding:10px;*/
  position: absolute;
  top: 0;
  right: -40px;
  border: 1px solid rgba(200, 200, 200, 0.3);
  background-color: rgba(200, 200, 200, 0.2);
  opacity: 0;
  transition: opacity .25s ease-in-out;
  -moz-transition: opacity .25s ease-in-out;
  -webkit-transition: opacity .25s ease-in-out; }

.loading-container.load {
  opacity: 1; }

input.failed {
  border-color: #f20d0d; }

input.success {
  background-color: #8aff9f !important; }

.hidden {
  display: none !important; }

/*.editable-data
{
	display: flex;
}*/
.editable-data {
  /*margin:0px;*/
  margin-bottom: 1.5em; }

.editable-data .editable-display {
  /*margin:0px;*/
  display: inline; }

.editable-data.editing .editable-display {
  display: none; }

.editable-data:not(.editing) .editable-input {
  display: none; }

.editable-data .link-button {
  margin-left: 10px;
  display: inline; }

.flex {
  display: flex; }

.f-row {
  flex-direction: row; }

.f-center {
  align-items: center;
  align-content: center; }

.half {
  width: 50%;
  flex-flow: row; }

.f-col {
  flex-flow: column; }

.padding-box {
  padding: 20px; }

input[type="number"] {
  padding: 3px;
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px; }

.remove.button, .download.button {
  width: 100px;
  height: 40px; }

.remove.button {
  background-color: #a84646; }

.remove.button:hover {
  background-color: #d66565; }

.download.button {
  background-color: #7f18ce; }

.download.button:hover {
  background-color: #9e39eb; }

.no-display {
  display: none; }

article.tags {
  display: flex;
  background-color: #e3e3e3;
  margin-bottom: 2em; }

article.tags > * {
  width: calc(100% / 4); }

table.search-display-table thead tr {
  background-color: #aaaaff; }
table.search-display-table tr {
  height: 40px; }
  table.search-display-table tr td,
  table.search-display-table tr th {
    padding-left: 10px;
    padding-right: 10px;
    vertical-align: middle; }

.table.search-display-table .table-head .table-row {
  background-color: #aaaaff; }
.table.search-display-table .table-row {
  height: 40px;
  line-height: 40px; }
  .table.search-display-table .table-row .table-cell {
    padding-left: 10px;
    padding-right: 10px; }

table.search-display-table.alternate-background tbody tr:hover td,
table.search-display-table.alternate-background tbody tr:hover th,
.table.search-display-table.alternate-background .table-body .table-row:hover .table-cell {
  background-color: #aaaaff;
  cursor: pointer; }

/*article.tabs
{
	position: relative;
	display: block;
}

article.tabs section
{
	position: absolute;
	display: block;
	left: 0;
	width: 100%;
	z-index: 0;
}

article.tabs section:first-child
{
	z-index:1;
}

article.tabs section .content
{
	position: absolute;
	top: 5em;
	width: 100%;
}

article.tabs section .button
{
	position: absolute;
	width: 220px;
	height: 40px;
	top: 0px;
	left: 10px;
	background-color: #e3e3e3;
	color: #bdbdbd;
}

article.tabs section .button:hover {
	background-color: #cbcbcb;
	color: #bdbdbd;
}

article.tabs section:nth-child(2) .button
{
	left: calc(10px + (220px * 1));
}

article.tabs section:nth-child(3) .button
{
	left: calc(10px + (220px * 2));
}

article.tabs section:target .button {
	background-color: #7F18CE;
	color: white;
}

article.tabs section:target .button:hover {
	background-color: #8d25db;
}

article.tabs .content
{
	display:none;
}

article.tabs section:target .content
{
	display:block;
}

article.tabs section,
article.tabs section h2,
article.tabs section .content
{
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}*/
.notification {
  width: 100%;
  min-height: 64px;
  display: flex;
  background-color: #f6f5f2; }

.notification.warning::before {
  box-sizing: border-box;
  background-image: url("../media/website/notification.png");
  background-color: #ffb354;
  background-repeat: no-repeat;
  background-position: center;
  fill: #4d6aa1;
  min-width: 64px;
  min-height: 64px;
  content: ""; }

.notification.error::before {
  box-sizing: border-box;
  background-image: url("../media/website/notification.png");
  background-color: #d46969;
  background-repeat: no-repeat;
  background-position: center;
  fill: #4d6aa1;
  min-width: 64px;
  min-height: 64px;
  content: ""; }

.notification > * > p::before {
  content: "Notice: ";
  font-weight: bold; }

.notification > * {
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
  min-height: 64px;
  width: calc(100% - 10px);
  text-align: left;
  vertical-align: middle;
  display: flex;
  align-content: center; }

.notification > * > p {
  margin-top: auto;
  margin-bottom: auto;
  vertical-align: middle; }

.table {
  display: table;
  width: 100%; }
  .table .table-head {
    display: table-header-group; }
    .table .table-head .table-row {
      background-color: #aaaaff; }
      .table .table-head .table-row .table-cell {
        font-weight: bold; }
  .table .table-body {
    display: table-row-group; }
  .table .table-row {
    display: table-row; }
  .table .table-row:hover {
    background-color: #aaaaff; }
  .table .table-cell {
    display: table-cell;
    text-align: left;
    color: #626262; }

.table.alternate-background .table-row:nth-child(even) {
  background-color: #f0f1f7; }
.table.alternate-background .table-row:nth-child(odd) {
  background-color: #e0e0ff; }

/*Flex Box*/
.flex {
  display: flex; }

.flex-start {
  align-self: flex-end; }

.flex-end {
  align-self: flex-end; }

.flex-row {
  flex-direction: row;
  justify-content: space-between; }

.flex-column {
  flex-direction: column; }

.flex-wrap {
  flex-wrap: wrap; }

.flex-nowrap {
  flex-wrap: nowrap; }

.flex-justify-start {
  justify-content: flex-start; }

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

.flex-align-items {
  align-items: flex-end; }

.flex-flow-wrap {
  flex-flow: wrap; }

#div-test {
  display: flex;
  flex-flow: wrap;
  min-width: 100%; }

.flex input {
  width: 100%;
  box-sizing: border-box;
  -moz-box-sizing: border-box; }

.max-width-flex {
  width: 100%; }

.min-width-flex {
  min-width: 100%; }

.expand-textarea textarea {
  display: block;
  box-sizing: padding-box;
  overflow: hidden;
  padding: 10px; }

/*# sourceMappingURL=common.css.map */
