@charset "UTF-8";
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, Verdana, sans-serif;
  font-size: 18px;
  color: #444;
  line-height: 1.4;
  background-color: white;
}

@keyframes loading {
  0% {
    background-position: 0px center;
  }
  100% {
    background-position: 3000px center;
  }
}
@keyframes scale {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.4);
  }
}
@keyframes rotate {
  0% {
    rotate: 0deg;
  }
  50% {
    rotate: 180deg;
  }
  100% {
    rotate: 360deg;
  }
}
@keyframes wiggle5 {
  0% {
    translate: 0px 0;
  }
  25% {
    translate: -5px 0;
  }
  75% {
    translate: 5px 0;
  }
  100% {
    translate: 0px 0;
  }
}
.pagination {
  display: flex;
  margin: 0 0 1em 0;
  padding: 0;
}
.pagination li {
  list-style: none;
}
.pagination li a,
.pagination li span {
  display: block;
  position: relative;
  padding: 0.2em 0.7em 0.3em;
  margin-left: -1px;
  text-decoration: none;
  color: #3dafc7;
  background-color: white;
  border: 1px solid #E2E2E2;
}
.pagination li a:hover, .pagination li a:focus,
.pagination li span:hover,
.pagination li span:focus {
  color: white;
  background-color: #3dafc7;
}
.pagination .active a, .pagination .active a:hover, .pagination .active a:focus,
.pagination .active span,
.pagination .active span:hover,
.pagination .active span:focus {
  color: white;
  background-color: #3dafc7;
  cursor: default;
}
.pagination .disabled span,
.pagination .disabled span:hover,
.pagination .disabled span:focus,
.pagination .disabled a,
.pagination .disabled a:hover,
.pagination .disabled a:focus {
  color: #999;
  background-color: white;
}
.region-content-top .pagination {
  clear: both;
}

.status.pending {
  color: #00C7FF;
}
.status.active {
  color: green;
}
.status.blocked {
  color: #d83246;
}

.tooltip {
  padding: 0 2px;
  cursor: help;
}

:root {
  --inline-label-width: 40%;
}

fieldset,
details.fieldset {
  margin: 0 0 1em;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #E2E2E2;
}
fieldset fieldset,
details.fieldset fieldset {
  box-shadow: none;
}
fieldset > :last-child,
details.fieldset > :last-child {
  margin-bottom: 0;
}

fieldset legend,
details.fieldset > summary {
  margin-left: -0.5em;
  padding: 0.2em 0.5em;
  font-size: 22px;
  font-weight: 600;
  color: #3dafc7;
}

details > summary {
  cursor: pointer;
}

details.form-item {
  margin-bottom: 18px;
}
details.form-item summary {
  padding: 4px 1px;
}
details.form-item[open] > summary {
  margin-bottom: 0.4em;
}
details.form-item:not([open]) .hide-if-closed {
  display: none;
}

fieldset.form-group {
  padding: 0;
  margin-bottom: 2em;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
fieldset.form-group:not(:last-of-type) {
  padding-bottom: 1em;
  border-bottom: 1px solid #DDD;
}

.form-group:empty {
  display: none;
}

fieldset.no-styling {
  padding: 0;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}

select,
textarea,
input[type=text],
input[type=search],
input[type=password],
input[type=email],
input[type=tel],
input[type=file],
input[type=number],
input[type=url],
input[type=date] {
  display: block;
  padding: 0.6em;
  margin: 0;
  width: 100%;
  font-family: Arial, Helvetica, Verdana, sans-serif;
  font-size: 18px;
  color: #444;
  border-radius: 5px;
  border: 1px solid #E2E2E2;
}

textarea.form-control.code,
input.form-control.code {
  font-family: monospace;
  letter-spacing: 0.5px;
}

.fonts-loaded input,
.fonts-loaded select,
.fonts-loaded textarea,
.fonts-loaded button {
  font-family: Arial, Helvetica, Verdana, sans-serif;
}

input::-moz-placeholder {
  font-style: italic;
  color: #999;
}

input::placeholder {
  font-style: italic;
  color: #999;
}

select:focus,
textarea:focus,
input:focus {
  outline: none;
  box-shadow: 0 0 5px 1px #DDD;
}

label {
  display: block;
  margin-bottom: 0.5em;
  font-weight: 700;
}
label.required:after {
  content: " *";
  color: red;
}
label.required.no-required:after {
  content: none;
}

.form-item {
  margin-bottom: 18px;
}
.form-item.has-error textarea,
.form-item.has-error select,
.form-item.has-error input {
  border-color: #d83246;
}
.form-item.has-error textarea:focus,
.form-item.has-error select:focus,
.form-item.has-error input:focus {
  box-shadow: 0 0 5px #d83246;
}
.form-item .inline-error-notice {
  margin: 0.4em 0 0 0;
  font-size: 16px;
  color: #d83246;
  font-style: italic;
}

.form-group-toggler {
  margin-bottom: 1em;
}

@media print, (min-width: 800px) {
  fieldset {
    padding: 20px 20px;
  }

  details.fieldset {
    padding-left: 20px;
    padding-right: 20px;
  }

  .form-inline {
    font-size: 0;
  }
  .form-inline > * {
    font-size: 18px;
  }
  .form-inline select,
.form-inline textarea,
.form-inline input[type=text],
.form-inline input[type=password],
.form-inline input[type=email],
.form-inline input[type=tel],
.form-inline input[type=file],
.form-inline input[type=number],
.form-inline input[type=url],
.form-inline input[type=date] {
    display: inline-block;
    width: calc(100% - var(--inline-label-width));
    margin: 0;
    vertical-align: top;
  }
  .form-inline .chosen-container {
    width: calc(100% - var(--inline-label-width)) !important;
  }
  .form-inline.auto-width select,
.form-inline.auto-width textarea,
.form-inline.auto-width input[type=text],
.form-inline.auto-width input[type=password],
.form-inline.auto-width input[type=email],
.form-inline.auto-width input[type=tel],
.form-inline.auto-width input[type=file],
.form-inline.auto-width input[type=number],
.form-inline.auto-width input[type=url],
.form-inline.auto-width input[type=date] {
    width: auto;
  }
  .form-inline label {
    display: inline-block;
    width: var(--inline-label-width);
    padding-right: 0.5em;
    margin-bottom: 0;
    vertical-align: top;
  }
  .form-inline:not(.form-radios):not(.form-checkboxes):not(.form-checkbox):not(.form-static):not(.chosen) > label:first-child {
    padding-top: 0.5em;
  }
  .form-inline label + div.placeholder {
    margin-left: 0;
  }
  .form-inline.form-static > .form-control {
    display: inline-block;
    width: calc(100% - var(--inline-label-width));
  }
  .form-inline.form-item .inline-error-notice {
    margin-left: var(--inline-label-width);
  }
  .form-inline .form-inline-inline-widgets {
    display: inline-flex;
  }
  .form-inline .form-inline-inline-widgets .middle {
    align-self: center;
  }

  .form-group-toggler {
    margin-left: calc(var(--inline-label-width) - .25em);
  }
}
.help-block {
  display: block;
  font-size: 16px;
  color: #999;
}
.help-block:not(.form-control-static) {
  margin: 0.4em 0 0;
}
.help-block.date-format-help:not(.date-unsupported) {
  display: none;
}
.help-block.warning {
  color: orange;
}
.help-block.error {
  color: #d83246;
}

@media print, (min-width: 800px) {
  .form-inline .help-block:not(.form-control-static) {
    margin-left: var(--inline-label-width);
  }

  .form-inline .options-wrapper .help-block {
    margin-left: 0;
  }
}
input[type=file] {
  font-size: 16px;
}

@media print, (min-width: 800px) {
  .form-item.form-textarea label {
    vertical-align: top;
  }
}
option:disabled {
  background-color: #eee;
  color: #c00;
}

.form-radios > label:first-child,
.form-checkboxes > label:first-child {
  vertical-align: top;
}
.form-radios.inline-options > .options-wrapper > .form-option,
.form-checkboxes.inline-options > .options-wrapper > .form-option {
  display: inline-block;
}
.form-radios.inline-options > .options-wrapper > .form-option + .form-option,
.form-checkboxes.inline-options > .options-wrapper > .form-option + .form-option {
  margin-left: 1em;
}
.form-radios.two-cols-options > .options-wrapper,
.form-checkboxes.two-cols-options > .options-wrapper {
  -moz-columns: 2;
       columns: 2;
}
.form-radios.three-cols-options > .options-wrapper,
.form-checkboxes.three-cols-options > .options-wrapper {
  -moz-columns: 3;
       columns: 3;
}

input[type=radio] + label .meta,
input[type=checkbox] + label .meta {
  font-size: 0.8em;
}
input[type=radio] + label .finished,
input[type=checkbox] + label .finished {
  color: #1b9b59;
}
input[type=radio] + label .unavailable,
input[type=checkbox] + label .unavailable {
  color: #d83246;
}

.form-radios .form-option,
.form-checkboxes .form-option {
  display: block;
  margin-bottom: 0.2em;
}

td > .form-checkbox,
td > .form-checkbox > label {
  margin-bottom: 0;
}

.form-radios:not(.pretty).has-error input[type=radio] + label:before {
  background-position: 50% 87.9581151832%;
}
.form-radios:not(.pretty).has-error input[type=radio] :checked + label:before {
  background-position: 0 87.9581151832%;
}
.form-radios:not(.pretty) input[type=radio] {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
}
.form-radios:not(.pretty) input[type=radio] + label {
  display: inline-block;
  position: relative;
  width: auto;
  padding-left: 30px;
  padding-right: 0;
  cursor: pointer;
  font-weight: 400;
  vertical-align: middle;
}
.form-radios:not(.pretty) input[type=radio] + label:before {
  position: absolute;
  width: 22px;
  height: 22px;
  top: 3px;
  left: 0;
  content: "";
  background-image: url(/css/cache/icons-a0a93e28-educational_institution-6116.svg?_1747850527);
  background-repeat: no-repeat;
  background-size: 900%;
  background-position: 25% 87.9581151832%;
}
html[dir=rtl] .form-radios:not(.pretty) input[type=radio] + label {
  padding-left: 0;
  padding-right: 30px;
}
html[dir=rtl] .form-radios:not(.pretty) input[type=radio] + label:before {
  left: auto;
  right: 0;
}
.form-radios:not(.pretty) input[type=radio]:focus + label, .form-radios:not(.pretty) input[type=radio]:hover + label {
  color: #3dafc7;
}
.form-radios:not(.pretty) input[type=radio]:focus + label:before, .form-radios:not(.pretty) input[type=radio]:hover + label:before {
  background-position: 62.5% 87.9581151832%;
}
.form-radios:not(.pretty) input[type=radio]:disabled + label {
  color: #999;
  cursor: not-allowed;
}
.form-radios:not(.pretty) input[type=radio]:disabled + label:before {
  background-position: 12.5% 87.9581151832%;
}
.form-radios:not(.pretty) input[type=radio]:checked + label:before {
  background-position: 87.5% 62.8272251309%;
}
.form-radios:not(.pretty) input[type=radio]:checked:focus + label, .form-radios:not(.pretty) input[type=radio]:checked:hover + label {
  color: #3dafc7;
}
.form-radios:not(.pretty) input[type=radio]:checked:focus + label:before, .form-radios:not(.pretty) input[type=radio]:checked:hover + label:before {
  background-position: 12.5% 87.9581151832%;
}
.form-radios:not(.pretty) input[type=radio]:checked:disabled + label {
  color: #999;
  cursor: not-allowed;
}
.form-radios:not(.pretty) input[type=radio]:checked:disabled + label:before {
  background-position: 12.5% 87.9581151832%;
}

input[type=checkbox] {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}
input[type=checkbox] + label {
  display: inline-block;
  position: relative;
  width: auto;
  padding-left: 30px;
  cursor: pointer;
  font-weight: 400;
  vertical-align: middle;
}
input[type=checkbox] + label:before {
  position: absolute;
  width: 22px;
  height: 22px;
  top: 2px;
  left: 0;
  content: "";
  background-image: url(/css/cache/icons-a0a93e28-educational_institution-6116.svg?_1747850527);
  background-repeat: no-repeat;
  background-size: 900%;
  background-position: 25% 50.2617801047%;
}
.has-error input[type=checkbox] + label:before {
  background-position: 50% 50.2617801047%;
}
html[dir=rtl] input[type=checkbox] + label {
  padding-left: 0;
  padding-right: 30px;
}
html[dir=rtl] input[type=checkbox] + label:before {
  left: auto;
  right: 0;
}
input[type=checkbox]:focus + label, input[type=checkbox]:hover + label {
  color: #3dafc7;
}
input[type=checkbox]:focus + label:before, input[type=checkbox]:hover + label:before {
  background-position: 62.5% 0;
}
.hilited input[type=checkbox]:focus + label, .hilited input[type=checkbox]:hover + label {
  color: #3dafc7;
}
.hilited input[type=checkbox]:focus + label:before, .hilited input[type=checkbox]:hover + label:before {
  background-position: 62.5% 12.5654450262%;
}
input[type=checkbox]:disabled + label {
  color: #999;
  cursor: not-allowed;
}
input[type=checkbox]:disabled + label:before {
  background-position: 37.5% 50.2617801047%;
}
input[type=checkbox]:checked + label:before {
  background-position: 25% 37.6963350785%;
}
.has-error input[type=checkbox]:checked + label:before {
  background-position: 50% 0;
}
input[type=checkbox]:checked:focus + label, input[type=checkbox]:checked:hover + label {
  color: #3dafc7;
}
input[type=checkbox]:checked:focus + label:before, input[type=checkbox]:checked:hover + label:before {
  background-position: 50% 12.5654450262%;
}
.hilited input[type=checkbox]:checked:focus + label, .hilited input[type=checkbox]:checked:hover + label {
  color: #3dafc7;
}
.hilited input[type=checkbox]:checked:focus + label:before, .hilited input[type=checkbox]:checked:hover + label:before {
  background-position: 62.5% 25.1308900524%;
}
input[type=checkbox]:checked:disabled + label {
  color: #999;
  cursor: not-allowed;
}
input[type=checkbox]:checked:disabled + label:before {
  background-position: 37.5% 37.6963350785%;
}
input[type=checkbox]:indeterminate + label:before {
  background-position: 50% 25.1308900524%;
}
.has-error input[type=checkbox]:indeterminate + label:before {
  background-position: 0 50.2617801047%;
}
input[type=checkbox]:indeterminate:focus + label, input[type=checkbox]:indeterminate:hover + label {
  color: #3dafc7;
}
input[type=checkbox]:indeterminate:focus + label:before, input[type=checkbox]:indeterminate:hover + label:before {
  background-position: 12.5% 50.2617801047%;
}
input[type=checkbox]:indeterminate:disabled + label {
  color: #999;
  cursor: not-allowed;
}
input[type=checkbox]:indeterminate:disabled + label:before {
  background-position: 50% 37.6963350785%;
}

@media print, (min-width: 800px) {
  .form-inline .options-wrapper {
    display: inline-block;
    width: calc(100% - var(--inline-label-width));
  }
  .form-inline .options-wrapper > select {
    width: 100%;
  }

  .form-inline.auto-width .options-wrapper select {
    width: auto;
  }

  .form-checkbox.form-inline {
    display: inline-block;
    width: calc(100% - var(--inline-label-width));
    margin-left: var(--inline-label-width);
    margin-bottom: 18px;
  }
  .form-checkbox.form-inline > .help-block {
    margin-left: 0;
  }
}
.form-checkbox.no-label label,
.form-radios.no-label .form-option input[type=radio] + label {
  padding-left: 24px;
  text-indent: -999px;
  width: 0;
  overflow: hidden;
  text-align: left;
}
html[dir=rtl] .form-checkbox.no-label label,
html[dir=rtl] .form-radios.no-label .form-option input[type=radio] + label {
  text-align: right;
}

.form-submit button, .form-actions a {
  font-family: Arial, Helvetica, Verdana, sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.4);
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.form-submit button.disabled, .form-actions a.disabled, .form-submit button:disabled, .form-actions a:disabled {
  cursor: not-allowed;
  color: #999;
  text-shadow: none;
  background-color: #DDD;
}
.form-submit button.disabled:focus, .form-actions a.disabled:focus, .form-submit button.disabled:hover, .form-actions a.disabled:hover, .form-submit button:disabled:focus, .form-actions a:disabled:focus, .form-submit button:disabled:hover, .form-actions a:disabled:hover {
  background-color: #E2E2E2;
}

.form-actions {
  margin-bottom: 1.5em;
}
html.js .form-submit.auto-submit-hide {
  display: none;
}

.form-submit button {
  margin-right: 0.25em;
  padding: 0.73em 1.4em 0.75em;
  color: #fff;
  border-radius: 5px;
  background-color: #3dafc7;
}
.form-submit button:focus, .form-submit button:hover {
  background-color: #f99a1c;
}

.form-delete a {
  display: inline-block;
  padding: 0.8em 0;
  color: #3dafc7;
  background-color: white;
}
.form-delete a:focus, .form-delete a:hover {
  color: #8265a8;
  text-decoration: underline;
}

.form-group-toggle.toggle-inited.hide > .form-group-content {
  display: none;
}

@media print, (min-width: 800px) {
  .form-actions > * {
    display: inline-block;
    margin-bottom: 0;
    margin-inline-end: 0.5em;
  }
  .form-actions a,
.form-actions button {
    padding: 0.8em 1.4em;
  }

  label.toggle-less-options {
    padding-left: calc(var(--inline-label-width) - .25em);
  }

  input[type=checkbox] + label.toggle-more-options {
    padding-left: calc(var(--inline-label-width) - .25em);
  }
}
.actions a {
  display: block;
}
.actions a:not([class]) {
  text-decoration: none;
}
.actions a + a {
  margin: 1.4em 0 0 0;
}

@media print, (min-width: 800px) {
  .actions a {
    display: inline-block;
  }
  .actions a + a {
    margin: 0 0 0 1.4em;
  }
}
.form-search {
  margin-bottom: 18px;
  font-size: 0;
  text-align: right;
}
.form-search * {
  font-size: 18px;
}
.form-search .form-text label,
.form-search .form-select label {
  display: none;
}
.form-search .form-item,
.form-search .form-option,
.form-search .form-submit {
  display: inline-block;
  margin-bottom: 0;
  vertical-align: top;
}
.form-search .options-wrapper {
  width: auto;
}

.form-search.one-filter,
.form-search.with-filters {
  margin-bottom: 0.5em;
  text-align: left;
}
html[dir=rtl] .form-search.one-filter,
html[dir=rtl] .form-search.with-filters {
  text-align: right;
}
.form-search.one-filter .choice-small,
.form-search.with-filters .choice-small {
  max-width: 180px;
}
.form-search.one-filter .form-select,
.form-search.with-filters .form-select {
  width: auto;
  max-width: none;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
}
.form-search.one-filter select,
.form-search.with-filters select {
  width: 100%;
  padding-top: 0.3em;
  padding-bottom: 0.3em;
  font-weight: bold;
}
.form-search.one-filter select option,
.form-search.with-filters select option {
  font-weight: bold;
}

.form-search.with-filters .form-submit + .form-group {
  margin-top: 0.5em;
}
.form-search.with-filters .form-submit + .form-group .options-wrapper {
  width: auto;
}

.form-search.one-filter .form-submit + .form-select {
  display: block;
  margin-top: 0.5em;
}

@media print, (min-width: 800px) {
  .form-search.one-filter,
.form-search.with-filters {
    text-align: right;
  }
  html[dir=rtl] .form-search.one-filter,
html[dir=rtl] .form-search.with-filters {
    text-align: left;
  }
  .form-search.one-filter .form-select,
.form-search.with-filters .form-select {
    margin-right: 0;
    margin-left: 0.5em;
  }
  .form-search.one-filter select,
.form-search.with-filters select {
    max-width: 280px;
  }

  .form-search.with-filters .form-submit + .form-group {
    margin-top: 2em;
  }

  .form-search.one-filter .form-submit + .form-select {
    margin-top: 2em;
  }
}
.search-field {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 18px;
}
.search-field .form-item {
  width: calc(100% - 47px);
  max-width: 340px;
}
.search-field .form-item + .form-item {
  margin-left: 0.5em;
}
.search-field .form-item.form-checkbox {
  display: flex;
  align-items: center;
  width: auto;
  white-space: nowrap;
}
.search-field .form-item.form-checkbox > label {
  margin-bottom: 0;
}
.search-field .form-item input:not([type=checkbox]) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  min-height: 47px;
  width: 100%;
}
html[dir=rtl] .search-field .form-item input:not([type=checkbox]) {
  text-indent: 3px;
}
.search-field .form-submit {
  width: 47px;
}
.search-field button {
  position: relative;
  padding: 0;
  margin-right: 0;
  width: 47px;
  height: 47px;
  border-radius: 0 5px 5px 0;
  background-color: #E2E2E2;
  text-indent: -999px;
  overflow: hidden;
  border: none;
  cursor: pointer;
}
.search-field button:hover, .search-field button:focus {
  background-color: #CCC;
}
.search-field button:before {
  position: absolute;
  width: 25px;
  height: 25px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  background-image: url(/css/cache/icons-a0a93e28-educational_institution-6116.svg?_1747850527);
  background-repeat: no-repeat;
  background-size: 900%;
  background-position: 100% 25.1308900524%;
}

