/*!
 * 
 *         SimpleBar.js - v2.5.1
 *         Scrollbars, simpler.
 *         https://grsmto.github.io/simplebar/
 *         
 *         Made by Adrien Grsmto from a fork by Jonathan Nicol
 *         Under MIT License
 *       
 */
[data-simplebar] {
  position: relative;
  z-index: 0;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  /* Trigger native scrolling for mobile, if not supported, plugin is used. */
}
[data-simplebar="init"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.simplebar-scroll-content {
  overflow-x: hidden;
  overflow-y: scroll;
  min-width: 100%;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.simplebar-content {
  overflow-x: scroll;
  overflow-y: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 100%;
}
.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 11px;
}
.simplebar-scrollbar {
  position: absolute;
  right: 2px;
  border-radius: 7px;
  min-height: 10px;
  width: 7px;
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  background: black;
  background-clip: padding-box;
}
.simplebar-track:hover .simplebar-scrollbar {
  /* When hovered, remove all transitions from drag handle */
  opacity: 0.5;
  -webkit-transition: opacity 0 linear;
  transition: opacity 0 linear;
}
.simplebar-track .simplebar-scrollbar.visible {
  opacity: 0.5;
}
.simplebar-track.horizontal {
  left: 0;
  width: auto;
  height: 11px;
}
.simplebar-track.vertical {
  top: 0;
}
.horizontal.simplebar-track .simplebar-scrollbar {
  right: auto;
  top: 2px;
  height: 7px;
  min-height: 0;
  min-width: 10px;
  width: auto;
}
#jwt_calendar {
  min-height: 50vh;
  position: relative;
  padding: 0 2em;
}
#jwt_calendar .clickable {
  cursor: pointer;
}
#jwt_calendar.course-manager #course-loader {
  background: var(--bs-yellow);
}
#course-loader {
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  height: 50vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 999;
  background: #cce4f5;
}
#course-loader:before {
  content: '';
  display: block;
  border: 8px solid #727272;
  /* Light grey */
  border-top: 8px solid #3498db;
  /* Blue */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}
