@charset "UTF-8";
/**
 * Custom theme for the application portal based on Bootstrap 4.1
 * This theme follows the style of the main site https://ecn-berlin.de
 * @author VCAT - Patrick Blawert
 * @created 2018-11-01
 */
/*--------------------------------------------------------------
# Globals
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Popup Messages
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Global CSS Custom Properties
--------------------------------------------------------------*/
:root {
  --school-color-ecn: #ff0000;
  --school-color-mab: #0066a1;
  --school-color-neuro: #ff3a5a;
  --default-school-color: var(--school-color-ecn);
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  align-items: stretch;
  min-height: 100vh;
}
body.no-scroll {
  overflow: hidden;
}

#site-content {
  -webkit-flex: 1;
  flex: 1;
  font-family: "DIN Next W01 Regular", Helvetica, Arial, sans, sans-serif;
}

h1 {
  font-size: 30px;
  line-height: 38px;
  margin-bottom: 0.6em;
  color: #000000;
}

.linked-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  clear: both;
  overflow: auto;
}
.linked-list a, .linked-list a:visited {
  color: #ffffff;
  font-size: 16px;
  text-decoration: underline;
}
.linked-list a:hover {
  text-decoration: none;
  color: #262626;
}
.linked-list li {
  display: inline-block;
  float: left;
  margin-left: 10px;
}
.linked-list li:after {
  display: inline-block;
  content: "|";
  color: #ffffff;
  font-weight: bold;
  margin-left: 10px;
}
.linked-list li:last-child:after {
  content: "";
}
.linked-list li:first-child {
  margin-left: 0;
}

ul.spread, ol.spread {
  padding-left: 30px;
}
ul.spread li, ol.spread li {
  padding-left: 12px;
  margin-bottom: 8px;
}

ul.minimal {
  list-style-type: none;
}

.content-highlight-bordered {
  border: 10px solid #ededed;
}

.content-highlight-background {
  background: #ededed;
}

.text-error {
  display: block;
  color: #ff0000;
}

.text-grey {
  color: #727272;
}

.text-highlight {
  color: #ff0000;
}

.fa-huge {
  font-size: 3em;
}

.text-wrap {
  word-break: break-all;
}

.vcard {
  box-shadow: 0 2px 3px 2px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  background-color: #ffffff;
}
.vcard .vcard-usertitle {
  color: #5a7391;
  font-size: 20px;
  font-weight: 600;
}
.vcard .vcard-userrole {
  text-transform: uppercase;
  color: #5b9bd1;
  font-size: 13px;
  font-weight: 600;
}