.form-per-page {
  margin-bottom: 1em;
}
.form-per-page label,
.form-per-page select {
  display: inline-block;
  width: auto;
  margin: 0 5px 0 0;
  vertical-align: middle;
}
.form-per-page select {
  padding-top: 0.2em;
  padding-bottom: 0.2em;
}
.form-per-page .form-item {
  margin-bottom: 0;
}
.form-per-page .options-wrapper {
  display: inline-block;
}

@media print, (min-width: 800px) {
  .per-page-and-paginator {
    display: flex;
    justify-content: space-between;
  }
  .per-page-and-paginator .pagination {
    margin-left: auto;
  }
}
.form-filters.search-fields {
  margin-bottom: 20px;
}
.form-filters.search-fields h2 {
  color: #f99a1c;
  margin-bottom: 20px;
}
.form-filters.search-fields fieldset {
  padding: 15px 20px;
}
.form-filters.search-fields ol, .form-filters.search-fields ul {
  padding: 0;
  margin: 0;
}
.form-filters.search-fields ul {
  list-style-type: none;
}
.form-filters.search-fields ul + input, .form-filters.search-fields ul ~ .search-icon {
  margin-top: 20px;
}
.form-filters.search-fields li {
  margin-top: 20px;
}
.form-filters.search-fields li:before {
  font-size: 24px;
  font-weight: 500;
  top: 50%;
  transform: translateY(-50%);
}
.form-filters.search-fields input[name=search] {
  width: calc(100% - 47px);
  border-radius: 5px 0 0 5px;
}
.form-filters.search-fields input[name=search],
.form-filters.search-fields .form-submit {
  float: left;
}

@media print, (min-width: 800px) {
  .form-filters.two-fieldsets {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 40px;
  }
  .form-filters.two-fieldsets fieldset {
    width: calc(50% - 20px);
  }
  .form-filters.two-fieldsets fieldset.filters {
    margin: 0;
    padding: 20px 30px;
  }
}
@media screen and (max-width: 799px) {
  .hide-on-mobile {
    display: none;
  }
}
@media screen and (min-width: 800px) {
  .hide-on-not-mobile {
    display: none;
  }
}
.prefer-nowrap {
  display: inline-block;
}

.deleted {
  text-decoration: line-through;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

h1 {
  margin-bottom: 1em;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  word-break: initial;
  word-wrap: break-word;
  -webkit-hyphens: auto;
          hyphens: auto;
}

.page-title {
  margin-bottom: 1em;
}
.page-title > h1 {
  margin-bottom: 0;
}
.page-title.with-suffix {
  margin-bottom: 0.5em;
}
.page-title.with-suffix > h1 {
  display: inline;
  margin-bottom: 0.5em;
}
html[dir=rtl] .page-title.with-suffix > h1 {
  float: right;
}

.title-buttons-right {
  float: right;
  text-align: right;
  padding-left: 2em;
  white-space: nowrap;
}
html[dir=rtl] .title-buttons-right {
  float: left;
  text-align: left;
  padding-left: 0;
  padding-right: 2em;
}

h2, h3 {
  margin-bottom: 0.5em;
  font-weight: 700;
  line-height: 1.3;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 20px;
}

p {
  margin: 0;
}
p:not([class]):not(:last-child) {
  margin-bottom: 1em;
}

code {
  letter-spacing: 0.5px;
}

hr {
  margin-top: 36px;
  margin-bottom: 36px;
  border-color: #DDD;
  border-style: solid;
  border-width: 0 0 1px 0;
}

a {
  color: #3dafc7;
  text-decoration: underline;
}
a:hover, a:focus {
  color: #8265a8;
}
a.external:hover:after, a.external:focus:after {
  opacity: 0.8;
}
a.external:after {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.25em;
  margin-top: -0.1em;
  width: 1em;
  height: 1em;
  content: "";
  background-image: url(/css/cache/icons-a0a93e28-educational_institution-6116.svg?_1747850527);
  background-repeat: no-repeat;
  background-size: 900%;
  background-position: 87.5% 12.5654450262%;
  opacity: 0.5;
}

.button--small,
.form-submit button.button--small, .button {
  display: inline-block;
  border: none;
  font-size: 18px;
  margin-right: 0.25em;
  margin-bottom: 0.45em;
  font-weight: 600;
  color: white;
  line-height: 1.2;
  text-decoration: none;
  border-radius: 5px;
  background-color: #3dafc7;
  cursor: pointer;
}
.button--small:focus,
.form-submit button.button--small:focus, .button:focus, .button--small:hover,
.form-submit button.button--small:hover, .button:hover {
  color: white;
  background-color: #f99a1c;
}
.disabled.button--small,
.form-submit button.disabled.button--small, .disabled.button, .button--small:disabled,
.form-submit button.button--small:disabled, .button:disabled {
  cursor: not-allowed;
  color: #999;
  text-shadow: none;
  background-color: #DDD;
}
.disabled.button--small:focus, .disabled.button:focus, .disabled.button--small:hover, .disabled.button:hover, .button--small:disabled:focus, .button:disabled:focus, .button--small:disabled:hover, .button:disabled:hover {
  background-color: #E2E2E2;
}

.button {
  padding: 0.73em 1.4em 0.75em;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.4);
  text-align: center;
}
.button.grey {
  color: #444;
  text-shadow: none;
  background-color: #CCC;
}
.button.grey:focus, .button.grey:hover {
  color: #FFF;
  background-color: #444;
}

.button--small,
.form-submit button.button--small {
  padding: 0.35em 1.2em;
}
.button--small.grey,
.form-submit button.button--small.grey {
  color: #444;
  background-color: #CCC;
}
.button--small.grey:focus, .button--small.grey:hover,
.form-submit button.button--small.grey:focus,
.form-submit button.button--small.grey:hover {
  color: #FFF;
  background-color: #444;
}

.button-primary-large {
  display: inline-block;
  padding: 0.65em 1.4em 0.63em;
  color: #FFF;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  text-decoration: none;
  border-radius: 5px;
  background-color: #3dafc7;
}
.button-primary-large:focus, .button-primary-large:hover {
  color: white;
  background-color: #8265a8;
}
.button-primary-large span {
  font-weight: bold;
}

button.loading {
  --moving-color: #8265a8;
  background-image: linear-gradient(120deg, transparent, transparent 30px, var(--moving-color) 30px, var(--moving-color) 80px, transparent 80px);
  background-position: 0px center;
  animation: loading 20s linear infinite;
}

button.loading:disabled {
  --moving-color: #999;
}

a.view-more,
label.view-more {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: #3dafc7;
  text-decoration: none;
  cursor: pointer;
}
a.view-more:hover, a.view-more:focus,
label.view-more:hover,
label.view-more:focus {
  color: #8265a8;
}
a.view-more:after,
label.view-more:after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  margin: calc(1em/2);
  width: calc(1em/2);
  height: calc(1em/2);
  border-right: 2px solid;
  border-bottom: 2px solid;
  transform: rotate(-45deg);
}
html[dir=rtl] a.view-more:after,
html[dir=rtl] label.view-more:after {
  transform: rotate(135deg);
}

a.back-to-results {
  position: relative;
  display: inline-block;
  padding-left: 1.75em;
  margin-bottom: 0.2em;
  font-weight: bold;
  text-decoration: none;
}
a.back-to-results:hover, a.back-to-results:focus {
  text-decoration: underline;
}
a.back-to-results:hover:before, a.back-to-results:focus:before {
  transform: translateX(0.25em);
}
a.back-to-results:before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.25em;
  height: 1.25em;
  margin-top: -0.625em;
  transition: transform 150ms ease-out;
  content: "";
  background-image: url(/css/cache/icons-a0a93e28-educational_institution-6116.svg?_1747850527);
  background-repeat: no-repeat;
  background-size: 900%;
  background-position: 0 25.1308900524%;
}
html[dir=rtl] a.back-to-results {
  padding-left: 0;
  padding-right: 1.75em;
}
html[dir=rtl] a.back-to-results:before {
  left: auto;
  right: 0;
  content: "";
  background-image: url(/css/cache/icons-a0a93e28-educational_institution-6116.svg?_1747850527);
  background-repeat: no-repeat;
  background-size: 900%;
  background-position: 37.5% 12.5654450262%;
}

.news-notification.desktop {
  display: none;
  align-self: center;
  margin-left: 10px;
}
.news-notification.mobile {
  align-self: center;
  margin-right: 25px;
}
.news-notification a, .news-notification img {
  display: block;
}
.news-notification a.unread {
  display: flex;
  color: white;
  font-weight: bold;
  text-decoration: none;
  --balloon: calc(94px / 3 - 4px);
}
.news-notification a.unread::after {
  content: " " attr(data-unread);
  margin-left: 6px;
  margin-top: 2px;
  height: var(--balloon);
  line-height: var(--balloon);
  width: var(--balloon);
  text-align: center;
  background-color: #3dafc7;
  border-radius: 20px;
}
.news-notification a:not(.unread) {
  filter: grayscale(1);
  opacity: 0.7;
}
.news-notification img {
  width: calc(124px / 3);
  height: calc(94px / 3);
}

@media print, (min-width: 800px) {
  .news-notification.desktop {
    display: block;
  }
}
.global-help.desktop {
  display: none;
  align-self: center;
  margin-right: 10px;
}
.global-help.mobile {
  align-self: center;
  margin-right: 15px;
}
.global-help.mobile span, .global-help.mobile img {
  display: block;
}
.global-help.mobile .help-tooltip {
  position: fixed;
  top: 50px;
  left: 20px;
  right: 20px;
}

@media print, (min-width: 800px) {
  .global-help.desktop {
    display: block;
  }
}
.help-line {
  white-space: nowrap;
}

.help-container {
  position: relative;
}
.help-container > .help-icon {
  cursor: pointer;
  vertical-align: middle;
  width: 26px;
}
.help-container > .help-tooltip {
  display: block;
  max-width: 100%;
  margin: 0.5em 0;
  text-align: left;
  font-size: 18px;
  background-color: #3dafc7;
  color: white;
  padding: 10px;
  border-radius: 2px;
  border: solid 2px white;
  white-space: normal;
  z-index: 89;
}
.help-container > .help-tooltip a {
  color: black;
}
.help-container[data-pos=left] > .help-tooltip {
  left: auto;
  right: calc(100% + 5px);
}
.page-title > .help-container {
  margin-left: 0.5em;
  vertical-align: text-bottom;
}
.block__formatted__title > .help-container, .list__title > .help-container {
  margin-left: 0.25em;
}
.search-field > .help-container {
  align-self: center;
  margin-right: 0.5em;
}
.user-controls .help-container {
  margin-right: 0.75em;
}
.form-search > .form-group > .help-container {
  margin-left: -0.25em;
  margin-right: 0.5em;
}
.load-employee-track-template-form .help-container {
  align-self: center;
  margin-left: 0.5em;
}

@media print, (min-width: 800px) {
  .help-container > .help-tooltip {
    position: absolute;
    left: calc(100% + 5px);
    top: 0;
    max-width: none;
    width: 350px;
  }
}
ul, ol {
  margin-top: 0;
}

h2 + ul {
  margin-top: -0.2em;
}

ol {
  counter-reset: li;
}
ol[data-start="0"] {
  counter-reset: li -1;
}
ol li {
  position: relative;
  list-style-type: none;
  padding-left: 2em;
}
ol li:before {
  position: absolute;
  left: 0;
  top: 0;
  content: counter(li) ". ";
  counter-increment: li;
}

.hilited {
  background-color: #3dafc7;
  color: white;
}
.hilited *,
.hilited *:hover,
.hilited *:focus {
  color: inherit;
}

.list {
  margin-bottom: 1.5em;
  border-radius: 5px;
  border: 1px solid #DDD;
}

.list__title {
  margin: 0;
  padding: 12px 20px;
  font-size: 22px;
  border-bottom: 1px solid #DDD;
}
.list__title.with-help {
  padding-bottom: 5px;
}
.list__title span {
  font-weight: normal;
  color: #999;
  white-space: nowrap;
}

.list__help {
  color: #999;
}

.list__header {
  margin: 0;
  padding: 12px 20px;
  border-bottom: 1px solid #DDD;
}
.list__header .list__title {
  display: inline-block;
  padding: 0;
  border: none;
}

.list__contents {
  padding: 0;
  margin: 0;
}
.list__contents a:not[class] {
  color: #444;
}
.list__contents a:not[class]:focus, .list__contents a:not[class]:hover {
  color: #3dafc7;
}
.list__contents > li {
  position: relative;
  list-style: none;
}
.list__contents > li.has-actions {
  padding-right: 30px;
}
html[dir=rtl] .list__contents > li.has-actions {
  padding-right: 20px;
  padding-left: 30px;
}
.list__contents > li:not(:last-child) {
  border-bottom: 1px solid #DDD;
}
.list__contents li[data-count] {
  padding-left: 50px;
}
.list__contents li[data-count]:before {
  top: 0.55em;
  left: 20px;
  content: attr(data-count);
}
.list__contents li[data-count] ol {
  margin-left: -50px;
}
html[dir=rtl] .list__contents li[data-count] {
  padding-left: 0;
  padding-right: 50px;
}
html[dir=rtl] .list__contents li[data-count]:before {
  left: auto;
  right: 20px;
}
html[dir=rtl] .list__contents li[data-count] ol {
  margin-left: 0;
  margin-right: -50px;
}

.list__contents > li,
div.list__contents {
  padding: 0.55em 20px;
}

.list__footer {
  padding: 0.75em 20px;
  border-top: 1px solid #DDD;
}
.list__footer .inline-blocks > * {
  display: inline-block;
}
.list__footer .inline-blocks.margined > * {
  margin-right: 1em;
}
.list__footer .form-per-page {
  margin-bottom: 0;
}

.list__contents .collapsible-processed .collapsible-container {
  display: none;
}
.list__contents .is-collapsible {
  padding: 0;
}
.list__contents .is-collapsible.visible .collapsible-container {
  display: block;
}
.list__contents .is-collapsible.visible .toggle-details {
  font-weight: 600;
  color: #FFF;
  text-decoration: none;
  background-color: #3dafc7;
  border-bottom-color: #3dafc7;
}
.list__contents .is-collapsible.visible .toggle-details:hover, .list__contents .is-collapsible.visible .toggle-details:focus {
  background-color: #8265a8;
  border-bottom-color: #8265a8;
}
.list__contents .is-collapsible.visible .toggle-details:after {
  background-position: 25% 75.3926701571%;
  transform: rotate(-180deg);
}
.list__contents .toggle-details {
  position: relative;
  display: block;
  padding: 0.55em 20px;
}
.list__contents .toggle-details:after {
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -16px;
  width: 32px;
  height: 32px;
  transition: transform 100ms ease-out;
  content: "";
  background-image: url(/css/cache/icons-a0a93e28-educational_institution-6116.svg?_1747850527);
  background-repeat: no-repeat;
  background-size: 900%;
  background-position: 12.5% 75.3926701571%;
}
html[dir=rtl] .list__contents .toggle-details:after {
  right: auto;
  left: 20px;
}