#course-loader:after {
  content: 'wird geladen...';
  display: block;
  margin: 0 auto;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#course-entries {
  position: relative;
  margin-top: 5.5em;
}
#course-entries .entry {
  padding: 1em 0;
  border-bottom: 1px #727272 solid;
}
@media all and (min-width: 1041px) {
  #course-entries .entry {
    display: flex;
  }
}
#course-entries .entry.disabled {
  display: none;
}
#course-entries .entry.hidden-active {
  background: repeating-linear-gradient(45deg, transparent, transparent 15px, #d2e0af 5px, #d2e0af 17px);
}
#course-entries .entry .meta {
  flex: 3;
}
#course-entries .entry .meta .school {
  margin: 0;
  margin-bottom: 1em;
}
#course-entries .entry .meta .instructors {
  color: #727272;
}
#course-entries .entry .info {
  flex: 5;
}
#course-entries .entry .info h3 {
  font-weight: bold;
  font-size: 1em;
  line-height: 1.55;
  margin: 0;
  margin-bottom: 1em;
  padding: 0;
}
#course-entries .entry .info div {
  color: #727272;
}
#course-entries .entry .dates {
  display: flex;
  flex-direction: column;
  flex: 2;
  padding-top: 1em;
}
@media all and (min-width: 1041px) {
  #course-entries .entry .dates {
    text-align: center;
    padding-top: 0;
  }
}
#course-entries .entry .dates a {
  margin-top: auto;
  padding-top: 1em;
}
@media all and (min-width: 1041px) {
  #course-entries .entry .dates a {
    padding-top: 0;
  }
}
#course-counter {
  margin-top: 3.5em;
  padding: 1em 0;
  border-bottom: 1px #727272 solid;
}
#new-course {
  margin-bottom: 20px;
}
#course-details.hidden-active {
  background: repeating-linear-gradient(45deg, transparent, transparent 15px, #d2e0af 5px, #d2e0af 17px);
}
#course-details .hide {
  display: none;
}
#course-details .course-school {
  color: #727272;
}
#course-details .delete-course {
  position: absolute;
  top: 0;
  right: 0;
}
#course-details .delete-course button {
  background-color: transparent;
  border: none;
}
#course-details .delete-course button:hover {
  background-color: #9aaa72 5px;
  text-decoration: underline;
}
#course-details .details {
  display: flex;
}
#course-details .details .meta,
#course-details .details .instructors,
#course-details .details .access {
  flex-grow: 1;
  padding-left: 15px;
}
#course-details .details .meta > label,
#course-details .details .instructors > label,
#course-details .details .access > label {
  display: block;
  color: #727272;
  margin: 0;
  padding: 0;
}
#course-details .details .meta > span,
#course-details .details .instructors > span,
#course-details .details .access > span {
  display: inline-block;
  margin: 0;
  padding: 0;
  margin-bottom: 1em;
}
#course-details .back-link {
  display: inline-block;
  margin: 10px 15px 20px 0;
}
#course-details .bodytext,
#course-details .dates,
#course-details .details,
#course-details .signature,
#course-details .contact {
  display: block;
  margin: 1.5em 0;
}
#course-details .place input,
#course-details .contact input {
  width: 100%;
}
#course-details .place input.date-city,
#course-details .contact input.date-city {
  width: calc(100% - 60px);
}
#course-details .place input.date-zip,
#course-details .contact input.date-zip {
  width: 50px;
  margin-right: 10px;
}
#course-details .date {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 15px;
}
#course-details .date .time {
  min-width: 200px;
}
#course-details .date .time input[type="text"] {
  width: 80px;
}
#course-details .date .place {
  flex-grow: 1;
}
@media all and (min-width: 1041px) {
  #course-details .main {
    display: flex;
  }
}
#course-details .main .bodytext {
  flex-grow: 1;
  order: 0;
}
#course-details .main .details {
  width: 200px;
  order: 1;
}
#toggle-info {
  position: absolute;
  right: 0;
  top: -5.5em;
  z-index: 11;
  padding: 0 2em;
  border: 1px solid;
}
#filter-toggle {
  color: #0E8CD2;
  font-size: 1em;
  font-weight: bold;
  background: none;
  border: none;
  line-height: 5em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#filter-toggle:hover i.icon-filter span:nth-child(1):after {
  top: 20%;
}
#filter-toggle:hover i.icon-filter span:nth-child(2):after {
  top: 50%;
}
#filter-toggle:hover i.icon-filter span:nth-child(3):after {
  top: 10%;
}
#filter-toggle i.icon-filter {
  position: relative;
  outline: none;
  display: inline-block;
  vertical-align: middle;
  font-size: 0;
  height: 21px;
  margin: 0;
  padding: 0;
  margin-left: 10px;
}
#filter-toggle i.icon-filter span {
  position: relative;
  outline: none;
  margin: 0;
  padding: 0;
  vertical-align: top;
  display: inline-block;
  height: 21px;
  width: 1px;
  margin-left: 6px;
  background: #fff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#filter-toggle i.icon-filter span:after {
  position: relative;
  outline: none;
  content: '';
  width: 5px;
  height: 5px;
  position: absolute;
  top: 0;
  left: 50%;
  background: #FFF;
  border: 1px solid #727272;
  border-radius: 50%;
  -webkit-transition: all 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transform: translate3d(-50%, 0%, 0);
  transform: translate3d(-50%, 0%, 0);
  border-color: #fff;
}
#filter-toggle i.icon-filter span:nth-child(1):after {
  top: 50%;
}
#filter-toggle i.icon-filter span:nth-child(2):after {
  top: 20%;
}
#filter-toggle i.icon-filter span:nth-child(3):after {
  top: 50%;
}
#filter-panel #school-filter label,
#filter-panel #instructor-filter label {
  padding-left: 1rem;
}
#filter-panel .input-group-text {
  padding: 0 0.5em;
}
#filter-panel .input-group input {
  padding: 0 0.5em;
}
#filter-panel > div.row > div:nth-child(1),
#filter-panel > div.row > div:nth-child(2) {
  max-height: 422px;
}
#filter-panel > div.row > div:nth-child(1)::-webkit-scrollbar,
#filter-panel > div.row > div:nth-child(2)::-webkit-scrollbar {
  width: 12px;
}
#filter-panel > div.row > div:nth-child(1)::-webkit-scrollbar-track,
#filter-panel > div.row > div:nth-child(2)::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
#filter-panel > div.row > div:nth-child(1)::-webkit-scrollbar-thumb,
#filter-panel > div.row > div:nth-child(2)::-webkit-scrollbar-thumb {
  background-color: var(--bs-blue);
}
@media all and (max-width: 576px) and (max-height: 1000px) {
  #filter-panel > div.row > div:nth-child(1),
  #filter-panel > div.row > div:nth-child(2) {
    max-height: 30vh;
  }
}
#filter-panel .list-group-item {
  transition: all 0.3s;
  overflow: hidden;
  max-height: 20rem;
}
#filter-panel .list-group-item.disabled {
  max-height: 0;
  padding: 0;
  margin: 0;
}
#filter-panel .list-group-item:first-child {
  padding-top: 0.5em !important;
}
#course_form input:invalid,
#course_form select:invalid + .select2 .select2-selection--multiple {
  outline-style: outset;
  outline-color: red;
  outline-width: 1px;
  -webkit-box-shadow: 0px 0px 5px 0px #ff0000;
  -moz-box-shadow: 0px 0px 5px 0px #ff0000;
  box-shadow: 0px 0px 5px 0px #ff0000;
}
#course_form input#course-title {
  width: 100%;
  margin: 0;
  padding: 5px 0 10px 0;
  font-weight: bold;
  font-size: 18px;
  font-style: italic;
  font-family: 'PT Sans';
  color: black;
  text-decoration: none;
  line-height: 18px;
  height: auto;
}
#course_form .meta input[type="text"] {
  width: 75px;
  text-align: right;
}
#course_form *[contenteditable="true"],
#course_form input[type="text"],
#course_form select {
  background-color: rgba(122, 91, 5, 0.15) !important;
  border: none;
}
#course_form *[contenteditable="true"]:focus,
#course_form input[type="text"]:focus,
#course_form select:focus,
#course_form *[contenteditable="true"]:hover,
#course_form input[type="text"]:hover,
#course_form select:hover {
  background-color: rgba(250, 248, 243, 0.7) !important;
  outline-width: 0;
}
#course_form .tox .tox-edit-area__iframe {
  background-color: rgba(250, 248, 243, 0.7);
}
#course_form .tox .tox-statusbar,
#course_form .tox .tox-menubar,
#course_form .tox .tox-toolbar,
#course_form .tox .tox-toolbar__overflow,
#course_form .tox .tox-toolbar__primary {
  background-color: rgba(122, 91, 5, 0.15);
  border: none;
}
#course_form .tox-tinymce {
  border: none;
}
#course_form .select2-container {
  width: 100% !important;
  text-align: left;
}
#course_form .select2-container .select2-selection--multiple {
  background-color: rgba(122, 91, 5, 0.15);
  border-radius: 0;
  border: none;
}
#course_form .select2-container li.select2-selection__choice {
  background-color: #ffe9d0;
}
#course_form .add_endtime {
  padding-left: 10px;
}
#course_form .add_endtime:hover {
  color: #23527c;
}
#course_form .highlight-error {
  outline-style: outset;
  outline-color: red;
  outline-width: 1px;
  -webkit-box-shadow: 0px 0px 5px 0px #ff0000;
  -moz-box-shadow: 0px 0px 5px 0px #ff0000;
  box-shadow: 0px 0px 5px 0px #ff0000;
  position: relative;
}
#course_form .marked-for-deletion {
  background-color: rgba(255, 0, 0, 0.2);
  position: relative;
}
#course_form .marked-for-deletion:after {
  content: 'Wird gelöscht!';
  position: absolute;
  bottom: 4px;
  right: 4px;
  font-style: italic;
  color: #727272;
}
#course_form .time {
  position: relative;
}
#course_form .time .delete-container {
  position: absolute;
  left: -40px;
  top: 0;
}
#course_form .time .delete-container input[type="checkbox"] {
  opacity: 0;
}
#course_form .time .delete-container input[type="checkbox"]:checked + label div {
  opacity: 1;
}
#course_form .time .delete-container label {
  cursor: pointer;
}
#course_form .time .delete-container label div {
  height: 20px;
  width: 20px;
  background-image: url('../..//typo3conf/ext/jwt_calendar/Resources/Public/img/trash.svg');
  background-repeat: no-repeat;
  opacity: 0.4;
}
#form-error-message {
  margin-bottom: 25px;
}
#form-error-message h4 {
  margin-bottom: 15px !important;
}
#form-error-message p {
  color: green;
  margin-left: 27px;
}
#form-error-message p.active {
  color: red;
}
#form-error-message p::before {
  width: 22px;
  height: 18px;
  background-image: url("../..//typo3conf/ext/jwt_calendar/Resources/Public/img/checked.png");
  display: block;
  content: "";
  float: left;
  margin-right: 5px;
}
#form-error-message p.active::before {
  background-image: url("../..//typo3conf/ext/jwt_calendar/Resources/Public/img/unchecked.png");
}
.select2-container {
  text-align: left;
}
/* DatePicker Container */
.ui-datepicker {
  width: 216px;
  height: auto;
  margin: 5px auto 0;
  font: 9pt Arial, sans-serif;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}