.vcard-paginate {
  color: #333;
}
.vcard-paginate a, .vcard-paginate a:visited {
  white-space: nowrap;
  padding: 6px 12px;
  line-height: 1.42857;
  text-decoration: none;
  color: #337ab7;
  background-color: #fff;
  border: 1px solid #ddd;
  margin-left: -1px;
}
.vcard-paginate a:first-child, .vcard-paginate a:visited:first-child {
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
.vcard-paginate a:last-child, .vcard-paginate a:visited:last-child {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}
.vcard-paginate a.active, .vcard-paginate a.active:hover, .vcard-paginate a:visited.active, .vcard-paginate a:visited.active:hover {
  z-index: 3;
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
  cursor: not-allowed;
}
.vcard-paginate a:hover, .vcard-paginate a:focus {
  z-index: 2;
  color: #23527c;
  background-color: #eee;
  border-color: #ddd;
}

.school-color-border-right {
  border-right-style: solid;
  border-right-color: var(--default-school-color);
  border-right-width: 5px;
}

.school-color-border-bottom {
  width: 100%;
  height: 5px;
  border-style: solid;
  border-color: var(--default-school-color);
  background-color: var(--default-school-color);
}

.main-footer .row {
  background-color: var(--default-school-color);
}
.main-footer .footer-logo {
  display: block;
  max-width: 150px;
  max-height: 150px;
  margin: 20px;
}
.main-footer .footer-text {
  color: #ffffff;
  font-size: 30px;
}

#custom-message-overlay {
  display: none;
  position: fixed !important;
  overflow-x: hidden;
  overflow-y: auto;
  top: 9rem;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 500px;
  z-index: 1150;
  outline: 0;
  pointer-events: none;
}
#custom-message-overlay .custom-message {
  position: relative;
  width: 100%;
  padding: 20px 50px 20px 60px;
  border: 1px solid transparent;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  -moz-box-shadow: -2px 2px 4px 0 #000;
  -webkit-box-shadow: -2px 2px 4px 0 #000;
  box-shadow: -2px 2px 4px 0 #000;
  pointer-events: auto;
  margin-left: 6px;
  cursor: pointer;
}
#custom-message-overlay .custom-message h4 {
  border-bottom: 1px solid;
}
#custom-message-overlay .custom-message + .custom-message {
  margin-top: 30px;
}
#custom-message-overlay .custom-message-notify {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}
#custom-message-overlay .custom-message-notify:before {
  position: absolute;
  display: block;
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 900;
  content: "";
  pointer-events: none;
  font-size: 1.6rem;
  top: 14px;
  left: 16px;
}
#custom-message-overlay .custom-message-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}
#custom-message-overlay .custom-message-success:before {
  position: absolute;
  display: block;
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 900;
  content: "";
  pointer-events: none;
  font-size: 1.6rem;
  top: 14px;
  left: 16px;
}
#custom-message-overlay .custom-message-failure {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}
#custom-message-overlay .custom-message-failure:before {
  position: absolute;
  display: block;
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 900;
  content: "";
  pointer-events: none;
  font-size: 1.6rem;
  top: 14px;
  left: 16px;
}

#site-header .logo-images img {
  display: block;
  margin-left: 1em;
}
#site-header .logo-images img:first-child {
  margin: 0;
}
#site-header .welcome-name {
  text-align: right;
  border-right: 4px solid #ededed;
  padding-right: 10px;
}
#site-header .welcome-name h3 {
  margin: 0;
}
#site-header .navbar-modded {
  background-color: #ffffff;
}
#site-header .navbar-modded .navbar-brand, #site-header .navbar-modded .navbar-brand:visited {
  color: var(--default-school-color);
  font-size: 1.5rem;
  border: 2px solid var(--default-school-color);
  border-radius: 8px;
  padding: 0.1rem 1rem;
}
#site-header .navbar-modded .navbar-brand:hover, #site-header .navbar-modded .navbar-brand:focus, #site-header .navbar-modded .navbar-brand:visited:hover, #site-header .navbar-modded .navbar-brand:visited:focus {
  color: #262626;
  border-color: #262626;
}
#site-header .navbar-modded .navbar-brand.active, #site-header .navbar-modded .navbar-brand:visited.active {
  color: #727272;
  border: 2px solid #727272;
}
#site-header .navbar-modded .navbar-toggler {
  border: 2px solid var(--default-school-color);
  border-radius: 8px;
}
#site-header .navbar-modded .navbar-toggler .fa {
  color: var(--default-school-color);
}
#site-header .navbar-modded .nav-item {
  border-bottom: 2px solid var(--default-school-color);
}
#site-header .navbar-modded .nav-item.active {
  border-bottom: none;
}
#site-header .navbar-modded .nav-item.active .nav-link {
  color: #727272;
}
#site-header .navbar-modded .nav-item .nav-link {
  color: var(--default-school-color);
  font-size: 1.2rem;
  line-height: 1;
}
#site-header .navbar-modded .nav-item:hover, #site-header .navbar-modded .nav-item:focus {
  border-color: #000000;
}
#site-header .navbar-modded .nav-item:hover .nav-link, #site-header .navbar-modded .nav-item:focus .nav-link {
  color: #000000;
}
#site-header .navbar-modded .nav-item:first-child {
  margin-left: 0;
}
@media (min-width: 768px) {
  #site-header .navbar-modded .nav-item {
    margin-left: 1em;
  }
}
#site-header .navbar-modded .dropdown-menu {
  border: none;
  border-radius: 0;
  padding: 0;
}
#site-header .navbar-modded .dropdown-item .fa {
  width: 22px;
  height: 20px;
  text-align: center;
}
@media (min-width: 768px) {
  #site-header .navbar-modded .dropdown-menu {
    background-color: var(--default-school-color);
  }
  #site-header .navbar-modded .dropdown-menu .dropdown-item, #site-header .navbar-modded .dropdown-menu .dropdown-item:visited {
    color: #ffffff;
  }
  #site-header .navbar-modded .dropdown-menu .dropdown-item:hover, #site-header .navbar-modded .dropdown-menu .dropdown-item:focus {
    color: #262626;
  }
}