@media print, (min-width: 800px) {
  .list__title {
    padding-left: 30px;
    padding-right: 30px;
    font-size: 28px;
  }

  .list__contents > li,
div.list__contents {
    padding-left: 30px;
    padding-right: 30px;
  }
  .list__contents > li.has-actions,
div.list__contents.has-actions {
    padding-right: 40px;
  }
  html[dir=rtl] .list__contents > li.has-actions,
html[dir=rtl] div.list__contents.has-actions {
    padding-right: 30px;
    padding-left: 40px;
  }

  .list__contents li[data-count] {
    padding-left: 75px;
  }

  .list__contents li[data-count]:before {
    left: 30px;
  }

  .list__header,
.list__footer {
    padding-left: 30px;
    padding-right: 30px;
  }

  .list--split .list__contents {
    -moz-column-gap: 0;
         column-gap: 0;
    -moz-column-rule: 1px solid #DDD;
         column-rule: 1px solid #DDD;
    -moz-columns: 2;
         columns: 2;
  }
  .list--split .list__contents li {
    width: 100%;
    -moz-column-break-inside: avoid;
         break-inside: avoid;
  }
  .list--split .list__contents li.break {
    border-bottom: 0;
  }
  .list--split .list__contents li:last-child:nth-child(odd) {
    border-bottom: 1px solid #DDD;
  }

  .list__contents .toggle-details {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.dl-title {
  margin-bottom: 10px;
}

dl {
  margin: 0 0 20px 0;
}
dl .hide {
  display: none;
}
dl .hide + dd {
  display: block;
  width: 100%;
}
dl + dl {
  padding-top: 20px;
  border-top: 1px solid #DDD;
}

dt {
  font-weight: bold;
}

dd {
  margin: 0 0 0.5em 0;
}
dd > a:first-child:last-child {
  display: inline-block;
  white-space: nowrap;
  line-height: 1;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.def-list {
  margin: 0 0 20px 0;
}

.def-item {
  margin-bottom: 0.5em;
}

@media print, (min-width: 800px) {
  dl {
    font-size: 0;
  }

  dt,
dd {
    margin-bottom: 0.3em;
    vertical-align: top;
    font-size: 18px;
  }

  dt {
    display: inline-block;
    width: 30%;
  }
  dt + dd {
    display: inline-block;
    width: 70%;
  }

  dd {
    width: 100%;
  }

  .user.employee dt,
.user.employee dd {
    width: 50%;
    word-break: break-word;
    text-overflow: ellipsis;
  }

  .def-item {
    margin-bottom: 0.3em;
  }
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
}

video {
  max-width: 100%;
  height: auto;
  border: 0;
}

table + table {
  margin-top: 1.5em;
}

.table-wrapper {
  margin-bottom: 1.5em;
  border-radius: 5px;
  border: 1px solid #DDD;
  border-bottom-width: 2px;
}

.table-responsive {
  overflow-x: auto;
}

.table-title {
  padding: 0.5em;
  border-bottom: 1px solid #DDD;
}
.table-title.flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.table-title h2, .table-title h3 {
  margin: 0;
}
.table-title span {
  font-weight: normal;
  color: #999;
  white-space: nowrap;
}

.table-caption {
  margin-bottom: 0.5em;
  font-size: 20px;
  font-weight: bold;
  text-align: left;
  color: #3dafc7;
}
html[dir=rtl] .table-caption {
  text-align: right;
}

.table-filters,
.table-help {
  padding: 1em 20px;
  border-bottom: 1px solid #DDD;
}

.table-filters {
  text-align: right;
}
.table-filters label {
  display: none;
}
.table-filters .form-select {
  width: auto;
  max-width: none;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
}
.table-filters select {
  width: auto;
  padding-top: 0.3em;
  padding-bottom: 0.3em;
  font-weight: bold;
}
.table-filters select option {
  font-weight: bold;
}

.table-help > .table-filters {
  text-align: unset;
  float: right;
  padding: 0;
  border-bottom: 0;
}

.table-footer {
  padding: 0.5em 20px;
  border-top: 1px solid #DDD;
}
.table-footer .form-per-page {
  margin-bottom: 0;
}

.table-empty {
  padding: 0.4em 0.5em;
}

table:not(.pika-table):not(.ui-datepicker-calendar):not([role=presentation]) {
  width: 100%;
  border: 0;
  border-collapse: collapse;
}
table:not(.pika-table):not(.ui-datepicker-calendar):not([role=presentation]) thead tr {
  border-bottom: 1px solid #DDD;
}
table:not(.pika-table):not(.ui-datepicker-calendar):not([role=presentation]) tr:not(:last-child) {
  border-bottom: 1px solid #DDD;
}
table:not(.pika-table):not(.ui-datepicker-calendar):not([role=presentation]) th {
  color: #999;
  text-align: left;
}
html[dir=rtl] table:not(.pika-table):not(.ui-datepicker-calendar):not([role=presentation]) th {
  text-align: right;
}
table:not(.pika-table):not(.ui-datepicker-calendar):not([role=presentation]) th .sort-link {
  position: relative;
  color: inherit;
  text-decoration: none;
}
table:not(.pika-table):not(.ui-datepicker-calendar):not([role=presentation]) th a.sort-link:hover {
  text-decoration: underline;
}
table:not(.pika-table):not(.ui-datepicker-calendar):not([role=presentation]) th .sort-link.sort-active {
  color: #3dafc7;
  padding-right: 28px;
}
html[dir=rtl] table:not(.pika-table):not(.ui-datepicker-calendar):not([role=presentation]) th .sort-link.sort-active {
  padding-right: 0;
  padding-left: 28px;
}
table:not(.pika-table):not(.ui-datepicker-calendar):not([role=presentation]) th .sort-link.sort-active::after {
  position: absolute;
  right: 0;
  height: 25px;
  width: 25px;
  content: "";
  background-image: url(/css/cache/icons-a0a93e28-educational_institution-6116.svg?_1747850527);
  background-repeat: no-repeat;
  background-size: 900%;
  background-position: 75% 37.6963350785%;
  margin-left: 5px;
}
html[dir=rtl] table:not(.pika-table):not(.ui-datepicker-calendar):not([role=presentation]) th .sort-link.sort-active::after {
  right: auto;
  left: 0;
}
table:not(.pika-table):not(.ui-datepicker-calendar):not([role=presentation]) th .sort-link.sort-active-asc::after {
  background-position: 75% 62.8272251309%;
}
table:not(.pika-table):not(.ui-datepicker-calendar):not([role=presentation]) th,
table:not(.pika-table):not(.ui-datepicker-calendar):not([role=presentation]) td {
  padding: 0.4em 0.5em;
}
table:not(.pika-table):not(.ui-datepicker-calendar):not([role=presentation]) th.controls a:not(:last-child),
table:not(.pika-table):not(.ui-datepicker-calendar):not([role=presentation]) td.controls a:not(:last-child) {
  margin-right: 0.5em;
}
table:not(.pika-table):not(.ui-datepicker-calendar):not([role=presentation]) td {
  position: relative;
  vertical-align: top;
}
table:not(.pika-table):not(.ui-datepicker-calendar):not([role=presentation]) tr.child-row > td:first-child {
  padding-left: 3.2em;
}
table:not(.pika-table):not(.ui-datepicker-calendar):not([role=presentation]) tr.child-row > td:first-child:before {
  position: absolute;
  display: block;
  content: "";
  top: calc(50% - 5px);
  left: 1.5em;
  height: 8px;
  width: 1em;
  border-width: 0 0 1px 1px;
  border-color: #999;
  border-style: solid;
}

@media print, (min-width: 800px) {
  .table-caption {
    font-size: 24px;
  }

  .table-title {
    padding: 0.8em 1.2em;
    border-bottom: 1px solid #DDD;
  }

  .table-empty {
    padding: 0.5em 1.2em;
  }

  table:not(.pika-table):not(.ui-datepicker-calendar):not([role=presentation]) th:first-child,
table:not(.pika-table):not(.ui-datepicker-calendar):not([role=presentation]) td:first-child {
    padding-left: 1.2em;
  }
  table:not(.pika-table):not(.ui-datepicker-calendar):not([role=presentation]) th:last-child,
table:not(.pika-table):not(.ui-datepicker-calendar):not([role=presentation]) td:last-child {
    padding-right: 1.2em;
  }
}
th.email,
th.status-short,
td.status-short {
  white-space: nowrap;
}

td.email {
  word-break: break-all;
}

progress[value] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #3dafc7;
  border: none;
  background-color: #E2E2E2;
}

progress[value]::-webkit-progress-bar {
  background-color: #E2E2E2;
}

progress[value]::-webkit-progress-value {
  background-color: #3dafc7;
}

progress[value]::-moz-progress-bar {
  background-color: #3dafc7;
}

.hidden {
  display: none;
}

.fake-hidden {
  position: absolute;
  left: 0;
  top: -99px;
  width: 1px;
  height: 1px;
}

html.no-details-summary details, html.no-details-summary summary {
  display: block;
}
html.no-details-summary details > summary:before {
  content: "▼";
  margin-right: 0.5em;
}
html.no-details-summary details:not([open]) > :not(summary) {
  display: none;
}

html .chosen-container .chosen-results li {
  line-height: 1.3;
}

.block__formatted {
  margin-bottom: 1.5em;
  border-radius: 5px;
  border: 1px solid #DDD;
}

.block__formatted__title {
  margin-bottom: 0;
  padding: 0.5em 20px;
  font-size: 22px;
  border-bottom: 1px solid #DDD;
}
.block__formatted__title span {
  font-weight: normal;
  color: #999;
}

.block__formatted__contents {
  position: relative;
  padding: 1em 20px;
}

.block__formatted__footer {
  position: relative;
  padding: 0.75em 20px;
}
.block__formatted__footer a.button {
  margin-bottom: 0;
}

@media print, (min-width: 800px) {
  .block__formatted__title {
    padding-left: 30px;
    padding-right: 30px;
    font-size: 28px;
  }

  .block__formatted__contents,
.block__formatted__footer {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.popup-wrapper {
  display: none;
}
.popup-wrapper.show-popup {
  display: block;
}
.popup-wrapper > .popup {
  position: relative;
  background-color: #eee;
  border: solid 10px #3dafc7;
  padding: 10px;
  max-height: 90vh;
  overflow-y: auto;
}
.popup-wrapper > .popup > .close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 22px;
  height: 22px;
  text-indent: -9999px;
  overflow: hidden;
}
.popup-wrapper > .popup > .close:before {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: 0;
  content: "";
  background-image: url(/css/cache/icons-a0a93e28-educational_institution-6116.svg?_1747850527);
  background-repeat: no-repeat;
  background-size: 900%;
  background-position: 37.5% 25.1308900524%;
  background-position: 37.5% 25.1308900524%;
}

@media print, (min-width: 800px) {
  .popup-wrapper.show-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 112;
  }
  .popup-wrapper > .popup {
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 30px;
    z-index: 113;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 1050px;
  }
}
.region-inner {
  max-width: 1050px;
  margin: 0 auto;
}

.region__top {
  background-color: #EFEFEF;
}

.region__top__inner {
  position: relative;
  padding-top: 5px;
  padding-bottom: 5px;
  min-height: 60px;
}
.menu-visible .region__top__inner {
  padding-bottom: 0;
}
.region__top__inner .wrapper {
  position: relative;
  margin-left: 15px;
  margin-right: 15px;
  display: flex;
}

.site__logo {
  display: block;
  margin: 0 auto 0 0;
}
.site__logo a,
.site__logo img {
  display: block;
}
.site__logo.custom img {
  max-width: none;
}
.site__logo:not(.custom) {
  max-height: 70px;
}
.site__logo:not(.custom) img {
  width: auto;
  max-height: 50px;
  max-width: 200px;
}

body.page-clean .region__top__inner {
  justify-content: center;
}
body.page-clean .site__logo img {
  margin-left: 0;
  margin-right: auto;
}

.page-title .title-prefix {
  margin-bottom: 1.5em;
}
.page-title a:not(:last-of-type) {
  margin-right: 0.5em;
}

.region__content__inner {
  max-width: 1050px;
  margin: 0 auto;
  padding: 20px 15px;
}
body.content-extra-small .region__content__inner {
  max-width: 400px;
}
body.content-test-small .region__content__inner {
  max-width: 500px;
}
body.content-small .region__content__inner {
  max-width: 830px;
}
body.content-boxed .region__content__inner .page-content {
  padding: 10px;
  border: 1px solid #DDD;
  border-bottom-width: 2px;
  border-radius: 5px;
}

body.content-wide .region__top__inner,
body.content-wide .region__content__inner {
  max-width: 1400px;
}

.region-content-top .button {
  margin-bottom: 0.75em;
}
.region-content-top .button:last-of-type {
  margin-bottom: 1em;
}
.region-content-top .button ~ .button,
.region-content-top .prefer-nowrap ~ .prefer-nowrap {
  margin-left: 0.75em;
}

.region__footer {
  padding-bottom: 60px;
}

.region__footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  padding: 20px;
}
body.content-small .region__footer__inner {
  max-width: 760px;
}

figure.copyrights {
  display: inline-block;
  margin: 0;
}
figure.copyrights * {
  display: inline-block;
  vertical-align: middle;
}
figure.copyrights img {
  margin-right: 10px;
  max-width: 40px;
}

p.terms {
  display: inline-block;
  margin-right: 2em;
  color: #a1a1a1;
}

@media (min-width: 0) and (max-width: 799px) {
  .region__footer__inner {
    flex-direction: column-reverse;
    justify-content: center;
  }
  .region__footer__inner > *:not(:first-child) {
    margin-bottom: 20px;
  }
}
@media print, (min-width: 800px) {
  .region__top__inner {
    display: flex;
    align-items: center;
    padding: 0 10px;
    min-height: 80px;
    text-align: left;
  }
  .region__top__inner .wrapper {
    margin-left: 0;
    margin-right: 0;
  }

  .site__logo:not(.custom) img {
    max-height: 60px;
  }

  .menu {
    margin-left: 15px;
  }

  .region__content__inner {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  body.content-boxed .region__content__inner .page-content {
    padding: 20px;
  }
}
@media (min-width: 1050px) {
  body:not(.page-auth) .region__top {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
    border-bottom: solid 1px #ddd;
  }
}
@media (min-width: 1440px) {
  .region__top__inner,
.region__content__inner,
.region__footer__inner {
    padding-left: 0;
    padding-right: 0;
  }
}
figcaption,
figure,
main,
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

.nav--toggle {
  position: relative;
  align-self: center;
  padding: 0.45em 0 0.48em 2.1em;
  min-height: 2em;
  font-family: Arial, Helvetica, Verdana, sans-serif;
  font-size: 18px;
  color: #444;
  line-height: 1.1;
  border: none;
  background-color: transparent;
  cursor: pointer;
  outline: none;
}
.nav--toggle:hover, .nav--toggle:focus {
  color: #FFF;
  background-color: #f99a1c;
}
.nav--toggle:hover .icon-menu, .nav--toggle:focus .icon-menu {
  border-color: #FFF;
}
.nav--toggle span:not([class]) {
  margin-right: 0.5em;
}
.nav--toggle .icon-menu {
  position: absolute;
  top: 0.48em;
  left: 0.45em;
  display: inline-block;
  width: 20px;
  padding-top: 7px;
  margin-bottom: 13px;
  border-color: #444;
  border-style: solid;
  border-width: 0 0 3px 0;
}
.nav--toggle .icon-menu:before, .nav--toggle .icon-menu:after {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  right: 0;
  height: 3px;
  border-top-width: 3px;
  border-top-color: inherit;
  border-top-style: inherit;
  transition: transform 100ms ease-in;
}
.nav--toggle .icon-menu:before {
  top: 0;
}
.nav--toggle .icon-menu:after {
  bottom: -13px;
}
.nav--toggle.active .icon-menu {
  left: 0.6em;
  border-bottom: none;
}
.nav--toggle.active .icon-menu:before, .nav--toggle.active .icon-menu:after {
  transform-origin: left center;
}
.nav--toggle.active .icon-menu:before {
  transform: rotate(45deg);
}
.nav--toggle.active .icon-menu:after {
  transform: rotate(-45deg) translateX(1px) translateY(1px);
}

@media (min-width: 0) and (max-width: 340px) {
  .nav--toggle span:not([class]) {
    display: none;
    overflow: hidden;
  }
}
@media print, (min-width: 800px) {
  .nav--toggle,
.global-help.mobile,
.news-notification.mobile {
    display: none;
  }
}
.menu {
  display: none;
  padding-top: 10px;
  width: 100%;
}
.menu-visible .menu {
  display: block;
}

.menu__bar {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu__item {
  display: block;
  position: relative;
}
.menu__item.expandable > .menu__link {
  display: none;
}
.menu__item.hide {
  display: none;
}

.menu__link {
  display: block;
  padding: 10px 20px;
  color: #3dafc7;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.menu__link:focus, .menu__link:hover {
  color: inherit;
  background-color: #E2E2E2;
}
.menu__link:before {
  display: none;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  width: 6px;
}
.menu__link.active:before {
  display: inline-block;
  background-color: #3dafc7;
}
.menu__link:focus:before, .menu__link:hover:before {
  display: inline-block;
  background-color: #3dafc7;
}

@media print, (min-width: 800px) {
  .menu {
    display: block;
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    padding-top: 0;
  }
  .menu-visible .menu {
    display: inherit;
  }

  .menu__bar {
    display: flex;
    flex-flow: row wrap;
    flex: auto;
  }

  .expandable:hover > .expandable__target,
.expandable > a:focus + .expandable__target,
.expandable > .expandable__target.expanded {
    display: block;
    z-index: 5;
  }

  .expandable:focus-within > .expandable__target {
    display: block;
  }

  .click-expandable > .expandable__target.open {
    display: block;
  }

  .menu__item {
    display: flex;
    vertical-align: top;
  }
  .menu__item:not(:last-child) .menu__link {
    margin-right: 10px;
  }
  .menu__item.click-expandable > .menu__link, .menu__item.expandable > .menu__link {
    position: relative;
    display: flex;
    padding-right: 32px;
  }
  .menu__item.click-expandable > .menu__link:after, .menu__item.expandable > .menu__link:after {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 30px;
    height: 30px;
    margin-top: -13px;
    content: "";
    background-image: url(/css/cache/icons-a0a93e28-educational_institution-6116.svg?_1747850527);
    background-repeat: no-repeat;
    background-size: 900%;
    background-position: 0 75.3926701571%;
  }
  html[dir=rtl] .menu__item.click-expandable > .menu__link, html[dir=rtl] .menu__item.expandable > .menu__link {
    padding-right: 0;
    padding-left: 32px;
  }
  html[dir=rtl] .menu__item.click-expandable > .menu__link:after, html[dir=rtl] .menu__item.expandable > .menu__link:after {
    right: auto;
    left: 0;
  }
  .menu__item.click-expandable > .menu__link:focus, .menu__item.click-expandable > .menu__link:hover, .menu__item.expandable > .menu__link:focus, .menu__item.expandable > .menu__link:hover {
    background-color: transparent;
  }
  .menu__item.click-expandable:focus > .menu__link, .menu__item.click-expandable:hover > .menu__link, .menu__item.expandable:focus > .menu__link, .menu__item.expandable:hover > .menu__link {
    color: #8265a8;
  }
  .menu__item.active-trail > .menu__link:before {
    display: inline-block;
    background-color: #999;
  }
  .menu__item .expandable__target {
    display: none;
    position: absolute;
    bottom: 0;
    z-index: 99;
    transform: translateY(calc(100% - 10px));
    -ms-transform: translateY(100%) translateY(-10px);
  }
  .menu__item .expandable__target.admin__menu__wrapper {
    left: 0;
  }
  html[dir=rtl] .menu__item .expandable__target.admin__menu__wrapper {
    left: auto;
    right: 0;
  }
  .menu__item .expandable__target.admin__menu__wrapper > .menu__item {
    background-color: white;
  }
  .menu__item .expandable__target.profile__menu__wrapper {
    right: 0;
  }
  html[dir=rtl] .menu__item .expandable__target.profile__menu__wrapper {
    right: auto;
    left: 0;
  }
  .menu__item .expandable__target.menu__bar > .menu__item > .menu__link {
    height: 60px;
    width: 100%;
    margin-right: 0;
    padding-left: 16px;
  }
  .menu__item .expandable__target.menu__bar > .menu__item > .menu__link:hover, .menu__item .expandable__target.menu__bar > .menu__item > .menu__link:focus {
    background-color: #E2E2E2;
  }
  .menu__item .expandable__target.menu__bar > .menu__item > .menu__link:hover:before, .menu__item .expandable__target.menu__bar > .menu__item > .menu__link:focus:before {
    display: none;
  }
  .menu__item .expandable__target.menu__bar > .menu__item > .menu__link.active:before, .menu__item .expandable__target.menu__bar > .menu__item > .menu__link.active:hover:before, .menu__item .expandable__target.menu__bar > .menu__item > .menu__link.active:focus:before {
    display: block;
    top: 1px;
    left: 0;
    bottom: 0;
    right: auto;
    height: auto;
    width: 6px;
  }

  .menu__item .expandable__target .menu__item .expandable__target {
    left: 100%;
    transform: none;
    top: 0;
    bottom: auto;
  }

  .menu__item.expandable .menu__item.expandable > .menu__link:after {
    transform: rotate(-90deg);
  }

  .menu__link:not(.menu__link__button) {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 6px;
    height: 80px;
    color: #444;
  }
  .role-admin .menu__link:not(.menu__link__button) {
    height: 60px;
  }
  .menu__link:not(.menu__link__button):focus, .menu__link:not(.menu__link__button):hover {
    background-color: transparent;
  }
  .menu__link:not(.menu__link__button):before {
    top: auto;
    bottom: 0;
    left: 10px;
    right: 10px;
    height: 3px;
    width: auto;
  }
  .menu__link:not(.menu__link__button).active:before {
    background-color: #999;
  }
  .menu__link:not(.menu__link__button):focus:before, .menu__link:not(.menu__link__button):hover:before {
    background-color: #3dafc7;
  }
  .menu__link:not(.menu__link__button).icon.home {
    padding-left: 0;
    padding-right: 0;
    width: 32px;
    font-size: 0;
  }
  .menu__link:not(.menu__link__button).icon.home:before {
    display: none !important;
  }
  .menu__link:not(.menu__link__button).icon.home:focus:after, .menu__link:not(.menu__link__button).icon.home:hover:after {
    background-position: 50% 75.3926701571%;
  }
  .menu__link:not(.menu__link__button).icon.home:after {
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -16px;
    width: 32px;
    height: 32px;
    content: "";
    background-image: url(/css/cache/icons-a0a93e28-educational_institution-6116.svg?_1747850527);
    background-repeat: no-repeat;
    background-size: 900%;
    background-position: 37.5% 75.3926701571%;
  }
  .menu__link:not(.menu__link__button).login {
    color: #3dafc7;
  }

  .menu__item__button {
    align-items: center;
  }

  .menu__link__button {
    display: inline-block;
    padding-top: 8px;
    padding-bottom: 8px;
    color: #444;
    border-radius: 4px;
    border: 1px solid currentColor;
    background-color: transparent;
  }
  .menu__link__button:focus, .menu__link__button:hover {
    color: #3dafc7;
    background-color: inherit;
  }
  .menu__link__button:before {
    display: none !important;
  }
}
@media (pointer: coarse) and (min-width: 800px) {
  .secondary__menu .expandable .expandable__target,
.secondary__menu .menu__item.expandable > .menu__link:after {
    display: none !important;
  }
}
@media (hover: none) and (min-width: 800px) {
  .secondary__menu .expandable .expandable__target,
.secondary__menu .menu__item.expandable > .menu__link:after {
    display: none !important;
  }
}
.secondary__menu {
  margin-top: 1em;
}

@media print, (min-width: 800px) {
  .secondary__menu {
    margin: 0;
    flex-grow: 0;
    align-self: flex-end;
    justify-content: flex-end;
  }
}
.profile__link {
  display: none;
  color: #444;
}
.profile__link:focus, .profile__link:hover {
  color: #8265a8;
}
.profile__link img {
  margin-right: 10px;
}
html[dir=rtl] .profile__link img {
  margin-right: 0;
  margin-left: 10px;
}

@media print, (min-width: 800px) {
  .profile__link {
    display: block;
  }
}
.profile__menu__wrapper {
  background-color: #E2E2E2;
}

.profile__menu__content {
  min-width: 320px;
  padding: 15px 20px;
  font-size: 0;
  background-color: #FFF;
}
.profile__menu__content .left,
.profile__menu__content .right {
  display: inline-block;
  vertical-align: top;
  font-size: 18px;
}
.profile__menu__content .left {
  margin-right: 20px;
}
.profile__menu__content .profile-picture-link {
  display: block;
  width: auto;
}
.profile__menu__content a {
  display: inline-block;
}
.profile__menu__content .profile-name {
  margin-bottom: 0.75em;
  font-weight: bold;
}

.profile__menu__footer {
  padding: 15px;
}
.profile__menu__footer .button--small {
  margin: 0;
}
.profile__menu__footer .button--small.right {
  float: right;
}

@media (min-width: 0) and (max-width: 480px) {
  .profile__menu__content .left {
    margin-right: 10px;
    width: 25%;
  }
  .profile__menu__content .right {
    width: 70%;
  }
}
@media print, (min-width: 800px) {
  .profile__menu__wrapper,
.admin__menu__wrapper {
    padding: 2px;
    border-radius: 4px;
    background-color: #EFEFEF;
    filter: drop-shadow(1px 1px 0px rgba(0, 0, 0, 0.15));
  }

  .profile__menu__content {
    padding: 15px;
    border-radius: 3px;
  }
  .profile__menu__content .left {
    width: calc(35% - 20px);
  }
  .profile__menu__content .right {
    float: right;
    width: 65%;
  }
}
.message {
  position: relative;
  margin-bottom: 1em;
  padding: 0.8em 1em 0.9em;
  border-radius: 4px;
}
.message + .message {
  margin-top: -0.5em;
}
.message ul {
  padding: 0;
  margin: 0;
}
.message ul li {
  margin-left: 1.2em;
}
.message ul li:first-child:last-child {
  margin-left: 0;
  list-style: none;
}

.message-label {
  font-size: 18px;
}

.message.error {
  color: #d83246;
  background-color: #f8dee1;
}

.message.warning {
  color: #8265a8;
  background-color: #fff5eb;
}

.message.status {
  background-color: #f4406d;
}

.message.success {
  color: #1b9b59;
  background-color: #edf7f2;
}

@media print, (min-width: 800px) {
  .message.error {
    padding-left: 2.8em;
  }
  .message.error:before {
    position: absolute;
    top: 0.7em;
    left: 0.7em;
    content: "";
    width: 1.5em;
    height: 1.5em;
    content: "";
    background-image: url(/css/cache/icons-a0a93e28-educational_institution-6116.svg?_1747850527);
    background-repeat: no-repeat;
    background-size: 900%;
    background-position: 75% 25.1308900524%;
  }

  .message.warning {
    padding-left: 2.8em;
  }
  .message.warning:before {
    position: absolute;
    top: 0.7em;
    left: 0.7em;
    content: "";
    width: 1.5em;
    height: 1.5em;
    content: "";
    background-image: url(/css/cache/icons-a0a93e28-educational_institution-6116.svg?_1747850527);
    background-repeat: no-repeat;
    background-size: 900%;
    background-position: 100% 62.8272251309%;
  }

  .message.success {
    padding-left: 2.8em;
  }
  .message.success:before {
    position: absolute;
    top: 0.7em;
    left: 0.7em;
    content: "";
    width: 1.5em;
    height: 1.5em;
    content: "";
    background-image: url(/css/cache/icons-a0a93e28-educational_institution-6116.svg?_1747850527);
    background-repeat: no-repeat;
    background-size: 900%;
    background-position: 12.5% 37.6963350785%;
  }
}
.language {
  position: relative;
  padding-left: 35px;
}
.language:before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  width: 24px;
  height: 18px;
  margin-right: 0.7em;
  border-radius: 2px;
  box-shadow: 0 0 2px 0 #444;
  background-size: contain;
  background-repeat: no-repeat;
}

.language-ace:before {
  background-image: url(../../svg/flags/ace.svg);
}

.language-ar:before {
  background-image: url(../../svg/flags/ar.svg);
}

.language-az:before {
  background-image: url(../../svg/flags/az.svg);
}

.language-bg:before {
  background-image: url(../../svg/flags/bg.svg);
}

.language-bs:before {
  background-image: url(../../svg/flags/bs.svg);
}

.language-ca:before {
  background-image: url(../../svg/flags/ca.svg);
}

.language-da:before {
  background-image: url(../../svg/flags/da.svg);
}

.language-de:before {
  background-image: url(../../svg/flags/de.svg);
}

.language-el:before {
  background-image: url(../../svg/flags/el.svg);
}

.language-en:before {
  background-image: url(../../svg/flags/en.svg);
}

.language-eo:before {
  background-image: url(../../svg/flags/eo.svg);
}

.language-es:before {
  background-image: url(../../svg/flags/es.svg);
}

.language-fa:before {
  background-image: url(../../svg/flags/fa.svg);
}

.language-fi:before {
  background-image: url(../../svg/flags/fi.svg);
}

.language-fr:before {
  background-image: url(../../svg/flags/fr.svg);
}

.language-fy:before {
  background-image: url(../../svg/flags/fy.svg);
}

.language-hr:before {
  background-image: url(../../svg/flags/hr.svg);
}

.language-hu:before {
  background-image: url(../../svg/flags/hu.svg);
}

.language-id:before {
  background-image: url(../../svg/flags/id.svg);
}

.language-it:before {
  background-image: url(../../svg/flags/it.svg);
}

.language-lv:before {
  background-image: url(../../svg/flags/lv.svg);
}

.language-mk:before {
  background-image: url(../../svg/flags/mk.svg);
}

.language-nl:before {
  background-image: url(../../svg/flags/nl.svg);
}

.language-nl-vl:before {
  background-image: url(../../svg/flags/nl-vl.svg);
}

.language-nn:before {
  background-image: url(../../svg/flags/nn.svg);
}

.language-pap:before {
  background-image: url(../../svg/flags/pap.svg);
}

.language-pl:before {
  background-image: url(../../svg/flags/pl.svg);
}

.language-prs:before {
  background-image: url(../../svg/flags/prs.svg);
}

.language-pt:before {
  background-image: url(../../svg/flags/pt.svg);
}

.language-ro:before {
  background-image: url(../../svg/flags/ro.svg);
}

.language-ru:before {
  background-image: url(../../svg/flags/ru.svg);
}

.language-sr-Latn:before {
  background-image: url(../../svg/flags/sr-Latn.svg);
}

.language-sv:before {
  background-image: url(../../svg/flags/sv.svg);
}

.language-tir:before {
  background-image: url(../../svg/flags/tir.svg);
}

.language-tr:before {
  background-image: url(../../svg/flags/tr.svg);
}

.language-uk:before {
  background-image: url(../../svg/flags/uk.svg);
}

.language-zh:before {
  background-image: url(../../svg/flags/zh.svg);
}

.language__switcher {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.language__choose {
  color: #444;
  text-decoration: none;
}
.language__choose:focus, .language__choose:hover {
  color: inherit;
}

.current-language {
  position: relative;
  display: inline-block;
  line-height: 20px;
}
.current-language > a {
  display: block;
  padding-top: 5px;
  padding-bottom: 5px;
}
.current-language > * {
  vertical-align: top;
}

.language__list {
  display: inline-block;
  margin: 0;
  padding: 0;
  width: 100%;
  list-style: none;
  text-align: left;
}
.language__list > * {
  position: relative;
}
.language__list > * > * {
  display: block;
  text-decoration: none;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #000;
}
.language__list > * > *:hover, .language__list > * > *:focus {
  text-decoration: underline;
  color: #3dafc7;
}

@media print, (min-width: 800px) {
  .language__switcher {
    display: inline-block;
  }

  .language__choose:focus, .language__choose:hover {
    color: #8265a8;
  }

  .language__switcher:focus-within .language__list {
    display: block;
  }

  .current-language {
    padding-right: 20px;
    cursor: pointer;
  }
  .current-language:focus .language__list, .current-language:hover .language__list {
    display: block;
  }
  .current-language:after {
    position: absolute;
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
    right: 0;
    width: 18px;
    height: 18px;
    content: "";
    background-image: url(/css/cache/icons-a0a93e28-educational_institution-6116.svg?_1747850527);
    background-repeat: no-repeat;
    background-size: 900%;
    background-position: 75% 62.8272251309%;
  }

  .language__list {
    display: none;
    position: absolute;
    left: 0;
    padding: 0.5em 0 0 0;
    background-color: #FFF;
  }
  .language__list .language:after {
    display: none;
  }
  .language__list:target {
    display: block;
  }
}
.background-wrapper {
  position: relative;
  margin-left: -15px;
  margin-right: -15px;
  width: calc(100% + 30px);
  background-color: #3dafc7;
}
.background-wrapper * {
  position: relative;
  z-index: 2;
  color: #FFF;
}
.background-wrapper h1,
.background-wrapper h2 {
  line-height: 1.1;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.6);
}
.background-wrapper span {
  text-shadow: none;
}

.header h2 {
  margin-bottom: 1.25em;
  font-size: 24px;
  font-weight: normal;
}
.header h2 span {
  display: inline-block;
  padding: 0.1em 0.25em;
  font-weight: 600;
  color: #3dafc7;
  background-color: #FFF;
  border-radius: 5px;
}
.header .button-primary-large {
  position: relative;
  padding-right: 3.5em;
}
.error .header .button-primary-large {
  padding-right: 1.5em;
}
.header .button-primary-large:after {
  display: block;
  position: absolute;
  top: 50%;
  right: 1.25em;
  margin-top: -0.8em;
  width: 1.6em;
  height: 1.6em;
  transition: transform 120ms ease-out;
  content: "";
  background-image: url(/css/cache/icons-a0a93e28-educational_institution-6116.svg?_1747850527);
  background-repeat: no-repeat;
  background-size: 900%;
  background-position: 100% 12.5654450262%;
}
.error .header .button-primary-large:after {
  content: none;
}
.header .button-primary-large:hover:after, .header .button-primary-large:focus:after {
  transform: rotate(15deg);
}

.header-small {
  margin-bottom: 2em;
  text-align: center;
}
.header-small .background-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.25em 1em;
  margin-bottom: 0.75em;
  min-height: 200px;
  align-items: center;
  background-image: url(../../images/theme/front-background-mobile.jpg);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
}
.header-small h1 {
  width: 100%;
  margin-bottom: 1.5rem;
  font-size: 32px;
  font-weight: 600;
}
.header-small h2 {
  margin-bottom: 1.5rem;
  font-size: 24px;
  line-height: 1.3;
}
.header-small h2 span {
  line-height: 1;
}
.header-small .button-primary-large {
  margin-bottom: 0.5em;
  margin-right: 0.5em;
}

.header-large {
  display: none;
  margin-bottom: 40px;
}
.header-large h1 {
  width: 100%;
  margin-bottom: 1.5rem;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.1;
}
.header-large h2 {
  width: 100%;
  margin-bottom: 1.5rem;
  font-size: 32px;
  font-weight: normal;
}
.header-large h2 span {
  display: inline-block;
  padding: 0.1em 0.25em;
  font-weight: 600;
  color: #3dafc7;
  background-color: #FFF;
  border-radius: 5px;
}
.header-large .button-primary-large {
  align-self: flex-end;
  margin-bottom: 0.5em;
  margin-right: 0.5em;
  font-size: 24px;
  box-shadow: 2px 2px 3px 1px rgba(0, 0, 0, 0.5);
}
.header-large .background-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  min-height: 400px;
  padding: 40px 25% 40px 5%;
  background-image: url(../../images/theme/front-background.jpg);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
}
.error .header-large .background-wrapper {
  background-position: top right;
}