.ui-datepicker a {
  text-decoration: none;
}
/* DatePicker Table */
.ui-datepicker table {
  width: 100%;
}
.ui-datepicker-header {
  background: url('../..//typo3conf/ext/jwt_calendar/Resources/Public/img/dark_leather.png') repeat 0 0 #000000;
  color: #e0e0e0;
  font-weight: bold;
  -webkit-box-shadow: inset 0px 1px 1px 0px #fafafa;
  -moz-box-shadow: inset 0px 1px 1px 0px rgba(250, 250, 250, 0.2);
  box-shadow: inset 0px 1px 1px 0px rgba(250, 250, 250, 0.2);
  text-shadow: 1px -1px 0px #000000;
  filter: dropshadow(color=#000000, offx=1, offy=-1);
  line-height: 30px;
  border-width: 1px 0 0 0;
  border-style: solid;
  border-color: #111;
}
.ui-datepicker-title {
  text-align: center;
}
.ui-datepicker-prev,
.ui-datepicker-next {
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
  cursor: pointer;
  background-image: url('../..//typo3conf/ext/jwt_calendar/Resources/Public/img/arrow.png');
  background-repeat: no-repeat;
  line-height: 600%;
  overflow: hidden;
}
.ui-datepicker-prev {
  float: left;
  background-position: center -30px;
}
.ui-datepicker-next {
  float: right;
  background-position: center 0px;
}
.ui-datepicker thead {
  background-color: #f7f7f7;
  background-image: -moz-linear-gradient(top, #f7f7f7 0%, #f1f1f1 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f7f7f7), color-stop(100%, #f1f1f1));
  background-image: -webkit-linear-gradient(top, #f7f7f7 0%, #f1f1f1 100%);
  background-image: -o-linear-gradient(top, #f7f7f7 0%, #f1f1f1 100%);
  background-image: -ms-linear-gradient(top, #f7f7f7 0%, #f1f1f1 100%);
  background-image: linear-gradient(top, #f7f7f7 0%, #f1f1f1 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f7f7f7', endColorstr='#f1f1f1', GradientType=0);
  border-bottom: 1px solid #bbb;
}
.ui-datepicker th {
  text-transform: uppercase;
  font-size: 6pt;
  padding: 5px 0;
  color: #666666;
  text-shadow: 1px 0px 0px #fff;
  filter: dropshadow(color=#ffffff, offx=1, offy=0);
}
.ui-datepicker tbody td {
  padding: 0;
  border-right: 1px solid #bbb;
}
.ui-datepicker tbody td:last-child {
  border-right: 0px;
}
.ui-datepicker tbody tr {
  border-bottom: 1px solid #bbb;
}
.ui-datepicker tbody tr:last-child {
  border-bottom: 0px;
}
.ui-datepicker td span,
.ui-datepicker td a {
  display: inline-block;
  font-weight: bold;
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: #666666;
  text-shadow: 1px 1px 0px #fff;
  filter: dropshadow(color=#ffffff, offx=1, offy=1);
}
.ui-datepicker-calendar .ui-state-default {
  background: #ededed;
  background: -moz-linear-gradient(top, #ededed 0%, #dedede 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ededed), color-stop(100%, #dedede));
  background: -webkit-linear-gradient(top, #ededed 0%, #dedede 100%);
  background: -o-linear-gradient(top, #ededed 0%, #dedede 100%);
  background: -ms-linear-gradient(top, #ededed 0%, #dedede 100%);
  background: linear-gradient(top, #ededed 0%, #dedede 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#dedede', GradientType=0);
  -webkit-box-shadow: inset 1px 1px 0px 0px rgba(250, 250, 250, 0.5);
  -moz-box-shadow: inset 1px 1px 0px 0px rgba(250, 250, 250, 0.5);
  box-shadow: inset 1px 1px 0px 0px rgba(250, 250, 250, 0.5);
}
.ui-datepicker-calendar .ui-state-hover {
  background: #f7f7f7;
}
.ui-datepicker-calendar .ui-state-active {
  background: #6eafbf;
  -webkit-box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  color: #e0e0e0;
  text-shadow: 0px 1px 0px #4d7a85;
  filter: dropshadow(color=#4d7a85, offx=0, offy=1);
  border: 1px solid #55838f;
  position: relative;
  margin: -1px;
}
.ui-datepicker-unselectable .ui-state-default {
  background: #f4f4f4;
  color: #b4b3b3;
}
.ui-datepicker-calendar td:first-child .ui-state-active {
  width: 29px;
  margin-left: 0;
}
.ui-datepicker-calendar td:last-child .ui-state-active {
  width: 29px;
  margin-right: 0;
}
.ui-datepicker-calendar tr:last-child .ui-state-active {
  height: 29px;
  margin-bottom: 0;
}
.multiselect-wrapper {
  width: 180px;
  display: inline-block;
  white-space: nowrap;
  font-size: 12px;
  font-family: "Segoe UI", Verdana, Helvetica, Sans-Serif;
}
.multiselect-wrapper .multiselect-input {
  width: 120px;
  padding-right: 50px;
}
.multiselect-wrapper label {
  display: block;
  font-size: 12px;
  font-weight: 600;
}
.multiselect-wrapper .multiselect-list {
  z-index: 1;
  position: absolute;
  display: none;
  background-color: white;
  border: 1px solid grey;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  margin-top: -2px;
}
.multiselect-wrapper .multiselect-list.active {
  display: block;
}
.multiselect-wrapper .multiselect-list > span {
  font-weight: bold;
}
.multiselect-wrapper .multiselect-list .multiselect-checkbox {
  margin-right: 2px;
}
.multiselect-wrapper .multiselect-list > span,
.multiselect-wrapper .multiselect-list li {
  cursor: default;
}
.multiselect-wrapper .multiselect-list {
  padding: 5px;
  min-width: 200px;
}
.multiselect-wrapper ul {
  list-style: none;
  display: block;
  position: relative;
  padding: 0px;
  margin: 0px;
  max-height: 200px;
  overflow-y: auto;
  overflow-x: hidden;
}
.multiselect-wrapper ul li {
  padding-right: 20px;
  display: block;
}
.multiselect-wrapper ul li.active {
  background-color: #0066ff;
  color: white;
}
.multiselect-wrapper ul li:hover {
  background-color: #0066ff;
  color: white;
}
.multiselect-input-div {
  height: 34px;
}
.multiselect-input-div input {
  border: 1px solid #ababab;
  background: #fff;
  margin: 5px 0 6px 0;
  padding: 5px;
  vertical-align: middle;
}
.multiselect-count {
  position: relative;
  text-align: center;
  border-radius: 2px;
  behavior: url(/Content/Pie/pie.htc);
  background-color: lightblue;
  display: inline-block !important;
  padding: 2px 7px;
  left: -45px;
}
.multiselect-dropdown-arrow {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid black;
  position: absolute;
  line-height: 20px;
  text-align: center;
  display: inline-block !important;
  margin-top: 17px;
  margin-left: -42px;
}
.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}
.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  user-select: none;
  -webkit-user-select: none;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select2-container .select2-selection--single .select2-selection__clear {
  position: relative;
}
.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}
.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  user-select: none;
  -webkit-user-select: none;
}
.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline-block;
  overflow: hidden;
  padding-left: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select2-container .select2-search--inline {
  float: left;
}
.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  padding: 0;
}
.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}
.select2-results {
  display: block;
}
.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}
.select2-results__option {
  padding: 6px;
  user-select: none;
  -webkit-user-select: none;
}
.select2-results__option[aria-selected] {
  cursor: pointer;
}
.select2-container--open .select2-dropdown {
  left: 0;
}
.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.select2-search--dropdown {
  display: block;
  padding: 4px;
}
.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
}
.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.select2-search--dropdown.select2-search--hide {
  display: none;
}
.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}
.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}
.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}
.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left;
}
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}
.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}
.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}
.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  list-style: none;
}
.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-top: 5px;
  margin-right: 10px;
  padding: 1px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333;
}
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice,
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
  float: right;
}
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}
.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}
.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}
.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}
.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}
.select2-container--default .select2-results__option[role=group] {
  padding: 0;
}
.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999;
}
.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd;
}
.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #5897fb;
  color: white;
}
.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}
.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-linear-gradient(top, #ffffff 50%, #eeeeee 100%);
  background-image: -o-linear-gradient(top, #ffffff 50%, #eeeeee 100%);
  background-image: linear-gradient(to bottom, #ffffff 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
}
.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}
.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}
.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-right: 10px;
}
.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}
.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
  background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
  background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0);
}
.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left;
}
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}
.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #ffffff 0%, #eeeeee 50%);
  background-image: -o-linear-gradient(top, #ffffff 0%, #eeeeee 50%);
  background-image: linear-gradient(to bottom, #ffffff 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
}
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #eeeeee 50%, #ffffff 100%);
  background-image: -o-linear-gradient(top, #eeeeee 50%, #ffffff 100%);
  background-image: linear-gradient(to bottom, #eeeeee 50%, #ffffff 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0);
}
.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
}
.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}
.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
  list-style: none;
  margin: 0;
  padding: 0 5px;
}
.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  color: #888;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
}
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  float: right;
  margin-left: 5px;
  margin-right: auto;
}
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}
.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}
.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none;
}
.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent;
}
.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}
.select2-container--classic .select2-dropdown--below {
  border-top: none;
}
.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}
.select2-container--classic .select2-results__option[role=group] {
  padding: 0;
}
.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey;
}
.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: white;
}
.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}
.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}
#instructor_list .instructor .feature-icon:first-child {
  border-bottom-left-radius: .75rem;
}
#instructor_list .instructor .feature-icon:nth-child(3) {
  border-bottom-right-radius: .75rem;
}
#instructor_list .instructor .comments {
  flex-grow: 1;
}
#instructor_list .instructor .comments p {
  height: calc(4.6em + 15px);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, #000000 50%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000000 50%, transparent 100%);
}
#instructor_list .instructor .comments p.opened,
#instructor_list .instructor .comments p[style='height: auto;'] {
  -webkit-mask-image: linear-gradient(to bottom, #000000 100%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000000 100%, transparent 100%);
}
#instructor_list .instructor .comments .more-link {
  display: none;
  cursor: pointer;
  color: var(--bs-orange);
}
#instructor_list .instructor .comments .more-link:hover {
  text-decoration: underline;
}
#instructor_list .instructor .comments .more-link:before {
  content: "\00a0\00bb  ";
}
#instructor_list .therapeut {
  background-color: #f0dba5;
  background-color: rgba(240, 219, 165, 0.8);
}
#instructor_list .therapeut .card-title {
  color: #D0900B;
}