.nav-pills .nav-link {
  border-radius: 0;
}
.nav-pills .dropdown-menu {
  padding: 0;
  width: 100%;
  border-radius: 0;
}
.nav-pills .dropdown-menu .dropdown-item {
  padding: 0.5rem 1.5rem;
}

.form-signin {
  width: 100%;
  max-width: 400px;
  padding: 30px;
  margin: 0 auto;
}

.form-register {
  padding: 30px;
  margin: 0 auto;
}

.static-popover {
  position: absolute;
  top: 6px;
  right: 26px;
  z-index: 10;
  font-size: 12px;
  border-radius: 50px !important;
  padding: 3px 10px;
  color: #ffffff;
}

.info-popover {
  font-size: 12px;
  border-radius: 50px !important;
  padding: 3px 10px;
}

.form-control, .btn {
  border-radius: 0;
}

.alert {
  border-radius: 0;
}

.btn-red {
  background-color: #ff0000;
}

.input-group-text {
  min-width: 46px;
  border-radius: 0;
}

.form-text {
  line-height: 1.2;
}

form button[type=submit] {
  background-color: #ff0000;
  color: #ffffff;
}

.form-control-label {
  font-weight: bold;
  margin-bottom: 0;
  line-height: 1.1;
}
.form-control-label.required:after {
  content: " *";
  color: #ff0000;
}

.card {
  border-radius: 0;
  background-color: #e9ecef;
}

textarea {
  min-height: 12em;
}

.custom-file-label {
  border-radius: 0;
}

.form-check {
  padding-left: 0;
}
.form-check + .form-check {
  margin-top: 12px;
}
.form-check .form-check-label {
  display: block;
  padding-left: 35px;
  cursor: pointer;
  line-height: 22px;
  min-height: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.form-check .form-check-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.form-check .form-check-label input:checked ~ .checkmark {
  background-color: #cb0000;
}
.form-check .form-check-label .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  width: 22px;
  background-color: #a1a1a1;
}
.form-check .form-check-label .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 8px;
  top: 4px;
  width: 7px;
  height: 12px;
  border: solid #ffffff;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.form-check .form-check-label:hover input:not([disabled]) ~ .checkmark, .form-check .form-check-label:hover input:not(:disabled) ~ .checkmark {
  background-color: #ff0000;
}
.form-check .form-check-label input:checked ~ .checkmark:after {
  display: block;
}
.form-check .form-check-label-radio {
  display: block;
  padding-left: 35px;
  cursor: pointer;
  line-height: 22px;
  min-height: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.form-check .form-check-label-radio input {
  position: absolute;
  opacity: 0;
}
.form-check .form-check-label-radio input:checked ~ .checkmark {
  background-color: #cb0000;
}
.form-check .form-check-label-radio .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  width: 22px;
  background-color: #a1a1a1;
  border-radius: 50%;
}
.form-check .form-check-label-radio .checkmark:after {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffffff;
}
.form-check .form-check-label-radio:hover input:not([disabled]) ~ .checkmark, .form-check .form-check-label-radio:hover input:not(:disabled) ~ .checkmark {
  background-color: #ff0000;
}
.form-check.disabled .form-check-label, .form-check.disabled .form-check-label-radio {
  text-decoration: line-through;
  color: #727272;
}
.form-check.disabled .form-check-label input:disabled ~ .checkmark, .form-check.disabled .form-check-label input[disabled] ~ .checkmark, .form-check.disabled .form-check-label-radio input:disabled ~ .checkmark, .form-check.disabled .form-check-label-radio input[disabled] ~ .checkmark {
  background-color: #727272;
}
.form-check .form-check-label.table-choices {
  display: flex;
  justify-content: center;
  padding-left: 0;
}
.form-check .form-check-label.table-choices .checkmark {
  position: relative;
  display: block;
}
.form-check .form-check-label-radio.table-choices {
  display: flex;
  justify-content: center;
  padding-left: 0;
}
.form-check .form-check-label-radio.table-choices .checkmark {
  position: relative;
  display: block;
}
.form-check .form-check-label-radio.table-choices .checkmark::after {
  position: relative;
  display: block;
}