.frontpage .col {
  padding: 1em;
  margin-bottom: 1em;
  border-radius: 5px;
  border: 1px solid #DDD;
}
.frontpage .col h2 {
  margin-bottom: 0.75em;
}
.frontpage .col h2.suptitle {
  margin-bottom: 10px;
  color: #3dafc7;
}
.frontpage .col-1 a:not([class]) {
  font-weight: 600;
}
.frontpage .col-3 > h2 {
  color: #3dafc7;
}
.frontpage .search-links {
  margin-bottom: 1em;
}

.search-links {
  display: flex;
  flex-flow: wrap;
}

.button-search {
  position: relative;
  flex: 1 1 auto;
  padding-left: 3em;
  padding-right: 1em;
  font-weight: bold;
  line-height: 1.2;
  text-decoration: none;
}
html[dir=rtl] .button-search {
  padding-left: 1em;
  padding-right: 3em;
}
.button-search:not(:last-child) {
  margin-bottom: 1.25em;
}
.button-search:last-child {
  flex-grow: 2;
}
.button-search:focus:before, .button-search:hover:before {
  transform: scale(1.1);
  opacity: 0.8;
}
.button-search:before {
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 100ms ease-out, opacity 50ms ease-out;
  content: "";
  background-image: url(/png/icons-1722336768235.png);
  background-position: 0px -40px;
  width: 40px;
  height: 40px;
}
html[dir=rtl] .button-search:before {
  left: auto;
  right: 0;
}
.button-search .label {
  text-decoration: underline;
}
.button-search .description {
  display: block;
  margin-top: 0.2em;
  font-size: 16px;
  font-weight: normal;
  color: #444;
}
.button-search.sector:before {
  background-position: 0px 0px;
}
.button-search.smart:before {
  background-position: -40px 0px;
}
.button-search.anon-study:before {
  background-position: -80px -40px;
}
.button-search.anon-swipe:before {
  background-position: 0px -80px;
}
.button-search.study-cube8:before {
  background-position: -80px 0px;
}

.login-form .form-actions {
  margin-bottom: 0;
}
.login-form .form-actions a {
  margin: 0;
  padding: 0.25em 0;
  color: #444;
  font-weight: normal;
  text-decoration: underline;
}
.login-form .form-actions a:focus, .login-form .form-actions a:hover {
  color: #3dafc7;
}
.login-form .form-submit {
  display: inline-block;
  margin-right: 1em;
  margin-bottom: 0.5em;
  margin-left: 0;
}

@media (min-width: 0) and (max-width: 799px) {
  .frontpage .region__content__inner {
    padding-top: 0;
  }
}
@media print, (min-width: 800px) {
  .header-small {
    display: none;
  }

  .header-large {
    display: block;
  }

  .background-wrapper {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    border-radius: 5px;
  }

  .frontpage .rows {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .frontpage .col {
    padding: 25px 20px;
    width: calc((100%/3) - 20px);
  }
  .frontpage .col:not(:first-child) {
    margin-left: 30px;
  }
  .frontpage .col h2 {
    min-height: 2.25em;
  }
  .frontpage .col h2.suptitle {
    min-height: 0;
  }

  .button-search:not(:last-child) {
    margin-bottom: 0.9em;
  }
}
@media (min-width: 1100px) {
  .header-large h1 {
    font-size: 58px;
  }
  .header-large .background-wrapper {
    margin-left: -25px;
    margin-right: -25px;
    width: calc(100% + 50px);
    padding: 50px 40% 60px 10%;
  }
  .header-large.custom .background-wrapper {
    padding: 50px 10% 60px 10%;
  }
}
.page-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.page-row > * {
  width: calc((100% - 60px) / 3);
}
.page-row.parts-2 > * {
  width: calc((100% - 60px) / 2);
}
.page-row > .width-2 {
  width: calc((100% - 60px) / 3 * 2 + 30px);
}
.page-row > .border {
  border-radius: 5px;
  border: solid 1px #ddd;
  padding: 20px;
}
.page-row h2 {
  margin-bottom: 10px;
  color: #3dafc7;
}

ul.news span.date {
  font-size: 85%;
  color: #999;
}

body.news .page-title > span.date {
  color: #999;
}

.page-auth .region__top {
  padding-top: 10px;
  background-color: transparent;
}
.page-auth .site__logo {
  margin: 0 auto;
  max-height: none;
}
.page-auth .site__logo img {
  margin: 0 auto;
  max-width: 150px;
  max-height: 150px;
}
.page-auth .region__content__inner {
  padding-top: 10px;
  padding-bottom: 20px;
}
.page-auth .page-content {
  padding: 20px 15px;
  border: 1px solid #DDD;
  border-bottom-width: 2px;
  border-radius: 5px;
}
.page-auth .reset-password-link {
  padding-left: 0;
  padding-right: 0;
  margin-right: 0;
}
.page-auth .region__footer__inner {
  display: block;
  text-align: center;
}

@media print, (min-width: 800px) {
  .page-auth .region__top {
    padding-top: 20px;
  }
  .page-auth .region__content__inner {
    padding-top: 30px;
    padding-bottom: 40px;
  }
}
a.portal-banner {
  display: block;
  text-align: center;
  margin: 40px 0;
}
a.portal-banner img {
  display: block;
  margin: 0 auto;
}

img.portal-banner {
  display: block;
  margin: 40px auto;
}

.smart-search h1 {
  margin-bottom: 0.6em;
}
.smart-search .page-content p {
  margin-bottom: 1.5em;
}

.smart-search-form > div {
  margin-bottom: 15px;
}
.smart-search-form .form-select {
  padding: 15px;
  border-radius: 5px;
  border: 1px solid #E2E2E2;
}
.smart-search-form .form-select > label {
  font-weight: bold;
  font-size: 24px;
  color: #3dafc7;
}
.smart-search-form .form-checkbox label {
  margin-bottom: 0;
}

@media print, (min-width: 800px) {
  .smart-search-form {
    display: flex;
    flex-wrap: wrap;
  }
  .smart-search-form > div {
    margin-bottom: 30px;
    width: calc(50% - 15px);
  }
  .smart-search-form > div:nth-child(odd) {
    margin-right: 30px;
  }
  .smart-search-form .form-select {
    padding: 30px;
  }
  .smart-search-form .form-submit {
    display: flex;
    align-items: flex-end;
  }
  .smart-search-form button {
    display: block;
    width: 100%;
  }
}
@media (min-width: 1050px) {
  .smart-search-form > div {
    width: calc(33.33% - 20px);
  }
  .smart-search-form > div:nth-child(odd) {
    margin-right: 0;
  }
  .smart-search-form > div:not(:nth-child(3n)) {
    margin-right: 30px;
  }
}
body.search tr > .costs {
  text-align: center !important;
}
body.search tr > .stap {
  text-align: right;
}

.course-costs {
  display: inline-block;
  width: 4.5em;
  text-align: center;
}
.course-costs.free {
  background-color: #3dafc7;
  color: white;
  font-weight: bold;
  border-radius: 5px;
  font-size: 110%;
  transform: scale(1.1);
}
.list__contents .is-collapsible.visible .toggle-details .course-costs.free {
  background-color: white;
  color: black;
}

.stap-badge {
  display: inline-block;
  font-weight: bold;
  color: #3dafc7;
  transform: scale(1.1);
}

h1 .logout-button {
  display: none;
  margin-left: 1em;
}

@media (pointer: coarse) and (min-width: 800px) {
  h1 .logout-button {
    display: inline-block;
    font-size: 18px;
  }
}
@media (hover: none) and (min-width: 800px) {
  h1 .logout-button {
    display: inline-block;
    font-size: 18px;
  }
}
.profile-picture {
  border-radius: 50%;
}

.profile-wrapper {
  margin-bottom: 1em;
}
.profile-wrapper .profile-picture-holder {
  text-align: center;
}
.profile-wrapper .profile-picture {
  display: inline-block;
  max-width: 80px;
}
.profile-wrapper .profile-info {
  display: block;
}
.profile-wrapper h1 {
  margin-bottom: 0.5em;
  text-align: center;
}

@media (min-width: 480px) {
  .profile-wrapper {
    margin-bottom: 2em;
  }
  .profile-wrapper .profile-picture-holder {
    float: left;
    margin-right: 2em;
    margin-bottom: 1em;
    text-align: left;
  }
  html[dir=rtl] .profile-wrapper .profile-picture-holder {
    float: right;
    margin-right: 0;
    margin-left: 2em;
  }
  .profile-wrapper .profile-picture {
    max-width: 100%;
  }
  .profile-wrapper .profile-info {
    width: calc(100% - 120px - 2em);
    float: left;
  }
  html[dir=rtl] .profile-wrapper .profile-info {
    float: right;
  }
  .profile-wrapper h1 {
    text-align: left;
  }
  html[dir=rtl] .profile-wrapper h1 {
    text-align: right;
  }
}
@media print, (min-width: 800px) {
  .user-profile .region__content__inner {
    padding-top: 40px;
  }
}
.impersonate__form .form-control {
  font-weight: 600;
  line-height: 1.2;
}
.profile-wrapper .impersonate__form {
  display: inline-block;
}
.profile-wrapper .impersonate__form .form-submit {
  display: inline-block;
}
.profile__menu__footer .impersonate__form {
  margin-top: 0.5em;
}
.profile__menu__footer .impersonate__form .form-control {
  padding: 0.3em 1.2em;
}

.connect-professional-form .form-select > .control-label {
  display: none;
}

.list.clients li * {
  display: inline-block;
  vertical-align: middle;
}
.list.clients li *:first-child {
  margin-right: 15px;
}

.create-user-report-full-form .form-actions > .first-template-field {
  margin-inline-start: 3em;
}

body.test-finish .region__content__inner,
body.test-finish .test-finish-anonymous,
body.test-instruction .region__content__inner,
body.test-instruction .test-finish-anonymous {
  padding-top: 35px;
}

body.test-questions .region__top__inner {
  display: flex;
  align-items: center;
  padding: 0;
}

@media print, (min-width: 800px) {
  body.test-finish .region__content__inner,
body.test-finish .test-finish-anonymous,
body.test-instruction .region__content__inner,
body.test-instruction .test-finish-anonymous {
    padding-top: 70px;
  }

  .test-finish-anonymous h2 {
    font-size: 30px;
  }

  body.tests .region__content__inner {
    font-size: 20px;
  }
  body.tests h1 {
    font-size: 36px;
  }
}
.during-test-instruction-toggle {
  position: absolute;
  right: 15px;
  top: 23px;
  padding: 0;
  margin: 0;
  font-weight: normal;
  color: #444;
  text-decoration: none;
  text-align: right;
  line-height: 24px;
  background-color: transparent;
  text-shadow: none;
}
body.with-pause .during-test-instruction-toggle {
  right: 140px;
}
.during-test-instruction-toggle:focus, .during-test-instruction-toggle:hover {
  color: #3dafc7;
  background-color: transparent;
}

.during-test-instruction {
  margin-bottom: 1em;
}

@media print, (min-width: 800px) {
  .during-test-instruction {
    margin-bottom: 0;
  }
}
.question-progress {
  padding-left: 15px;
  flex: auto;
}

.question-progress-bar {
  flex: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 10px;
  background-color: #E2E2E2;
}

body:not(.with-progress) .question-progress,
body:not(.with-progress) .question-progress-bar,
.question-progress .questions {
  display: none;
}

@media (min-width: 800px) {
  .question-progress .questions {
    display: inline;
  }
}
.question-pause-wrapper {
  position: fixed;
  top: 23px;
  right: 15px;
  z-index: 999;
  max-width: 610px;
  text-align: right;
}
html[dir=rtl] .question-pause-wrapper {
  right: auto;
  left: 15px;
}
.question-pause-wrapper .question-pause {
  position: relative;
  display: block;
  padding: 0 30px 0 0;
  margin: 0;
  font-weight: normal;
  color: #444;
  text-decoration: none;
  text-align: right;
  line-height: 24px;
  background-color: transparent;
  text-shadow: none;
}
.question-pause-wrapper .question-pause:focus, .question-pause-wrapper .question-pause:hover {
  color: #3dafc7;
  background-color: transparent;
}
.question-pause-wrapper .question-pause:focus:after, .question-pause-wrapper .question-pause:hover:after {
  opacity: 0.6;
}
.question-pause-wrapper .question-pause:after {
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  width: 24px;
  height: 24px;
  opacity: 0.45;
  content: "";
  background-image: url(/css/cache/icons-a0a93e28-educational_institution-6116.svg?_1747850527);
  background-repeat: no-repeat;
  background-size: 900%;
  background-position: 37.5% 25.1308900524%;
}

@media print, (min-width: 800px) {
  .question-pause-wrapper {
    top: 23px;
  }
}
@media (min-width: 1050px) {
  .question-pause-wrapper {
    right: calc((100% - 1020px) / 2);
  }
  html[dir=rtl] .question-pause-wrapper {
    left: calc((100% - 1020px) / 2);
  }
}
.test-description,
.test-finish-description,
.test-duration,
.form-test-example {
  margin-bottom: 2.2em;
}

.test-finish-description {
  line-height: 1.6;
}

.test-duration {
  position: relative;
  padding-left: 40px;
}
.test-duration:before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 26px;
  height: 26px;
  margin-top: -12px;
  content: "";
  background-image: url(/css/cache/icons-a0a93e28-educational_institution-6116.svg?_1747850527);
  background-repeat: no-repeat;
  background-size: 900%;
  background-position: 0 0;
}
html[dir=rtl] .test-duration {
  padding-left: 0;
  padding-right: 40px;
}
html[dir=rtl] .test-duration:before {
  left: auto;
  right: 0;
}

body.test-questions .region__top {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  border-bottom: solid 1px #ddd;
}
body.test-questions .region__top__inner {
  min-height: 70px;
  height: 70px;
  align-content: space-between;
}
body.test-questions.with-progress .region__top__inner {
  min-height: 80px;
  height: 80px;
  padding: 0 0 10px 0;
}
body.test-questions form > .form-item,
body.test-questions .test-form-question {
  margin-bottom: 3.3em;
}
body.test-questions form > .form-item.inactive,
body.test-questions .test-form-question.inactive {
  opacity: 0.2;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

body.swiper-test.test-questions {
  background: url(/images/tests/swiper-bg.jpg) center center;
  background-size: cover;
}
body.swiper-test.test-questions .region-inner.region__content__inner {
  padding: 0;
}
body.swiper-test.test-questions form.form-test:not(.loaded),
body.swiper-test.test-questions form:not(:has(.finish.disabled)) .label,
body.swiper-test.test-questions form:not(:has(.finish.disabled)) .direction,
body.swiper-test.test-questions .form-submit:has(> .disabled),
body.swiper-test.test-questions footer.region,
body.swiper-test.test-questions details.querylog {
  display: none;
}
body.swiper-test.test-questions form.form-test {
  height: calc(100vh - 80px - 2px);
  height: calc(100svh - 80px - 2px);
  overflow: hidden;
}
body.swiper-test.test-questions .form-submit {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% 0px;
}
body.swiper-test #image {
  --ver-whitespace: 50px;
  --hor-whitespace: 50px;
  text-align: center;
  height: 100%;
  position: relative;
}
body.swiper-test #image img {
  height: calc(100% - 2 * var(--ver-whitespace));
  width: calc(100% - 2 * var(--hor-whitespace));
  -o-object-fit: contain;
     object-fit: contain;
  margin-top: var(--ver-whitespace);
}
body.swiper-test #image .label {
  position: absolute;
  bottom: 5px;
  left: 50%;
  translate: -50% 0px;
  width: calc(100% - 2 * var(--hor-whitespace));
  text-align: center;
}
body.swiper-test #image .label .tooltip {
  display: block;
  padding: 0.5em;
  margin-bottom: 0.5em;
  font-size: 16px;
  color: #FFF;
  background-color: #3dafc7;
  border-radius: 5px;
}
body.swiper-test #image .label .text {
  font-size: 30px;
  color: #000;
  font-weight: bold;
}
body.swiper-test #image:not(.show-tooltip) .tooltip {
  display: none;
}
body.swiper-test #image .direction {
  --whitespace: 5px;
  position: absolute;
}
body.swiper-test #image .direction:after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 0 1px #000);
  content: "";
  background-image: url(/css/cache/icons-a0a93e28-educational_institution-6116.svg?_1747850527);
  background-repeat: no-repeat;
  background-size: 900%;
  background-position: 12.2448979592% 98.4615384615%;
  background-size: 1080%;
}
body.swiper-test #image .direction:active,
body.swiper-test #image .direction.active {
  color: #fff;
  text-shadow: 0 -1px 2px #8265a8, 1px -1px 2px #8265a8, 1px 0px 2px #8265a8, 1px 1px 2px #8265a8, 0px 1px 2px #8265a8, -1px 1px 2px #8265a8, -1px 0px 2px #8265a8, -1px -1px 2px #8265a8;
  scale: 1.5;
}
body.swiper-test #image .direction[data-direction=dislike] {
  left: var(--whitespace);
  top: 50%;
  translate: 0px -50%;
}
body.swiper-test #image .direction[data-direction=like] {
  right: var(--whitespace);
  top: 50%;
  translate: 0px -50%;
}
body.swiper-test #image .direction[data-direction=like]:after {
  background-position: 42.8571428571% 98.4615384615%;
  background-size: 1080%;
}
body.swiper-test #image .direction[data-direction=superlike] {
  top: var(--whitespace);
  left: 50%;
  translate: -50% 0px;
}
body.swiper-test #image .direction[data-direction=superlike]:after {
  background-position: 53.0612244898% 98.4615384615%;
  background-size: 1080%;
}
body.swiper-test.test-instruction .region-inner.region__content__inner {
  padding-top: 20px;
}
body.swiper-test.test-instruction #image {
  height: 400px;
  overflow: hidden;
  border: dashed 2px #bbb;
  margin-bottom: 18px;
  background: url(/images/tests/swiper-bg.jpg) center center;
  background-size: cover;
}
body.swiper-test button.move-to-previous-question {
  margin-left: 1.5rem;
  margin-bottom: 0;
  padding: 0.25em 0.5em;
}

body.swiper-test.study-swiper-test #image img {
  filter: drop-shadow(0 0 5px #0009);
}

body.swiper-test.skills-swiper-test #image .direction[data-direction=dislike]:after {
  background-position: 22.4489795918% 98.4615384615%;
}
body.swiper-test.skills-swiper-test #image .direction[data-direction=like]:after {
  background-position: 32.6530612245% 98.4615384615%;
}
body.swiper-test.skills-swiper-test #image .direction[data-direction=superlike]:after {
  background-position: 63.2653061224% 98.4615384615%;
}

@media print, (min-width: 800px) {
  body.swiper-test {
    --direction-font-size: 60px;
  }
  body.swiper-test.test-questions form.form-test {
    overflow: visible;
  }
}
body.skills-test .state {
  display: inline-block;
  width: 24px;
  height: 24px;
  vertical-align: middle;
}
body.skills-test .fieldset[data-state=filled] .state {
  content: "";
  background-image: url(/css/cache/icons-a0a93e28-educational_institution-6116.svg?_1747850527);
  background-repeat: no-repeat;
  background-size: 900%;
  background-position: 0 37.6963350785%;
}

body.skills-test {
  --category-radio-width: 30px;
  --category-right-padding: 10px;
  --question-radio-width: 30px;
  --question-right-padding: 0px;
  --question-left-margin: 0px;
}
body.skills-test .region__content__inner {
  font-size: 18px;
}
body.skills-test .static-answers-header {
  margin-top: 100px;
  margin-left: calc(100% - var(--category-right-padding) - 4 * var(--category-radio-width));
  display: flex;
}
body.skills-test .static-answers-header div {
  width: var(--category-radio-width);
  transform-origin: bottom left;
  transform: translate(15px, -5px) rotate(-55deg);
  font-weight: normal;
  white-space: nowrap;
}
body.skills-test .static-answers-header:has(+ .inactive) {
  opacity: 0.2;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
body.skills-test details.category {
  position: relative;
}
body.skills-test summary.category .category-description {
  margin-top: 0.5rem;
  color: black;
  font-weight: normal;
  font-size: 16px;
}
body.skills-test summary.category .form-radios {
  position: absolute;
  right: var(--category-right-padding);
  top: 13px;
  display: flex;
}
body.skills-test summary.category.different-answers .form-radios {
  display: none;
}
body.skills-test summary.category .form-option {
  width: var(--category-radio-width);
}
body.skills-test summary.category .form-option,
body.skills-test summary.category .form-option label {
  margin-bottom: 0;
}
body.skills-test details.question {
  position: relative;
  margin-left: var(--question-left-margin);
  padding: 8px 0;
}
body.skills-test summary.category + details.question {
  margin-top: 1em;
}
body.skills-test details.question + details {
  border-top: solid 1px #ddd;
}
body.skills-test summary.question * {
  margin-bottom: 0;
}
body.skills-test summary.question .form-item {
  display: inline-block;
}
body.skills-test summary.question .control-label {
  pointer-events: none;
  font-weight: normal;
}
body.skills-test summary.question .options-wrapper {
  position: absolute;
  right: var(--question-right-padding);
  top: calc(1px + 8px);
  display: flex;
  background-color: #fff;
}
body.skills-test details.category[data-state=empty]:not(.other) summary.question .options-wrapper {
  display: none;
}
body.skills-test summary.question .form-option {
  width: var(--question-radio-width);
}
body.skills-test summary.question ~ * {
  margin-left: 1rem;
}
body.skills-test summary.question-info {
  color: #3dafc7;
}
body.skills-test summary.question + *,
body.skills-test details.question > details > summary + * {
  margin-top: 0.5rem;
}

@media print, (min-width: 800px) {
  body.skills-test {
    --category-radio-width: 60px;
    --category-right-padding: 100px;
    --question-radio-width: 60px;
    --question-right-padding: 80px;
    --question-left-margin: 30px;
  }
}
@media print, (min-width: 1050px) {
  body.skills-test {
    --category-radio-width: 60px;
    --category-right-padding: 300px;
    --question-radio-width: 60px;
    --question-right-padding: 280px;
  }
}
.category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3em;
}

body.enneagram-test .test-description {
  padding-right: 9em;
}
html[dir=rtl] body.enneagram-test .test-description {
  padding-right: 0;
  padding-left: 9em;
}

.form-item.enneagram-question {
  position: relative;
}
body.test-questions .form-item.enneagram-question {
  margin-bottom: 4.5em;
}
.form-item.enneagram-question .answer-labels {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  top: 0;
  right: -8px;
}
html[dir=rtl] .form-item.enneagram-question .answer-labels {
  right: auto;
  left: -8px;
}
.form-item.enneagram-question .answer-labels > div {
  width: 3em;
  transform: rotate(-45deg);
  transform-origin: bottom;
  white-space: nowrap;
}
html[dir=rtl] .form-item.enneagram-question .answer-labels > div {
  transform: rotate(45deg);
}
.form-item.enneagram-question .form-item,
.form-item.enneagram-question .options-wrapper {
  display: flex;
}
.form-item.enneagram-question .form-radios > label {
  font-weight: normal;
}
.form-item.enneagram-question .form-item > label {
  width: calc(100% - 9em);
}
.form-item.enneagram-question .form-option {
  width: 3em;
  text-align: center;
}

.tooltip-trigger {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 28px;
  margin-top: 3px;
  overflow: hidden;
  text-indent: -999px;
}
.tooltip-trigger.hidden {
  display: none;
}
.tooltip-trigger:focus:after, .tooltip-trigger:hover:after {
  color: white;
  background-color: #999;
}
.tooltip-trigger:after {
  position: absolute;
  content: "?";
  width: 28px;
  height: 28px;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  color: #444;
  text-indent: 0;
  border-radius: 4px;
  background-color: #DDD;
  box-sizing: border-box;
}

.pretty > label {
  display: inline-block;
  margin-bottom: 1.5em;
  vertical-align: top;
  font-weight: normal;
}
.pretty > label.has-tooltip {
  margin-right: 20px;
  max-width: calc(100% - 60px);
}
.pretty .label-prefix {
  font-style: italic;
}
.pretty .tooltip {
  padding: 1em;
  margin-bottom: 1em;
  margin-top: -0.75em;
  font-size: 16px;
  color: #FFF;
  background-color: #3dafc7;
  border-radius: 5px;
}

.form-item.form-radios.list-format {
  counter-reset: choices;
}
.form-item.form-radios.list-format .options-wrapper {
  border: 1px solid #DDD;
  border-radius: 5px;
  overflow: hidden;
}
.form-item.form-radios.list-format .form-option {
  margin: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.form-item.form-radios.list-format .form-option:not(:last-child) {
  border-bottom: 1px solid #DDD;
}
.form-item.form-radios.list-format input[type=radio] {
  position: absolute;
  margin: 0;
  clip: rect(0, 0, 0, 0);
}
.form-item.form-radios.list-format input[type=radio]:focus + label {
  background-color: #8265a8;
}
.form-item.form-radios.list-format input[type=radio]:checked:hover + label,
.form-item.form-radios.list-format input[type=radio]:checked:focus + label {
  background-color: #8265a8;
}
.form-item.form-radios.list-format input[type=radio] + label {
  position: relative;
  display: block;
  width: auto;
  min-height: 24px;
  margin: 0;
  padding: 0.6em 50px 0.6em 54px;
  cursor: pointer;
  font-weight: 400;
  line-height: 1.5;
}
html[dir=rtl] .form-item.form-radios.list-format input[type=radio] + label {
  padding: 0.6em 54px 0.6em 50px;
}
.form-item.form-radios.list-format input[type=radio] + label:hover {
  background-color: #f4406d;
}
.form-item.form-radios.list-format input[type=radio] + label:before {
  counter-increment: choices;
  position: absolute;
  content: counter(choices);
  width: 24px;
  height: 24px;
  top: 50%;
  left: 15px;
  margin-top: -12px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  color: #444;
  border: 2px solid currentColor;
  border-radius: 3px;
  background-color: white;
  box-sizing: border-box;
  box-shadow: inset 0px 0px 1px 0 #444;
}
html[dir=rtl] .form-item.form-radios.list-format input[type=radio] + label:before {
  left: auto;
  right: 15px;
}
.form-item.form-radios.list-format input[type=radio][disabled=true] + label {
  cursor: not-allowed;
}
.form-item.form-radios.list-format input[type=radio][disabled=true] + label:hover {
  background-color: transparent;
}
.form-item.form-radios.list-format input[type=radio]:checked + label {
  background-color: #f4406d;
}
.form-item.form-radios.list-format input[type=radio]:checked + label:before {
  color: #1b9b59;
}
.form-item.form-radios.list-format input[type=radio]:checked + label:after {
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -12px;
  width: 24px;
  height: 24px;
  content: "";
  background-image: url(/css/cache/icons-a0a93e28-educational_institution-6116.svg?_1747850527);
  background-repeat: no-repeat;
  background-size: 900%;
  background-position: 12.5% 37.6963350785%;
}

.form-item.enneagram-question.list-format > .form-radios {
  border: 1px solid #DDD;
  border-width: 0 1px 1px 1px;
  margin-bottom: 0;
  padding: 10px 10px 10px 20px;
}
.form-item.enneagram-question.list-format > .form-radios label {
  margin: 0;
}
.form-item.enneagram-question.list-format > .form-radios input + label {
  transform: scale(1.2);
}
.form-item.enneagram-question.list-format > .answer-labels + .form-radios {
  border-width: 1px;
  border-radius: 5px 5px 0 0;
}
.form-item.enneagram-question.list-format > .form-radios:last-child {
  border-radius: 0 0 5px 5px;
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.3);
}

@media (min-width: 480px) {
  .form-item.form-radios.list-format input[type=radio] + label {
    padding: 0.6em 60px 0.6em 80px;
  }
  .form-item.form-radios.list-format input[type=radio] + label:before {
    left: 30px;
  }
  html[dir=rtl] .form-item.form-radios.list-format input[type=radio] + label {
    padding: 0.6em 80px 0.6em 60px;
  }
  html[dir=rtl] .form-item.form-radios.list-format input[type=radio] + label:before {
    left: auto;
    right: 30px;
  }
  .form-item.form-radios.list-format input[type=radio]:checked + label:after {
    right: 30px;
  }
  html[dir=rtl] .form-item.form-radios.list-format input[type=radio]:checked + label:after {
    right: auto;
    left: 30px;
  }
}
.form-item.photo-format .options-wrapper {
  font-size: 0;
  text-align: center;
}
.form-item.photo-format .options-wrapper * {
  font-size: 18px;
}
.form-item.photo-format .form-option {
  display: inline-block;
  vertical-align: top;
}
.form-item.photo-format input[type=radio] {
  position: absolute;
  margin: 0;
  clip: rect(0, 0, 0, 0);
}
.form-item.photo-format input[type=radio]:focus + label {
  background-color: #f4406d;
}
.form-item.photo-format input[type=radio] + label {
  position: relative;
  display: inline-block;
  margin: 0 auto 0.5em;
  padding: 0.4em 0.5em 0.25em;
  width: auto;
  cursor: pointer;
  color: #444;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  border-radius: 3px;
}
.form-item.photo-format input[type=radio]:checked + label .image:before {
  display: block;
}
.form-item.photo-format img {
  vertical-align: top;
  border-radius: 3px;
  pointer-events: none;
  max-width: 96%;
}
.form-item.photo-format .image {
  position: relative;
  display: block;
  margin-bottom: 0.3em;
}
.form-item.photo-format .image:before {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3em;
  height: 3em;
  transform: translate(-50%, -50%);
  color: #FFF;
  border-radius: 50%;
  background-color: currentColor;
  content: "";
  background-image: url(/css/cache/icons-a0a93e28-educational_institution-6116.svg?_1747850527);
  background-repeat: no-repeat;
  background-size: 900%;
  background-position: 12.5% 37.6963350785%;
}
.form-item.photo-format .title {
  display: block;
  font-size: 14px;
  word-break: break-word;
}

@media (min-width: 320px) {
  .form-item.photo-format .form-option {
    width: 50%;
  }
}
@media (min-width: 480px) {
  .form-item.photo-format .title {
    font-size: 16px;
  }
}
@media print, (min-width: 800px) {
  .form-item.photo-format .form-option {
    width: 33.33%;
  }
  .form-item.photo-format .title {
    font-size: 18px;
  }
  .form-item.photo-format input[type=radio] + label {
    margin-bottom: 1em;
  }
}
.sortable-format .sortable {
  margin: 0 0.5em 1.5em 0.5em;
  padding: 0;
  list-style: none;
  counter-reset: choices;
}
.sortable-format .sortable + input {
  display: none;
}
.sortable-format .ui-sortable-handle {
  position: relative;
  display: block;
  padding: 2em 0.5em 0.75em 0.5em;
  cursor: move;
  line-height: 1.2;
  transition: background-color 80ms ease-out;
}
.sortable-format .ui-sortable-handle:before {
  position: absolute;
  top: 0.75em;
  left: 50%;
  margin-left: -0.675em;
  width: 1.35em;
  height: 1.35em;
  font-size: 16px;
  font-weight: bold;
  color: #444;
  line-height: 1.3;
  text-align: center;
  border-radius: 50%;
  background-color: white;
  counter-increment: choices;
  content: counters(choices, ".");
}
.sortable-format .ui-sortable-helper {
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.75);
}
.sortable-format .ui-sortable-placeholder {
  min-height: 100px;
  background-color: rgba(255, 255, 255, 0.1);
}

@media (min-width: 480px) {
  .sortable-format .sortable {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
  }
  .sortable-format .ui-sortable-handle,
.sortable-format .ui-sortable-placeholder {
    flex: 1 1 50%;
    width: 50%;
  }
}
@media print, (min-width: 800px) {
  .sortable-format .sortable {
    margin-left: 0;
    margin-right: 0;
  }
  .sortable-format .ui-sortable-handle,
.sortable-format .ui-sortable-placeholder {
    flex: 1 1 25%;
    width: 25%;
    min-height: 100px;
    padding: 2.25em 0.75em 1.25em 0.75em;
  }
  .sortable-format .ui-sortable-handle:before,
.sortable-format .ui-sortable-placeholder:before {
    font-size: 20px;
  }
}
div.scale-format.form-select {
  padding-bottom: 1em;
  margin-bottom: 1.5em;
  border-bottom: 1px solid #E2E2E2;
}

.scale-format {
  line-height: 1.1;
  font-size: 18px;
  flex-wrap: wrap;
}
.scale-format .inline-error-notice {
  width: 100%;
  margin-top: 0.5em;
  text-align: center;
}
.scale-format .question {
  font-weight: normal;
  margin-bottom: 0.5em;
}
.scale-format .question,
.scale-format .question-counter {
  text-align: center;
}
.scale-format.form-radios .form-option {
  display: block;
  margin-bottom: 0.5em;
  text-align: center;
}
.scale-format.form-radios .form-option input {
  margin: 0 5px;
}
.scale-format.form-radios .form-option input[type=radio] {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}
.scale-format.form-radios .form-option input[type=radio]:hover + label, .scale-format.form-radios .form-option input[type=radio]:focus + label {
  color: #3dafc7;
}
.scale-format.form-radios .form-option input[type=radio]:hover + label:before, .scale-format.form-radios .form-option input[type=radio]:focus + label:before {
  background-position: 62.5% 87.9581151832%;
}
.scale-format.form-radios .form-option input[type=radio]:checked:hover + label:before, .scale-format.form-radios .form-option input[type=radio]:checked:focus + label:before {
  background-position: 12.5% 87.9581151832%;
}
.scale-format.form-radios .form-option input[type=radio] + label {
  display: inline-block;
  position: relative;
  width: 25px;
  height: 25px;
  margin-bottom: 0;
  cursor: pointer;
  vertical-align: middle;
}
.scale-format.form-radios .form-option input[type=radio] + label span {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}
.scale-format.form-radios .form-option input[type=radio] + label:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-image: url(/css/cache/icons-a0a93e28-educational_institution-6116.svg?_1747850527);
  background-repeat: no-repeat;
  background-size: 900%;
  background-position: 25% 87.9581151832%;
}
.scale-format.form-radios .form-option input[type=radio]:checked + label:before {
  background-position: 87.5% 62.8272251309%;
}
.scale-format.form-radios .form-option.has-error input[type=radio] + label:before {
  background-position: 50% 87.9581151832%;
}
.scale-format.form-radios .form-option.has-error input[type=radio]:checked + label:before {
  background-position: 0 87.9581151832%;
}