.progress {
  position: relative;
  background-color: #a1a1a1;
  border-radius: 0;
}
.progress .progress-bar {
  background-color: #ff0000;
}
.progress .progress-bar.strong-enough {
  background-color: #4caf50;
}
.progress .progress-label {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #ffffff;
}

.application-submitted {
  font-size: 0.8em;
  color: #727272;
}

.select2-container .select2-selection--single {
  border-radius: 0;
  border: 1px solid #ced4da;
  background-color: #ffffff;
  color: #495057;
  font-size: 1rem;
  height: calc(2.25rem + 2px);
  line-height: 1.5;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  height: calc(2.25rem + 2px);
  line-height: 1.5;
  padding: 0.375rem 0.75rem;
}
.select2-container .select2-selection--single .select2-selection__arrow {
  height: calc(2.25rem + 2px);
  right: 5px;
}

.entry-counter {
  font-weight: bold;
  font-size: 1.6em;
}

.progress.progress-not-empty .progress-bar {
  min-width: 4%;
}

#custom-modal .modal-content {
  border-radius: 0;
}
#custom-modal .modal-header {
  border-radius: 0;
}
#custom-modal .modal-header .fa {
  font-size: 1.4rem;
  margin-right: 1rem;
}
#custom-modal .modal-header .close {
  color: #ffffff;
  opacity: 1;
}
#custom-modal .modal-content.delete .modal-header {
  background-color: #ff0000;
  color: #ffffff;
}

#global-loading-overlay {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgba(114, 114, 114, 0.4);
  z-index: 250;
}
#global-loading-overlay .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  background-color: rgba(114, 114, 114, 0.8);
  color: #ffffff;
  padding: 30px 50px;
}
#global-loading-overlay .wrapper .fa {
  display: block;
  font-size: 3rem;
  animation: fa-spin 1.6s infinite linear;
}
#global-loading-overlay .wrapper span {
  font-size: 1.6rem;
  font-weight: bold;
  margin-top: 0.5rem;
}

body.sortable.dragging, body.sortable.dragging * {
  cursor: move !important;
}
body.sortable ol li {
  cursor: grab;
  cursor: -webkit-grab;
}
body.sortable .dragged {
  position: absolute;
  opacity: 0.5;
  z-index: 2000;
}
body.sortable ol.limited_drop_targets li.placeholder {
  position: relative;
}
body.sortable ol.limited_drop_targets li.placeholder:before {
  position: absolute;
}
body.sortable ol {
  margin: 0 0 9px 0;
  min-height: 10px;
}
body.sortable ol li {
  display: block;
  margin: 5px;
  padding: 5px;
  border: 1px solid #CCC;
  color: #0088cc;
  background: #eee;
}
body.sortable ol li.placeholder {
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
}
body.sortable ol li.placeholder:before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  margin-top: -5px;
  left: -5px;
  top: -4px;
  border: 5px solid transparent;
  border-left-color: red;
  border-right: none;
}

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