@media (min-width: 480px) {
  .scale-format {
    display: flex;
  }
  .scale-format .question {
    margin-right: 0;
    margin-bottom: 0;
    padding-right: 30px;
    text-align: right;
    font-weight: normal;
  }
  .scale-format .question,
.scale-format .question-counter {
    padding-top: 2px;
    width: calc(50% - 75px);
  }
  .scale-format .question-counter {
    text-align: left;
    padding-left: 30px;
  }
  .scale-format .options-wrapper {
    width: 150px;
    text-align: center;
    display: flex;
    justify-content: space-between;
  }
}
body.test-questions .physical-criteria-field {
  padding-bottom: 0.5em;
  margin-bottom: 1em;
  border-bottom: #E2E2E2 1px solid;
}
body.test-questions .physical-criteria-field:first-of-type {
  padding-top: 0.9em;
  border-top: #E2E2E2 1px solid;
}

.physical-criteria-field > .control-label {
  margin-bottom: 0.5em;
  padding-left: 54px;
}
.physical-criteria-field > .control-label:before {
  top: -3px;
  left: 11px;
  width: 32px;
  height: 32px;
}
.physical-criteria-field .inline-error-notice {
  padding-left: 16px;
}
.physical-criteria-field .options-wrapper,
.physical-criteria-field textarea {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.physical-criteria-field.list-format input[type=radio] + label:before {
  border-radius: 50%;
}

@media (min-width: 480px) {
  .physical-criteria-field > .control-label {
    padding-left: 80px;
  }
  .physical-criteria-field > .control-label:before {
    left: 28px;
  }
  .physical-criteria-field .inline-error-notice {
    padding-left: 32px;
  }
  .physical-criteria-field .options-wrapper {
    margin-bottom: 0.5em;
  }
}
@media print, (min-width: 800px) {
  .physical-criteria-field > .control-label:before {
    top: 0;
  }
}
.test-results .cube8-summary p,
.test-results .enneagram-summary p {
  font-size: 110%;
}
.test-results .cube8-summary p .letter,
.test-results .enneagram-summary p .letter {
  font-weight: bold;
}
.test-results .cube8-summary ol li,
.test-results .enneagram-summary ol li {
  padding-left: 0;
}
.test-results .cube8-summary ol li .letter,
.test-results .enneagram-summary ol li .letter {
  display: inline-block;
  width: 0.8em;
  text-align: center;
  font-weight: bold;
}
.test-results .cube8-summary ol li:before,
.test-results .enneagram-summary ol li:before {
  display: none;
}
.test-results .required-filters .form-item:last-child {
  margin-bottom: 0;
}
.test-results .form-search {
  float: none;
  text-align: left;
}
.test-results .form-search.with-filters .form-select {
  margin-left: 0;
  margin-right: 0.5em;
}
html[dir=rtl] .test-results .form-search {
  float: none;
  text-align: right;
}
.test-results .search-field {
  justify-content: flex-start;
}
.test-results .form-group {
  display: block;
  margin-top: 2em;
}
.test-results .form-group .form-item {
  width: auto;
  max-width: none;
}
.test-results .form-group select {
  padding-top: 0.3em;
  padding-bottom: 0.3em;
  font-weight: bold;
}
.test-results .form-group .form-control {
  width: 100%;
}
.test-results .form-group .options-wrapper {
  width: auto;
}
.test-results .list__header {
  display: flex;
  flex-flow: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5rem;
}
.test-results .list__title {
  margin-right: auto;
  padding-top: 10px;
  padding-bottom: 10px;
}
html[dir=rtl] .test-results .list__title {
  margin-right: 0;
  margin-left: auto;
}
.test-results .language--education {
  float: right;
}
.test-results .button--sectorscan,
.test-results .button--questions-answers {
  padding: 0.6em 0.75em;
  margin-bottom: 0;
  margin-right: 0;
}
.test-results .button--sectorscan {
  position: relative;
  padding-left: 2.5em;
  margin-left: 0.5em;
}
html[dir=rtl] .test-results .button--sectorscan {
  margin-left: 0;
  margin-right: 0.5em;
}
.test-results .button--sectorscan:before {
  position: absolute;
  top: 50%;
  left: 0.75em;
  width: 1.25em;
  margin-top: -0.625em;
  height: 1.25em;
  content: "";
  background-image: url(/css/cache/icons-a0a93e28-educational_institution-6116.svg?_1747850527);
  background-repeat: no-repeat;
  background-size: 900%;
  background-position: 75% 0;
}
.test-results .button--sectorscan.disabled:before {
  background-position: 62.5% 62.8272251309%;
  opacity: 0.5;
}

h1 + .test-finished-title-suffix {
  margin-top: 0.5em;
}

.sticky-legend {
  margin-bottom: 1em;
}
.sticky-legend > ul.explanation {
  margin-bottom: 0.5em;
}

@media print, (min-width: 800px) {
  .sticky-legend {
    position: sticky;
    top: 81px;
    background: white;
    z-index: 4;
    margin-left: -40px;
    margin-right: -40px;
    padding: 0.5em 40px 0;
    border-bottom: solid 1px #ddd;
  }

  .sticky-legend-bottom {
    margin: -1px -40px 0;
    padding: 0 40px;
    height: 1px;
    background-color: white;
    position: relative;
    z-index: 4;
  }
}
.test-score-table .results,
.test-score-table .result-explanation {
  margin-bottom: 2em;
}
.test-score-table .category {
  margin-bottom: 1em;
}
.test-score-table .category p:last-of-type {
  margin-bottom: 0.25em;
}
.test-score-table h3 {
  margin-bottom: 0.25em;
}
.test-score-table h3 a {
  text-decoration: none;
}
.test-score-table h3 a:hover, .test-score-table h3 a:focus {
  text-decoration: underline;
}
.test-score-table .read-more {
  display: inline-block;
  margin-bottom: 1em;
}
.test-score-table .inverted-question {
  font-style: italic;
}
.test-score-table .score {
  position: relative;
  width: 40px;
  line-height: 1;
}
.test-score-table .score.dark {
  border-right: solid 4px #DDD;
}
.test-score-table .score span, .test-score-table .score.profession-score::before, .test-score-table .score.profession2-score::after,
.test-score-table .score span::after {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  content: " ";
  overflow: hidden;
}
.test-score-table .score span {
  display: inline-block;
  width: 0.72225em;
  height: 0.72225em;
  background-color: #E2E2E2;
  z-index: 1;
}
.test-score-table .score.profession-score::before, .test-score-table .score.profession2-score::after {
  width: 1.1115em;
  height: 1.1115em;
  border: 2px solid #3dafc7;
  background-color: transparent;
  z-index: 2;
}
.test-score-table .score.match-score span::after {
  width: 0.72225em;
  height: 0.72225em;
  background-color: #3dafc7;
  z-index: 3;
}
.test-score-table .score.half-moons span,
.test-score-table .score.half-moons span::after {
  width: 1em;
  height: 1em;
  overflow: visible;
}
.test-score-table .score.half-moons.profession-score::before {
  left: 45%;
  width: 1em;
  height: 1em;
  border: 0;
  background-color: #3dafc7;
  -webkit-clip-path: polygon(50% 0%, 50% 100%, 0% 100%, 0% 0%);
          clip-path: polygon(50% 0%, 50% 100%, 0% 100%, 0% 0%);
}
.test-score-table .score.half-moons.profession2-score::after {
  left: 55%;
  width: 1em;
  height: 1em;
  border: 0;
  background-color: black;
  -webkit-clip-path: polygon(50% 0%, 50% 100%, 100% 100%, 100% 0%);
          clip-path: polygon(50% 0%, 50% 100%, 100% 100%, 100% 0%);
}
.test-score-table .score.half-moons.match-score span::after {
  height: 4px;
  width: 100%;
  background-color: #000;
  transform: translate(-50%, 11px);
  border-radius: 2px;
}
.test-score-table .adjustable-result [data-answer-key]:not(.match-score) {
  cursor: pointer;
}
.test-score-table.physical-criteria-test .results-table th:not(:first-child) {
  width: 24px;
}
.test-score-table.physical-criteria-test .results-table .physical-criteria-field > label {
  display: none;
}
.test-score-table.physical-criteria-test svg {
  vertical-align: middle;
}
.test-score-table.physical-criteria-test .text-answer-box {
  width: 280px;
}
.test-score-table .question-short-name {
  position: relative;
  width: 100%;
}
.test-score-table .question-short-name .exclamation {
  font-size: 30px;
  font-weight: bold;
  line-height: 22px;
}
.test-score-table .results-mobile .list__contents li {
  page-break-inside: avoid;
  padding-left: 10px;
  padding-right: 10px;
}
.test-score-table .results-mobile .list__contents li.open {
  border-bottom: none;
}
.test-score-table .results-mobile .list__contents li.open + .question-expandable {
  padding-top: 0;
}
.test-score-table .results-mobile .list__contents li:not(.open) + .question-expandable {
  display: none;
}
.test-score-table .results-bar {
  margin-top: 12px;
  margin-bottom: 4px;
  max-width: 22em;
  min-height: 24px;
  display: flex;
  justify-content: space-between;
}
.test-score-table .results-bar .score {
  flex: 1 1 auto;
}
.test-score-table .results-bar .score:before {
  width: 24px;
  height: 24px;
}
.test-score-table .results-bar .score span {
  width: 22px;
  height: 22px;
  vertical-align: top;
  font-family: Arial, Helvetica, Verdana, sans-serif;
  font-size: 12px;
  text-align: center;
  letter-spacing: -0.05em;
  line-height: 22px;
  color: #000;
  z-index: 2;
}
.test-score-table .results-bar .match-score span {
  color: #FFF;
}
.test-score-table .results-bar .profession-score:before {
  width: 28px;
  height: 28px;
}
.test-score-table .question-expandable-toggler {
  position: relative;
  color: inherit;
  text-decoration: none;
}
.test-score-table .question-expandable-toggler:before {
  position: absolute;
  top: 30%;
  right: -27px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 10px 0 10px;
  border-color: #3dafc7 transparent transparent transparent;
}
.test-score-table .open .question-expandable-toggler:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 9px 10px;
  border-color: transparent transparent #3dafc7 transparent;
}
.test-score-table .legend ol {
  margin: 0;
  padding: 0;
  font-size: 14px;
  -moz-columns: 2;
       columns: 2;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.test-score-table .legend ol li {
  padding-left: 1.5em;
}
.test-score-table .results-table-heading .label {
  position: absolute;
  bottom: 5px;
  left: 50%;
  font-size: 16px;
  font-weight: normal;
  white-space: nowrap;
  transform-origin: bottom left;
  transform: translate(5px, -80%) rotate(-55deg);
}
.test-score-table .results-table {
  width: calc(100% - 31px);
  margin-left: 20px;
  margin-bottom: 1.5em;
  border: 0;
  border-collapse: collapse;
}
.test-score-table .results-table:not(.also-on-mobile) {
  display: none;
}
.test-score-table .results-table > tbody > tr:not(.open) {
  border-bottom: 1px solid #DDD;
}
.test-score-table .results-table > tbody > tr:not(.open) + tr.question-expandable {
  display: none;
}
.test-score-table .results-table > tbody > tr.question-expandable td {
  padding-top: 0;
  padding-left: 2px;
  font-size: 14px;
}
.test-score-table .results-table .question-expandable-toggler:before {
  top: 22%;
  left: -30px;
}
.test-score-table .results-table > thead > tr > th {
  position: relative;
  text-align: center;
}
.test-score-table .results-table > thead > tr > th:not(:first-child) {
  width: 40px;
}
.test-score-table .results-table.results-table-heading > thead > tr > th {
  height: 140px;
  vertical-align: bottom;
}
.test-score-table .results-table > tbody > tr > td {
  position: relative;
  padding: 0.5em 0;
  vertical-align: top;
}
.test-score-table .results-table td.weight {
  font-weight: bold;
  text-align: right;
}
.test-score-table .results-table td.weight,
.test-score-table .results-table td.question {
  padding-right: 0.75em;
}
.test-score-table .fieldset > .results-table > tbody > tr:last-child {
  border-bottom: none;
}
.test-score-table .scale-format-mobile-results .results-bar {
  display: block;
  max-width: 100%;
  margin-top: 0;
  margin-bottom: 0;
}
.test-score-table .scale-format-mobile-results .results-bar .score {
  height: 30px;
  display: inline-block;
}
.test-score-table .scale-format-mobile-results .list__contents li {
  text-align: center;
}
.test-score-table .scale-format-mobile-results .question-number {
  display: block;
}
.test-score-table .scale-table .question-counter,
.test-score-table .scale-table .question {
  width: 400px;
}
.test-score-table .scale-table .question {
  text-align: right;
}
.test-score-table .scale-table .question-counter {
  padding-left: 0.75em;
}

@media (min-width: 1440px) {
  .test-score-table .results-table {
    margin-left: 0;
    width: 100%;
  }
}
ul.explanation {
  margin: 0 0 1em 0;
  padding: 0;
  list-style: none;
}
ul.explanation li {
  position: relative;
  display: inline-block;
  margin-right: 1em;
  vertical-align: middle;
}
ul.explanation .score {
  display: inline-block;
  vertical-align: middle;
}

@media print, (min-width: 800px) {
  .test-score-table .results-mobile {
    display: none;
  }
  .test-score-table .results-table:not(.xxx) {
    display: table;
  }
}
@media (min-width: 840px) {
  .test-score-table .question-short-name .exclamation {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translate(0, -50%);
  }
}
.category-order-test .results-table th.score-cell {
  text-align: center;
}
.category-order-test .results-table th.score-cell > span:first-child {
  float: left;
}
.category-order-test .results-table th.score-cell > span:last-child {
  float: right;
}
html[dir=rtl] .category-order-test .results-table th.score-cell > span:first-child {
  float: right;
}
html[dir=rtl] .category-order-test .results-table th.score-cell > span:last-child {
  float: left;
}
.category-order-test .results-table td.score-cell {
  width: 155px;
}
.category-order-test .results-table .score-container {
  width: 150px;
}
.category-order-test .results-table .score-bar {
  height: 1.3em;
  background-color: #3dafc7;
  border-radius: 22px;
}
.category-order-test .results-table .score-pct {
  white-space: nowrap;
}

@media print, (min-width: 800px) {
  .category-order-test .results-table td.score-cell {
    width: 405px;
  }
  .category-order-test .results-table .score-container {
    width: 400px;
  }
}
table.career-values-spiderweb-tables {
  width: 100%;
}
table.career-values-spiderweb-tables > tbody > tr {
  border-bottom: 0 !important;
}
table.career-values-spiderweb-tables .quadrant {
  width: 50%;
}
table.career-values-spiderweb-tables .quadrant table {
  margin-top: 1em;
}
table.career-values-spiderweb-tables .quadrant thead tr {
  border-width: 3px !important;
}
table.career-values-spiderweb-tables .score {
  width: 5.5em;
  text-align: right !important;
}

.cube8-notice-board-test .sortable {
  padding: 20px;
  box-shadow: inset 0 0 12px 3px rgba(0, 0, 0, 0.75);
  border: 20px outset #b86d33;
  border-radius: 2px;
  background-color: transparent;
  background-image: url(/images/tests/cube8-noteboard/cork-background.jpg);
}
.cube8-notice-board-test .ui-sortable-handle {
  padding-bottom: 1.5em;
  margin-left: 0.5em;
  margin-right: 0.5em;
  margin-bottom: 0.75em;
  font-size: 16px;
  border: none;
  background-color: #3dafc7;
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.65);
  transition: transform 100ms ease-out;
}
.cube8-notice-board-test .ui-sortable-handle:before {
  box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.5);
}
.cube8-notice-board-test .ui-sortable-handle[data-category=A] {
  transform: rotate(-2deg);
  background-color: #8265a8;
}
.cube8-notice-board-test .ui-sortable-handle[data-category=C] {
  z-index: 2;
  transform: rotate(1deg);
  background-color: #f99a1c;
}
.cube8-notice-board-test .ui-sortable-handle[data-category=G] {
  transform: rotate(-0.5deg);
  color: #444;
  background-color: #fae7b5;
}
.cube8-notice-board-test .ui-sortable-handle[data-category=I] {
  transform: rotate(-2.5deg);
  background-color: #bfafb2;
}
.cube8-notice-board-test .ui-sortable-handle[data-category=O] {
  transform: rotate(-1deg);
  z-index: 2;
  background-color: #6ada8e;
}
.cube8-notice-board-test .ui-sortable-handle[data-category=R] {
  transform: rotate(1.5deg);
  background-color: #8ba8b7;
}
.cube8-notice-board-test .ui-sortable-handle[data-category=S] {
  transform: rotate(0.25deg);
  color: #444;
  background-color: #ffe4cd;
}
.cube8-notice-board-test .ui-sortable-handle[data-category=V] {
  transform: rotate(-1.75deg);
  background-color: #3dafc7;
}
.cube8-notice-board-test .ui-sortable-placeholder {
  background-color: rgba(0, 0, 0, 0.25);
}
.cube8-notice-board-test .ui-sortable-helper[data-category] {
  transform: rotate(0deg);
}
.cube8-notice-board-test .title {
  margin-bottom: 0.5em;
  font-size: 20px;
  font-weight: bold;
  word-wrap: break-word;
}
.cube8-notice-board-test .story {
  font-size: 16px;
}

@media print, (min-width: 800px) {
  .cube8-notice-board-test .ui-sortable-handle {
    margin-left: 0.5em;
    margin-right: 0.5em;
    font-size: 16px;
    border: none;
    background-color: #3dafc7;
    box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.65);
  }
  .cube8-notice-board-test .ui-sortable-handle[data-category=A] {
    transform: translate(-3px, 3px) rotate(-2deg);
  }
  .cube8-notice-board-test .ui-sortable-handle[data-category=C] {
    transform: translate(0, -5px) rotate(1deg);
  }
  .cube8-notice-board-test .ui-sortable-handle[data-category=G] {
    transform: translate(0, -5px) rotate(1deg);
  }
  .cube8-notice-board-test .ui-sortable-handle[data-category=I] {
    transform: translate(-3px, 3px) rotate(-2.5deg);
  }
  .cube8-notice-board-test .ui-sortable-handle[data-category=O] {
    transform: translate(-3px, 3px) rotate(1deg);
  }
  .cube8-notice-board-test .ui-sortable-handle[data-category=R] {
    transform: translate(4, 3px) rotate(-1.5deg);
  }
  .cube8-notice-board-test .ui-sortable-handle[data-category=S] {
    transform: translate(-3px, 3px) rotate(0.5deg);
  }
  .cube8-notice-board-test .ui-sortable-handle[data-category=V] {
    transform: translate(-3px, 3px) rotate(-1.5deg);
  }

  .title {
    font-size: 18px;
  }
}
.cube8-blackboard-test .sortable {
  color: #FFF;
  border: 10px ridge #CCC;
  border-radius: 2px;
  background-color: transparent;
  background-image: url("/images/tests/cube8-blackboard/chalkboard-background.png");
}
.cube8-blackboard-test .ui-sortable-handle {
  border: 1px dashed rgba(255, 255, 255, 0.4);
}
.cube8-blackboard-test .ui-sortable-handle:hover {
  background-color: rgba(255, 255, 255, 0.15);
}
.cube8-blackboard-test .ui-sortable-handle[data-category] {
  background-repeat: no-repeat;
  background-position: top 15px right 15px;
  background-size: 60px auto;
}
.cube8-blackboard-test .ui-sortable-handle[data-category=A] {
  background-image: url("/images/tests/cube8-blackboard/A.svg");
}
.cube8-blackboard-test .ui-sortable-handle[data-category=C] {
  background-image: url("/images/tests/cube8-blackboard/C.svg");
}
.cube8-blackboard-test .ui-sortable-handle[data-category=G] {
  background-image: url("/images/tests/cube8-blackboard/G.svg");
}
.cube8-blackboard-test .ui-sortable-handle[data-category=I] {
  background-image: url("/images/tests/cube8-blackboard/I.svg");
}
.cube8-blackboard-test .ui-sortable-handle[data-category=O] {
  background-image: url("/images/tests/cube8-blackboard/O.svg");
}
.cube8-blackboard-test .ui-sortable-handle[data-category=R] {
  background-image: url("/images/tests/cube8-blackboard/R.svg");
}
.cube8-blackboard-test .ui-sortable-handle[data-category=S] {
  background-image: url("/images/tests/cube8-blackboard/S.svg");
}
.cube8-blackboard-test .ui-sortable-handle[data-category=V] {
  background-image: url("/images/tests/cube8-blackboard/V.svg");
}
.cube8-blackboard-test .ui-sortable-helper:hover {
  background-color: #8265a8;
}
.cube8-blackboard-test .title {
  margin-bottom: 1em;
  line-height: 1.3;
  font-family: Comic Sans MS, serif;
  font-size: 14px;
  font-style: italic;
  word-wrap: break-word;
}
.cube8-blackboard-test .story {
  font-size: 16px;
}

@media print, (min-width: 800px) {
  .cube8-blackboard-test .ui-sortable-handle {
    padding-top: 2.75em;
  }
  .cube8-blackboard-test .ui-sortable-handle[data-category] {
    background-position: top 10px right 15px;
    background-size: 50px auto;
  }
}
.cube8-photo .sortable {
  border: 1px solid #3dafc7;
}
.cube8-photo .ui-sortable-handle {
  padding-top: 2.5em;
  border: 1px solid #DDD;
  background-color: #FFF;
  text-align: center;
}
.cube8-photo .ui-sortable-handle:before {
  color: #FFF;
  background-color: #3dafc7;
}
.cube8-photo .ui-sortable-placeholder {
  background-color: #E2E2E2;
}
.cube8-photo img {
  display: inline-block;
  border-radius: 3px;
}
.cube8-photo .title {
  font-size: 14px;
  word-wrap: break-word;
}

@media (min-width: 480px) {
  .cube8-photo .title {
    font-size: 16px;
  }
}
@media print, (min-width: 800px) {
  .cube8-photo .title {
    font-size: 18px;
  }
}
@media (min-width: 0) and (max-width: 799px) {
  .cube8-photo .sortable {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
  }
  .cube8-photo .ui-sortable-handle,
.cube8-photo .ui-sortable-placeholder {
    flex: 1 1 50%;
    width: 50%;
    padding: 2.25em 0.5em 0.75em;
  }
}
.oasez-test {
  position: relative;
}
.oasez-test .tooltip-trigger {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: -3px;
}
.oasez-test .tooltip {
  width: calc(100% - 37px);
  margin-left: 5px;
  margin-right: 0;
  vertical-align: top;
}
.oasez-test .tooltip:not(.hidden) {
  display: inline-block;
}

@media (min-width: 480px) {
  .oasez-test .tooltip {
    width: calc(100% - 53px);
    margin-left: 20px;
  }
}
.test-results .career-choice-test-result-filter-form .form-group .form-item:not(.physical-criteria) {
  max-width: 241px;
}

.form-search .form-item.physical-criteria {
  margin-bottom: 1em;
}
.form-search .form-item.physical-criteria label {
  margin-bottom: 0;
  margin-right: 0.5em;
}

.physical-criteria-form-test legend {
  margin-bottom: 0.5em;
}

.physical-criteria-test .results-mobile .list {
  margin-bottom: 2em;
}
.physical-criteria-test table {
  margin-bottom: 3em;
}
.physical-criteria-test td.answer {
  padding-left: 0.75em;
}
.physical-criteria-test .comparison-1 {
  color: #8265a8;
  background-color: #fff2e6;
}
.physical-criteria-test .comparison-2 {
  color: #d83246;
  background-color: #fbebed;
}
.physical-criteria-test .comparison-2 .match-score span {
  background-color: #d83246;
}
.physical-criteria-test .comparison-2 .profession-score:before {
  border-color: #d83246;
}

@media print, (min-width: 800px) {
  .physical-criteria-form-test legend {
    font-size: 28px;
  }
}
table.test-360-others {
  margin-bottom: 1em;
}
table.test-360-others td {
  padding-left: 0.75em;
}

.test-360-category {
  page-break-inside: avoid;
}
.test-360-category + .test-360-category {
  margin-top: 2em;
}
.test-360-category.without-spiderweb h2 {
  margin-bottom: 0;
}

.test-360-spiderweb {
  overflow-x: auto;
}
.test-360-spiderweb svg {
  max-width: 120%;
  overflow: hidden;
}

.test-360-table table {
  width: 100%;
}
.test-360-table tr + tr > * {
  border-top: solid 1px #aaa;
}
.test-360-table .answer {
  text-align: center;
}
.test-360-table thead .answer {
  border-bottom: solid 1px #aaa;
}
.test-360-table .test-360-averages {
  font-weight: bold;
}
.test-360-table .avg-margin,
.test-360-table tr + tr > .avg-margin {
  width: 1em;
  border-top: 0;
  border-bottom: 0;
}

@media print, (min-width: 800px) {
  .test-360-spiderweb {
    float: left;
    overflow-x: visible;
  }
  .test-360-spiderweb svg {
    max-width: none;
    margin-left: -50px;
  }

  .test-360-category.with-spiderweb .test-360-table {
    float: right;
  }

  .test-360-table table {
    width: auto;
    border-collapse: collapse;
  }
  .test-360-table th, .test-360-table td {
    padding: 3px 5px;
  }
  .test-360-table .label {
    width: 16em;
  }
}
a.disconnect-professional,
a.delete-report,
a.delete-fc-item,
a.add-fc-item,
a.delete-usertest,
a.preview-document,
a.delete-document {
  display: inline-block;
  width: 22px;
  height: 22px;
  color: #999;
  text-indent: -9999px;
  overflow: hidden;
}
a.disconnect-professional:before,
a.delete-report:before,
a.delete-fc-item:before,
a.add-fc-item:before,
a.delete-usertest:before,
a.preview-document:before,
a.delete-document:before {
  display: block;
  margin-right: 0.25em;
  width: 100%;
  height: 100%;
  text-indent: 0;
}
html[dir=rtl] a.disconnect-professional:before,
html[dir=rtl] a.delete-report:before,
html[dir=rtl] a.delete-fc-item:before,
html[dir=rtl] a.add-fc-item:before,
html[dir=rtl] a.delete-usertest:before,
html[dir=rtl] a.preview-document:before,
html[dir=rtl] a.delete-document:before {
  margin-right: 0;
  margin-left: 0.25em;
}

a.disconnect-professional:before,
a.delete-report:before,
a.delete-document:before,
a.delete-usertest:before,
a.delete-fc-item:before {
  content: "";
  background-image: url(/css/cache/icons-a0a93e28-educational_institution-6116.svg?_1747850527);
  background-repeat: no-repeat;
  background-size: 900%;
  background-position: 75% 87.9581151832%;
}
a.disconnect-professional:hover:before, a.disconnect-professional:focus:before,
a.delete-report:hover:before,
a.delete-report:focus:before,
a.delete-document:hover:before,
a.delete-document:focus:before,
a.delete-usertest:hover:before,
a.delete-usertest:focus:before,
a.delete-fc-item:hover:before,
a.delete-fc-item:focus:before {
  background-position: 87.5% 87.9581151832%;
}
.hilited a.disconnect-professional:hover:before, .hilited a.disconnect-professional:focus:before,
.hilited a.delete-report:hover:before,
.hilited a.delete-report:focus:before,
.hilited a.delete-document:hover:before,
.hilited a.delete-document:focus:before,
.hilited a.delete-usertest:hover:before,
.hilited a.delete-usertest:focus:before,
.hilited a.delete-fc-item:hover:before,
.hilited a.delete-fc-item:focus:before {
  background-position: 100% 0;
}

a.disconnect-professional,
a.delete-report,
a.delete-document {
  position: absolute;
  display: block;
  top: 50%;
  margin-top: -11px;
}

a.disconnect-professional,
a.delete-document {
  right: 30px;
}
html[dir=rtl] a.disconnect-professional,
html[dir=rtl] a.delete-document {
  right: auto;
  left: 20px;
}

a.delete-report {
  right: 0;
}
html[dir=rtl] a.delete-report {
  right: auto;
  left: 0;
}

a.add-fc-item {
  vertical-align: text-top;
  margin-left: 0.5em;
}
a.add-fc-item:before {
  content: "";
  background-image: url(/css/cache/icons-a0a93e28-educational_institution-6116.svg?_1747850527);
  background-repeat: no-repeat;
  background-size: 900%;
  background-position: 12.5% 12.5654450262%;
}
a.add-fc-item:hover:before, a.add-fc-item:focus:before {
  background-position: 25% 0;
}

a.preview-document {
  vertical-align: middle;
  margin-left: 0.5em;
}
a.preview-document:before {
  content: "";
  background-image: url(/css/cache/icons-a0a93e28-educational_institution-6116.svg?_1747850527);
  background-repeat: no-repeat;
  background-size: 900%;
  background-position: 100% 25.1308900524%;
}

.dashboard .intro {
  margin-bottom: 20px;
}
.dashboard .test-360,
.dashboard .list.test-results .test-360 {
  padding-left: 40px;
}
.dashboard .title {
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}
.dashboard .date {
  white-space: nowrap;
}
.dashboard .sub-title {
  font-style: italic;
  color: #999;
}
.dashboard .sub-title > .part2 {
  margin-left: 0.5em;
}
.dashboard .sub-title > .part2:before {
  content: " | ";
  padding-right: 0.5em;
}
.dashboard .title + span.sub-title,
.dashboard .title + span.date {
  padding-left: 5px;
}
.dashboard .meta {
  float: right;
  position: relative;
  text-align: right;
}
html[dir=rtl] .dashboard .meta {
  float: left;
  text-align: left;
}
.dashboard .meta .readable_results {
  position: absolute;
  left: 0;
}
html[dir=rtl] .dashboard .meta .readable_results {
  left: auto;
  right: 0;
}
.dashboard .meta .date {
  color: #999;
}
.dashboard .list.results .meta {
  width: 140px;
}
.dashboard .list.reports .meta {
  width: 90px;
  height: 1.4em;
}
.dashboard .document-upload-label {
  margin-bottom: 0;
  display: none;
}
.dashboard .list > .list__title,
.dashboard .list > .list__header,
.dashboard .block__formatted__title {
  background-color: #f9c699;
  background-color: #fce4cf;
}
.dashboard .list__title .meta {
  text-align: left;
}
html[dir=rtl] .dashboard .list__title .meta {
  text-align: right;
}
.dashboard .list__title .meta .readable_results {
  white-space: normal;
  font-size: 18px;
}

@media print, (min-width: 800px) {
  .dashboard .intro {
    width: calc(60% - 30px);
    margin-bottom: 40px;
  }
  .dashboard .test-360,
.dashboard .list.test-results .test-360 {
    padding-left: 60px;
  }

  .col {
    float: left;
    display: inline-block;
  }
  .col.left {
    width: calc(60% - 30px);
    margin-right: 30px;
  }
  .col.right {
    width: 40%;
  }

  .skills-dashboard .col.left,
.skills-dashboard .col.right {
    width: calc(50% - 15px);
  }
  .skills-dashboard .col.left .button,
.skills-dashboard .col.right .button {
    display: block;
  }

  .user.employee .col.left,
.user.employee .col.right {
    width: calc(50% - 15px);
  }
  .user.employee .employee-track-section-edit {
    float: right;
  }
}
.document .icon {
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  vertical-align: middle;
  margin-right: 0.25em;
}

.document.doc-pdf .icon {
  content: "";
  background-image: url(/png/icons-1722336768235.png);
  background-position: -48px -120px;
  width: 24px;
  height: 24px;
}
.document.doc-pdf.hilited .icon {
  content: "";
  background-image: url(/png/icons-1722336768235.png);
  background-position: -72px -120px;
  width: 24px;
  height: 24px;
}

.document.doc-image .icon {
  content: "";
  background-image: url(/png/icons-1722336768235.png);
  background-position: 0px -120px;
  width: 24px;
  height: 24px;
}
.document.doc-image.hilited .icon {
  content: "";
  background-image: url(/png/icons-1722336768235.png);
  background-position: -24px -120px;
  width: 24px;
  height: 24px;
}

.document.doc-document .icon {
  content: "";
  background-image: url(/png/icons-1722336768235.png);
  background-position: -120px -56px;
  width: 24px;
  height: 24px;
}
.document.doc-document.hilited .icon {
  content: "";
  background-image: url(/png/icons-1722336768235.png);
  background-position: -120px -80px;
  width: 24px;
  height: 24px;
}

.document.doc-spreadsheet .icon {
  content: "";
  background-image: url(/png/icons-1722336768235.png);
  background-position: -96px -120px;
  width: 24px;
  height: 24px;
}
.document.doc-spreadsheet.hilited .icon {
  content: "";
  background-image: url(/png/icons-1722336768235.png);
  background-position: -120px -120px;
  width: 24px;
  height: 24px;
}

@media (min-width: 0) and (max-width: 799px) {
  .report fieldset.form-form {
    padding: 0.5em 1.1em;
  }
  .report div.form-form {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #E2E2E2;
  }
  .report div.form-form:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
  }
  .report div.form-form .form-item {
    margin-bottom: 0;
  }
  .report div.form-form .form-number {
    margin-bottom: 8px;
  }
  .report div.form-form .form-checkbox:last-child {
    margin-bottom: 0;
  }
  .report div.form-form .form-checkbox:last-child label {
    margin-bottom: 0;
  }
}
@media print, (min-width: 800px) {
  .report div.form-form {
    margin-bottom: 1em;
    display: flex;
    align-items: center;
  }
  .report div.form-form .form-item {
    margin-bottom: 0;
  }
  .report div.form-form .form-checkbox label {
    white-space: nowrap;
    margin-bottom: 0;
  }
  .report div.form-form .form-checkbox:first-child {
    padding-right: 1em;
    min-width: 170px;
  }
  .report div.form-form .form-checkbox:last-child {
    padding-left: 1em;
  }
  .report div.form-form .form-number {
    flex-grow: 1;
    display: flex;
    align-items: center;
  }
  .report div.form-form .form-number label {
    white-space: nowrap;
    margin-bottom: 0;
    padding-right: 0.5em;
  }
  .report div.form-form .form-number input {
    width: auto;
    flex-grow: 1;
  }
}
.list.test-results li {
  padding: 1em 1.5em;
}
.list.test-results .wrapper {
  display: block;
}

@media print, (min-width: 800px) {
  .list.test-results .wrapper {
    display: inline-block;
    max-width: 64%;
    vertical-align: middle;
  }
  .list.test-results .wrapper + .button {
    float: right;
    white-space: nowrap;
  }
  html[dir=rtl] .list.test-results .wrapper + .button {
    float: left;
  }
}
table.test-invite-table {
  width: 100%;
}
table.test-invite-table tr > :not(:last-child) {
  padding-right: 0.5em;
}
table.test-invite-table tr + tr > td {
  padding-top: 6px;
}
table.test-invite-table tr > .checkbox {
  width: 3em;
  text-align: center;
  color: #999;
  font-weight: normal;
}
table.test-invite-table tr > .checkbox .form-item {
  margin-bottom: 0;
}
table.test-invite-table th > .form-item.toggle-all {
  text-align: left;
  margin-bottom: 0;
  margin-top: 0.25em;
}
table.test-invite-table th > .form-item.toggle-all label {
  font-weight: bold;
}
table.test-invite-table tr:not(.test-enabled) > .checkbox > * {
  opacity: 0.1;
  pointer-events: none;
}

.list.professionals li * {
  display: inline-block;
  vertical-align: middle;
}
.list.professionals li *:first-child {
  margin-right: 15px;
}
html[dir=rtl] .list.professionals li *:first-child {
  margin-right: 0;
  margin-left: 15px;
}

.list.results div.list__contents,
.list.results li,
.list.tests-invite div.list__contents,
.list.tests-invite li {
  padding-top: 1em;
  padding-bottom: 1em;
}

a.favorite {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-weight: bold;
}
a.favorite.show-label {
  padding-left: 1.8em;
  text-decoration: none;
}
a.favorite:not(.show-label) {
  width: 22px;
  height: 22px;
  font-size: 0;
}
a.favorite:hover {
  color: #f99a1c;
}
a.favorite:hover:before {
  background-position: 0 99.9037385852%;
}
a.favorite:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 21px;
  content: "";
  background-image: url(/css/cache/icons-a0a93e28-educational_institution-6116.svg?_1747850527);
  background-repeat: no-repeat;
  background-size: 900%;
  background-position: 100% 86.7991778755%;
  will-change: transform;
}
a.favorite.exists:before {
  animation: scale 200ms ease-out 100ms;
  background-position: 100% 74.9278039389%;
}
a.favorite.exists:hover:before {
  opacity: 0.6;
}

@media print, (min-width: 800px) {
  .page-title .favorite {
    float: right;
  }
  html[dir=rtl] .page-title .favorite {
    float: left;
  }
}
.table-wrapper.favorites .favorite-toggle {
  width: 24px;
}
.table-wrapper.favorites a.favorite {
  vertical-align: top;
}
.table-wrapper.favorites .compareables {
  padding-bottom: 0;
}
.table-wrapper.favorites img.is-opportunistic {
  margin-left: 0.5em;
  vertical-align: text-bottom;
  cursor: help;
}

.list.favorites a:not(.favorite) {
  display: inline-block;
  max-width: calc(100% - 30px);
}
.list.favorites a.favorite {
  float: right;
  vertical-align: top;
}
html[dir=rtl] .list.favorites a.favorite {
  float: left;
}
.list.favorites img.is-opportunistic {
  margin-left: 0.5em;
  vertical-align: text-bottom;
  cursor: help;
}

.weights-form .page-content .points-description {
  margin: 1em 0 1em;
  color: #999;
}
.weights-form .page-content .fieldset-wrapper {
  margin-top: 1em;
}
.weights-form .page-content input[name^=points] {
  max-width: 4em;
}
.weights-form .page-content .help-block.invalid-points {
  font-weight: bold;
  color: #d83246;
}

@media print, (min-width: 800px) {
  .weights-form .page-content .fieldset-wrapper {
    display: flex;
    flex-flow: row wrap;
  }
  .weights-form .page-content .form-item {
    margin-right: 4%;
    width: calc((100% - 8%) / 3);
  }
  .weights-form .page-content .form-item:nth-child(3n+3) {
    margin-right: 0;
  }

  .weights-form .page-content .form-item select:focus option {
    background-color: #666;
    color: white;
  }

  .weights-form.employment .page-content .form-item {
    margin-right: 4%;
    width: calc((100% - 4%) / 2);
  }
  .weights-form.employment .page-content .form-item:nth-child(2n+2) {
    margin-right: 0;
  }
}
img.is-opportunistic {
  width: 24px;
  height: 24px;
}

.profession-instance h1 {
  margin-bottom: 0.6em;
}
.profession-instance .list {
  margin-top: 2em;
}
.profession-instance p.is-opportunistic-text {
  display: flex;
  margin-bottom: 1em;
}
.profession-instance p.is-opportunistic-text > img.is-opportunistic {
  margin-right: 0.5em;
  align-self: center;
  width: 34px;
  height: 34px;
}
.profession-instance p.is-opportunistic-text > span {
  align-self: center;
}
.profession-instance .compareables ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.profession-instance .compareables li {
  display: inline-block;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
}

form table.profession-instance-synonyms,
form table.profession-tasks {
  width: 100%;
}
form table.profession-instance-synonyms .form-item,
form table.profession-tasks .form-item {
  margin-bottom: 5px;
}
form table.profession-instance-synonyms tr + tr .form-item > label,
form table.profession-tasks tr + tr .form-item > label {
  display: none;
}
form table.profession-instance-synonyms th, form table.profession-instance-synonyms td,
form table.profession-tasks th,
form table.profession-tasks td {
  vertical-align: top;
  text-align: left;
}
form table.profession-instance-synonyms .ui-sortable-handle,
form table.profession-tasks .ui-sortable-handle {
  cursor: move;
}

form table.profession-tasks tr .form-item > label {
  display: none;
}

.profession-family-toggler {
  position: relative;
  display: inline-block;
  margin-left: 0.5em;
  width: 18px;
  height: 8px;
  overflow: hidden;
  text-indent: -999px;
  vertical-align: middle;
}
.profession-family-toggler:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 9px 0 9px;
  border-color: currentColor transparent transparent transparent;
}

.toggle-inited.hide .profession-family {
  display: none;
}
.toggle-inited:not(.hide) {
  padding-bottom: 0;
}

.toggle-inited:not(.hide) .profession-family-toggler:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 12px 10px 12px;
  border-color: transparent transparent currentColor transparent;
}

@media (min-width: 0) and (max-width: 799px) {
  .toggle-inited .profession-family {
    margin-top: 1em;
    background-color: #fff2e6;
  }
}
@media print, (min-width: 800px) {
  .toggle-inited .profession-family {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
.profession_instances li * {
  vertical-align: top;
}
.profession_instances li .profession {
  display: inline-block;
  margin-right: auto;
}
html[dir=rtl] .profession_instances li .profession {
  margin-right: 0;
  margin-left: auto;
}
.profession_instances li .profession-family-toggler {
  vertical-align: middle;
}
.profession_instances li img.is-opportunistic {
  margin-left: 0.5em;
  cursor: help;
}
.profession_instances .line {
  overflow: hidden;
}
.profession_instances .icons {
  white-space: nowrap;
  text-align: right;
}
.profession_instances .icons > * {
  display: inline-block;
  margin-left: 15px;
}

@media print, (min-width: 800px) {
  .profession_instances .line {
    display: flex;
    justify-content: space-between;
  }
}
.handicap-1,
.handicap-2,
.handicap-3 {
  display: inline-block;
  text-indent: 100%;
  text-align: left;
  overflow: hidden;
  content: "";
  background-image: url(/png/icons-1722336768235.png);
  background-position: -80px -80px;
  width: 28px;
  height: 28px;
}

.handicap-2 {
  background-position: -120px 0px;
}

.handicap-3 {
  background-position: -120px -28px;
}

.compare-with-item {
  position: relative;
  display: inline-block;
}
.compare-with-item:not(.with-label) {
  width: 28px;
  height: 28px;
  font-size: 0;
  overflow: hidden;
}
.compare-with-item.with-label {
  padding-left: 35px;
  line-height: 28px;
}
.compare-with-item:before {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 24px;
  height: 24px;
  z-index: 1;
  content: "";
  background-image: url(/css/cache/icons-a0a93e28-educational_institution-6116.svg?_1747850527);
  background-repeat: no-repeat;
  background-size: 900%;
  background-position: 50% 62.8272251309%;
}
.compare-with-item:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  content: "";
  border-radius: 50%;
  background-color: #3dafc7;
}
.compare-with-item.profile:before, .compare-with-item.profile:after {
  filter: grayscale(100%);
}
.compare-with-item + .compare-with-item {
  margin-left: 4px;
}

.compare-with-item:hover:before, .compare-with-item:focus:before {
  opacity: 0.75;
}
.compare-with-item:hover:after, .compare-with-item:focus:after {
  background-color: #f4406d;
}

.compare-with-item.professional-aspect:hover:before, .compare-with-item.professional-aspect:focus:before {
  background-position: 37.5% 62.8272251309%;
}

.compare-with-item.physical-criteria:before {
  background-position: 0 12.5654450262%;
}
.compare-with-item.physical-criteria:hover:before, .compare-with-item.physical-criteria:focus:before {
  background-position: 12.5% 0;
}

.compare-with-item.talent-competence:before {
  background-position: 87.5% 37.6963350785%;
}
.compare-with-item.talent-competence:hover:before, .compare-with-item.talent-competence:focus:before {
  background-position: 87.5% 25.1308900524%;
}

.compare-with-item.skills:before {
  background-position: 25% 62.8272251309%;
}
.compare-with-item.skills:hover:before, .compare-with-item.skills:focus:before {
  background-position: 12.5% 62.8272251309%;
}

.collapsable-instances h1 {
  margin-bottom: 0.6em;
}
.collapsable-instances .list {
  margin-top: 2em;
}
.collapsable-instances .list__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.collapsable-instances li.is-collapsible.visible {
  border: solid 1px #3dafc7;
}
.collapsable-instances .report-education-info-cta {
  margin-top: 0.5em;
  font-size: 14px;
  color: #444;
}
.collapsable-instances .education-instance-variants {
  display: block;
  padding: 0;
}
.collapsable-instances .education-instance-variants li {
  list-style: none;
  padding: 0.5em 20px;
  line-height: 1;
  border: 0;
  border-bottom: solid 1px #DDD;
}
.collapsable-instances .education-instance-variants li .locations {
  margin-top: 5px;
  font-style: italic;
  font-size: 0.95em;
}
.collapsable-instances .education-instance-variants a {
  display: inline-block;
  width: auto;
  max-width: 95%;
}
.collapsable-instances .education-instance-variants a:focus, .collapsable-instances .education-instance-variants a:hover {
  color: #8265a8;
}
.collapsable-instances .educational-institution {
  padding: 15px 20px;
  background-color: #FFF8F0;
}
.collapsable-instances .educational-institution img {
  display: inline-block;
  max-width: 120px;
  max-height: 100px;
  margin-right: 20px;
  vertical-align: top;
}
.collapsable-instances .educational-institution .address {
  display: inline-block;
  vertical-align: top;
}
.collapsable-instances .educational-institution .address a {
  display: block;
  color: #444;
}
.collapsable-instances .educational-institution .address a:first-of-type {
  margin-top: 0.25em;
}
.collapsable-instances .educational-institution .educational-institution-name {
  font-size: 20px;
  font-weight: 600;
}

@media print, (min-width: 800px) {
  .collapsable-instances .education-instance-variants li {
    padding-left: 30px;
    padding-right: 30px;
  }
  .collapsable-instances .educational-institution {
    padding: 30px;
  }
  .collapsable-instances .report-education-info-cta {
    position: absolute;
    bottom: 0.5em;
    right: 30px;
  }

  .report-education-info-form .options-wrapper {
    -moz-columns: 2;
         columns: 2;
  }
}
.connect-education .form-search.with-filters .choice-small {
  max-width: 200px;
}

.list.educations a.button {
  margin-bottom: 0;
}
.list.educations .list__contents li {
  padding-right: 40px;
}

.variants-wrapper td:last-child {
  min-width: 40px;
}
.variants-wrapper tr.instance.has-variants {
  border-bottom: 0;
}
.variants-wrapper tr.variant:not(.last) {
  border-bottom-width: 0;
}

a.disconnect-education {
  display: block;
  width: 22px;
  height: 22px;
  color: #999;
  text-indent: -9999px;
  overflow: hidden;
}
.list__contents a.disconnect-education {
  position: absolute;
  right: 10px;
  top: 0.55em;
}
a.disconnect-education:before {
  display: block;
  margin-right: 0.25em;
  width: 100%;
  height: 100%;
  text-indent: 0;
  content: "";
  background-image: url(/css/cache/icons-a0a93e28-educational_institution-6116.svg?_1747850527);
  background-repeat: no-repeat;
  background-size: 900%;
  background-position: 75% 87.9581151832%;
}
a.disconnect-education:hover:before, a.disconnect-education:focus:before {
  background-position: 87.5% 87.9581151832%;
}

.study-doubt {
  margin-bottom: 1em;
  padding: 14px 20px;
  border-radius: 5px;
  margin-top: 40px;
  border: 1px solid #DDD;
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.3);
  font-size: 22px;
}
.study-doubt h3 {
  margin: 0 0 0.5em 0;
  padding: 0;
}
.study-doubt a {
  text-decoration: none;
  border: none;
  display: inline-block;
  padding: 0.6em 1em;
  color: #fff;
  border-radius: 5px;
  background-color: #3dafc7;
}
.study-doubt a:focus, .study-doubt a:hover {
  background-color: #f99a1c;
}

@media print, (min-width: 800px) {
  .study-doubt {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    padding: 20px 30px;
  }
}
.employee.report .load-employee-track-template-fieldset {
  margin-bottom: 0.8em;
}
.employee.report .load-employee-track-template-fieldset > summary {
  margin-bottom: 0.2em;
}
.employee.report .load-employee-track-template-form,
.employee.report .load-employee-track-template-form .form-item,
.employee.report .load-employee-track-template-form .form-submit {
  display: flex;
}
.employee.report .load-employee-track-template-form * {
  margin-bottom: 0 !important;
}
.employee.report .load-employee-track-template-form > .form-item,
.employee.report .load-employee-track-template-form > .form-item > * {
  white-space: nowrap;
}
.employee.report .load-employee-track-template-form .form-submit {
  margin-left: 1em;
}
.employee.report table.fml .category {
  font-size: 130%;
  font-weight: bold;
}
.employee.report table.fml tr + tr.category td {
  padding-top: 1.2em !important;
}
.employee.report table.fml tr.question th {
  color: #3dafc7 !important;
}
.employee.report table.fml tr:not(.category) + tr.question th {
  padding-top: 1.2em !important;
}
.employee.report details.fieldset[open] > summary {
  margin-bottom: 0.5em;
}
.employee.report details.fieldset:not([open]) > summary > .add-fc-item {
  display: none;
}
.employee.report .form-item.irrelevant {
  display: none;
}
.employee.report .form-item.form-collection {
  position: relative;
}
.employee.report .form-item.form-collection > .form-item {
  background-color: #eee;
  position: relative;
  padding-left: 30px;
}
.employee.report .form-item.form-collection > .form-item:before {
  content: "⇵";
  position: absolute;
  top: calc(50% - 5px);
  left: 4px;
  transform: translate(0, -50%);
  height: 20px;
  width: 20px;
  /*background: lightgreen;*/
  font-size: 24px;
  font-weight: bold;
}
.employee.report .form-control.paragraph-title {
  font-weight: bold;
}
.employee.report .form-item.has-delete-icon > .form-control {
  width: calc(100% - 22px - 0.5em);
  display: inline-block;
}
.employee.report .ui-sortable-handle {
  cursor: move;
}

.image-portal-header {
  display: block;
  max-height: 200px;
  margin-top: 36px;
  margin-bottom: 36px;
  margin-left: auto;
  margin-right: auto;
}

.divider-portal {
  margin-left: -36px;
  margin-right: -36px;
}

.portal-translations-link a {
  display: inline-block;
  padding: 0.3em 1.2em;
  text-decoration: none;
  line-height: 1.2;
  border: 2px solid #3dafc7;
  border-radius: 5px;
}
.portal-translations-link a:hover, .portal-translations-link a:focus {
  border-color: #8265a8;
}

.title-portal {
  color: #3dafc7;
}

.portal-color-changer input[type=text] {
  display: inline-block;
  width: calc(100% - 5.5em - 0.5em);
  vertical-align: middle;
}
.portal-color-changer .help-block {
  display: inline-block;
  vertical-align: middle;
  width: 5.5em;
  padding-left: 5px;
  margin-left: 0 !important;
  margin-top: 0;
}
.portal-color-changer .icon-chevron-right,
.portal-color-changer .from-color,
.portal-color-changer .to-color {
  display: inline-block;
  vertical-align: middle;
  width: 1.5em;
  height: 1.5em;
}
.portal-color-changer .from-color,
.portal-color-changer .to-color {
  border: 1px solid #999;
  border-radius: 50%;
  transition: background-color 500ms ease;
}
.portal-color-changer .icon-chevron-right {
  position: relative;
}
.portal-color-changer .icon-chevron-right:before {
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background-image: url(/css/cache/icons-a0a93e28-educational_institution-6116.svg?_1747850527);
  background-repeat: no-repeat;
  background-size: 900%;
  background-position: 62.5% 50.2617801047%;
}

@media print, (min-width: 800px) {
  .portal-color-changer input[type=text] {
    width: calc(60% - 5.5em);
  }
  .portal-color-changer .help-block {
    padding-left: 10px;
  }
}
.course-educational-institutions > li > a {
  text-decoration: none;
}
.course-educational-institutions > li > a .name {
  display: inline-block;
  width: 80%;
}
.course-educational-institutions > li > a .costs {
  font-weight: bold;
  color: black;
}
.course-educational-institutions > li.visible > a .costs {
  color: white;
}

p.course-ext-warning {
  color: #999;
  font-size: 85%;
  margin-bottom: 1em;
}

.translation-form .form-submit {
  padding: 0 0 18px 18px;
}

fieldset.translation {
  padding: 0.4em 1em;
  max-width: 100%;
  box-shadow: none;
  border-radius: 0;
  border: none;
  border-bottom: solid 1px #DDD;
}
fieldset.translation h3 {
  word-break: break-all;
}
fieldset.translation .form-control-static {
  white-space: pre-line;
}
fieldset.translation .form-textarea textarea {
  height: 2.8em;
  width: 100%;
}
fieldset.translation .form-textarea textarea.focused {
  height: 10em;
}

@media print, (min-width: 800px) {
  .translation .form-static {
    width: calc(50% - 10px);
    margin-right: 10px;
    max-height: 10em;
    overflow-y: auto;
  }
  .translation .form-textarea {
    width: 50%;
  }
  .translation .form-item {
    float: left;
    display: inline-block;
  }
}
.clearfix:after, fieldset:after,
details.fieldset:after, .form-actions:after, .form-search:after, .per-page-and-paginator:after, .page-title:after, .list__footer:after, .table-filters:after,
.table-help:after, .table-footer:after, .page-title .title-prefix:after, .region-content-top:after,
.region-content-bottom:after, .profile__menu__content:after, .profile-wrapper:after, .oasez-test:after, .dashboard .page-content:after, .skills-dashboard .page-content:after, .list.test-results li:after {
  content: " ";
  display: table;
  clear: both;
}

fieldset,
details.fieldset, .list, .block__formatted, .frontpage .col, .smart-search-form .form-select, .form-item.form-radios.list-format .options-wrapper {
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.3);
}

/*!
Chosen, a Select Box Enhancer for jQuery and Prototype
by Patrick Filler for Harvest, http://getharvest.com

Version 1.8.7
Full source at https://github.com/harvesthq/chosen
Copyright (c) 2011-2018 Harvest http://getharvest.com

MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md
This file is generated by `grunt build`, do not edit it by hand.
*/
/* @group Base */
.chosen-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.chosen-container * {
  box-sizing: border-box;
}

.chosen-container .chosen-drop {
  position: absolute;
  top: 100%;
  z-index: 1010;
  width: 100%;
  border: 1px solid #aaa;
  border-top: 0;
  background: #fff;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  clip: rect(0, 0, 0, 0);
  -webkit-clip-path: inset(100% 100%);
  clip-path: inset(100% 100%);
}

.chosen-container.chosen-with-drop .chosen-drop {
  clip: auto;
  -webkit-clip-path: none;
  clip-path: none;
}

.chosen-container a {
  cursor: pointer;
}

.chosen-container .search-choice .group-name, .chosen-container .chosen-single .group-name {
  margin-right: 4px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: normal;
  color: #999999;
}

.chosen-container .search-choice .group-name:after, .chosen-container .chosen-single .group-name:after {
  content: ":";
  padding-left: 2px;
  vertical-align: top;
}

/* @end */
/* @group Single Chosen */
.chosen-container-single .chosen-single {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0 0 0 8px;
  height: 25px;
  border: 1px solid #aaa;
  border-radius: 5px;
  background-color: #fff;
  background: linear-gradient(#fff 20%, #f6f6f6 50%, #eee 52%, #f4f4f4 100%);
  background-clip: padding-box;
  box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, 0.1);
  color: #444;
  text-decoration: none;
  white-space: nowrap;
  line-height: 24px;
}

.chosen-container-single .chosen-default {
  color: #999;
}

.chosen-container-single .chosen-single span {
  display: block;
  overflow: hidden;
  margin-right: 26px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chosen-container-single .chosen-single-with-deselect span {
  margin-right: 38px;
}

.chosen-container-single .chosen-single abbr {
  position: absolute;
  top: 6px;
  right: 26px;
  display: block;
  width: 12px;
  height: 12px;
  background: url("/images/chosen/chosen-sprite.png") -42px 1px no-repeat;
  font-size: 1px;
}

.chosen-container-single .chosen-single abbr:hover {
  background-position: -42px -10px;
}

.chosen-container-single.chosen-disabled .chosen-single abbr:hover {
  background-position: -42px -10px;
}

.chosen-container-single .chosen-single div {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 18px;
  height: 100%;
}

.chosen-container-single .chosen-single div b {
  display: block;
  width: 100%;
  height: 100%;
  background: url("/images/chosen/chosen-sprite.png") no-repeat 0px 2px;
}

.chosen-container-single .chosen-search {
  position: relative;
  z-index: 1010;
  margin: 0;
  padding: 3px 4px;
  white-space: nowrap;
}

.chosen-container-single .chosen-search input[type=text] {
  margin: 1px 0;
  padding: 4px 20px 4px 5px;
  width: 100%;
  height: auto;
  outline: 0;
  border: 1px solid #aaa;
  background: url("/images/chosen/chosen-sprite.png") no-repeat 100% -20px;
  font-size: 1em;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
}

.chosen-container-single .chosen-drop {
  margin-top: -1px;
  border-radius: 0 0 4px 4px;
  background-clip: padding-box;
}

.chosen-container-single.chosen-container-single-nosearch .chosen-search {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  -webkit-clip-path: inset(100% 100%);
  clip-path: inset(100% 100%);
}

/* @end */
/* @group Results */
.chosen-container .chosen-results {
  color: #444;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0 4px 4px 0;
  padding: 0 0 0 4px;
  max-height: 240px;
  -webkit-overflow-scrolling: touch;
}

.chosen-container .chosen-results li {
  display: none;
  margin: 0;
  padding: 5px 6px;
  list-style: none;
  line-height: 15px;
  word-wrap: break-word;
  -webkit-touch-callout: none;
}

.chosen-container .chosen-results li.active-result {
  display: list-item;
  cursor: pointer;
}

.chosen-container .chosen-results li.disabled-result {
  display: list-item;
  color: #ccc;
  cursor: default;
}

.chosen-container .chosen-results li.highlighted {
  background-color: #3875d7;
  background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);
  color: #fff;
}

.chosen-container .chosen-results li.no-results {
  color: #777;
  display: list-item;
  background: #f4f4f4;
}

.chosen-container .chosen-results li.group-result {
  display: list-item;
  font-weight: bold;
  cursor: default;
}

.chosen-container .chosen-results li.group-option {
  padding-left: 15px;
}

.chosen-container .chosen-results li em {
  font-style: normal;
  text-decoration: underline;
}

/* @end */
/* @group Multi Chosen */
.chosen-container-multi .chosen-choices {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0 5px;
  width: 100%;
  height: auto;
  border: 1px solid #aaa;
  background-color: #fff;
  background-image: linear-gradient(#eee 1%, #fff 15%);
  cursor: text;
}

.chosen-container-multi .chosen-choices li {
  float: left;
  list-style: none;
}

.chosen-container-multi .chosen-choices li.search-field {
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.chosen-container-multi .chosen-choices li.search-field input[type=text] {
  margin: 1px 0;
  padding: 0;
  height: 25px;
  outline: 0;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none;
  color: #999;
  font-size: 100%;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
  width: 25px;
}

.chosen-container-multi .chosen-choices li.search-choice {
  position: relative;
  margin: 3px 5px 3px 0;
  padding: 3px 20px 3px 5px;
  border: 1px solid #aaa;
  max-width: 100%;
  border-radius: 3px;
  background-color: #eeeeee;
  background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  background-size: 100% 19px;
  background-repeat: repeat-x;
  background-clip: padding-box;
  box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  color: #333;
  line-height: 13px;
  cursor: default;
}

.chosen-container-multi .chosen-choices li.search-choice span {
  word-wrap: break-word;
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
  position: absolute;
  top: 4px;
  right: 3px;
  display: block;
  width: 12px;
  height: 12px;
  background: url("/images/chosen/chosen-sprite.png") -42px 1px no-repeat;
  font-size: 1px;
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
  background-position: -42px -10px;
}

.chosen-container-multi .chosen-choices li.search-choice-disabled {
  padding-right: 5px;
  border: 1px solid #ccc;
  background-color: #e4e4e4;
  background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  color: #666;
}

.chosen-container-multi .chosen-choices li.search-choice-focus {
  background: #d4d4d4;
}

.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
  background-position: -42px -10px;
}

.chosen-container-multi .chosen-results {
  margin: 0;
  padding: 0;
}

.chosen-container-multi .chosen-drop .result-selected {
  display: list-item;
  color: #ccc;
  cursor: default;
}

/* @end */
/* @group Active  */
.chosen-container-active .chosen-single {
  border: 1px solid #5897fb;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.chosen-container-active.chosen-with-drop .chosen-single {
  border: 1px solid #aaa;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background-image: linear-gradient(#eee 20%, #fff 80%);
  box-shadow: 0 1px 0 #fff inset;
}

.chosen-container-active.chosen-with-drop .chosen-single div {
  border-left: none;
  background: transparent;
}

.chosen-container-active.chosen-with-drop .chosen-single div b {
  background-position: -18px 2px;
}

.chosen-container-active .chosen-choices {
  border: 1px solid #5897fb;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.chosen-container-active .chosen-choices li.search-field input[type=text] {
  color: #222 !important;
}

/* @end */
/* @group Disabled Support */
.chosen-disabled {
  opacity: 0.5 !important;
  cursor: default;
}

.chosen-disabled .chosen-single {
  cursor: default;
}

.chosen-disabled .chosen-choices .search-choice .search-choice-close {
  cursor: default;
}

/* @end */
/* @group Right to Left */
.chosen-rtl {
  text-align: right;
}

.chosen-rtl .chosen-single {
  overflow: visible;
  padding: 0 8px 0 0;
}

.chosen-rtl .chosen-single span {
  margin-right: 0;
  margin-left: 26px;
  direction: rtl;
}

.chosen-rtl .chosen-single-with-deselect span {
  margin-left: 38px;
}

.chosen-rtl .chosen-single div {
  right: auto;
  left: 3px;
}

.chosen-rtl .chosen-single abbr {
  right: auto;
  left: 26px;
}

.chosen-rtl .chosen-choices li {
  float: right;
}

.chosen-rtl .chosen-choices li.search-field input[type=text] {
  direction: rtl;
}

.chosen-rtl .chosen-choices li.search-choice {
  margin: 3px 5px 3px 0;
  padding: 3px 5px 3px 19px;
}

.chosen-rtl .chosen-choices li.search-choice .search-choice-close {
  right: auto;
  left: 4px;
}

.chosen-rtl.chosen-container-single .chosen-results {
  margin: 0 0 4px 4px;
  padding: 0 4px 0 0;
}

.chosen-rtl .chosen-results li.group-option {
  padding-right: 15px;
  padding-left: 0;
}

.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
  border-right: none;
}

.chosen-rtl .chosen-search input[type=text] {
  padding: 4px 5px 4px 20px;
  background: url("/images/chosen/chosen-sprite.png") no-repeat -30px -20px;
  direction: rtl;
}

.chosen-rtl.chosen-container-single .chosen-single div b {
  background-position: 6px 2px;
}

.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
  background-position: -12px 2px;
}

/* @end */
/* @group Retina compatibility */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi), only screen and (min-resolution: 1.5dppx) {
  .chosen-rtl .chosen-search input[type=text],
.chosen-container-single .chosen-single abbr,
.chosen-container-single .chosen-single div b,
.chosen-container-single .chosen-search input[type=text],
.chosen-container-multi .chosen-choices .search-choice .search-choice-close,
.chosen-container .chosen-results-scroll-down span,
.chosen-container .chosen-results-scroll-up span {
    background-image: url("/images/chosen/chosen-sprite@2x.png") !important;
    background-size: 52px 37px !important;
    background-repeat: no-repeat !important;
  }
}
/* @end */