@import "Components/jquery.highlight-within-textarea.css";
.form-wrapper .form-group {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.form-wrapper .form-group.submit {
  display: inline-block;
}
.checkbox .control {
  margin: 1rem 0;
}
.checkbox .control input:checked + label::before,
.checkbox .control input:hover + label::before {
  border-color: white;
  background-color: #288cb6;
  font-family: 'bootstrap-icons';
  font-size: 16px;
  content: '\F26E';
  color: #fff;
}
.checkbox .control label {
  display: flex;
  position: relative;
  align-items: center;
}
.checkbox .control label::before {
  content: '';
  display: inline-block;
  position: relative;
  width: 1.6rem;
  height: 1.6rem;
  border: 1px solid white;
  background-color: #222;
  margin-right: 1rem;
  line-height: 1.6rem;
}
ul.typo3-messages {
  list-style: none;
  padding: 0;
  margin: 3rem 0;
}
ul.typo3-messages .alert {
  padding: 2rem;
  border: none;
}
ul.typo3-messages .alert p {
  margin-bottom: 0;
}
ul.typo3-messages .alert.alert-success {
  background-color: #D8FED9;
}
ul.typo3-messages .alert.alert-success p {
  color: #018614;
}
ul.typo3-messages .alert.alert-danger,
ul.typo3-messages .alert.alert-error {
  background-color: #ffb0b0;
}
ul.typo3-messages .alert.alert-danger p.alert-message,
ul.typo3-messages .alert.alert-error p.alert-message {
  color: #df0000;
}
a.bi:hover {
  text-decoration: none;
}
.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.flex > div {
  padding: 1rem;
}
.flex.start {
  justify-content: flex-start;
}
.flex button {
  min-width: 20px;
}
.js-action-container {
  position: absolute;
  top: 0;
  right: 0.5rem;
}
.js-action-container .js-toggle-popup-action {
  cursor: pointer;
  color: #288cb6;
}
.js-action-container .js-toggle-popup-action:hover {
  color: #78bad3;
}
.js-action-container .popup-action {
  z-index: 10000;
  display: none;
  position: absolute;
  top: 3rem;
  left: 50%;
  width: 25rem;
  transform: translateX(-50%);
  border: 1px solid #288cb6;
  background-color: #222;
}
.js-action-container .popup-action::before {
  position: absolute;
  top: -1.5rem;
  font-size: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: #288cb6;
}
.js-action-container .popup-action .popup-action-inner {
  padding: 1rem;
  display: grid;
  grid-template-rows: auto;
  grid-gap: 1rem;
}
.js-action-container .popup-action .popup-action-inner a {
  display: block;
}
.js-action-container .popup-action .popup-action-inner a::before {
  margin-right: 1rem;
}
@keyframes spinner {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.form-upload .hide {
  display: none;
}
.form-upload .upload-area {
  position: relative;
  width: 100%;
  height: 6rem;
  background-color: #0c5460;
  color: #fff;
}
.form-upload .upload-area::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: "Bild hier ablegen, oder Klick für Auswahl";
  text-align: center;
  width: 100%;
}
.form-upload .upload-area input {
  opacity: 0;
  position: absolute;
  z-index: 10;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.form-upload .img-preview {
  max-width: 148px;
  height: auto;
  display: block;
}
.form-upload .loader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  max-height: 50px;
  overflow: hidden;
  transition: max-height 0.5s;
}
.form-upload .loader .spinner {
  height: 13px;
  width: 13px;
  padding-right: 2rem;
}
.form-upload .loader .spinner::before {
  display: inline-block;
  animation: spinner 1s infinite linear;
}
.form-upload .loader progress {
  margin-bottom: 0;
  flex-grow: 1;
}
.form-upload .thumbnail {
  position: relative;
}
.form-upload .thumbnail .deleteImage {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 4px;
  background-color: #fff;
  text-decoration: none;
}
.form-upload .thumbnail .deleteImage::before {
  font-size: 2rem;
}
.pending-invitation-box {
  width: 250px;
  border: 1px solid #dfdfdf;
  margin: 1rem;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
}
.pending-invitation-box p {
  margin: 0.5rem 0;
}
.pending-invitation-box a {
  margin: 0.5rem 0 !important;
}
.invitation-list {
  display: flex;
  flex-wrap: wrap;
  margin: 1rem -1rem;
}
.friends-list {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 -2rem;
}
.friends-list .friend-item {
  display: flex;
  margin: 2rem;
}
.friends-list .friend-item span {
  margin: 0 1rem;
}
.friends-list .friend-item .actions {
  display: flex;
  align-content: center;
}
.friends-list .friend-item .actions a.remove {
  text-decoration: none;
  align-self: center;
}
.friends-list .friend-item .actions a.remove::after {
  content: '\F5DE';
  font-family: 'bootstrap-icons';
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
.loading-indicator {
  z-index: 10000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
}
.loading-indicator::after {
  content: '\F116';
  font-family: 'bootstrap-icons';
  font-size: 7rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: spin 2s linear infinite;
}
ul.list-table {
  width: 100%;
  max-width: 320px;
}
ul.list-table li {
  margin-bottom: 2rem;
}
ul.list-table li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
ul.list-table li a:hover {
  text-decoration: none;
}
ul.sortable {
  display: flex;
}
ul.sortable li {
  padding: 8px;
}
ul.sortable li:hover {
  cursor: move;
}
.suggester {
  position: absolute;
  display: none;
  background-color: #868484;
  width: 100%;
  max-width: 320px;
  z-index: 10000;
}
.suggester ul li {
  padding: 4px;
  cursor: pointer;
}
.suggester ul li:hover {
  background-color: #6b6b6b;
}
ul.lineup-list li.lineup-grid {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 1rem;
}
@media screen and (min-width: 600px) {
  ul.lineup-list li.lineup-grid {
    display: grid;
    grid-template-columns: 16rem 1fr 1fr 1fr 25px;
  }
}
ul.lineup-list li.lineup-grid.header {
  display: none;
}
@media screen and (min-width: 600px) {
  ul.lineup-list li.lineup-grid.header {
    display: grid;
  }
}
ul.lineup-list li.lineup-grid.header span {
  font-weight: bold;
}
ul.lineup-list li span {
  padding: 0 2rem;
}
ul.lineup-list li span.centered {
  text-align: center;
}
ul.lineup-list li span.actions {
  display: flex;
  gap: 1rem;
  flex-direction: row;
  flex-wrap: nowrap;
}
.modal-body .hwt-container {
  width: 100%;
}
.modal-body .hwt-container .hwt-content.hwt-highlights {
  color: #fff !important;
  padding: 4px !important;
}
.modal-body .hwt-container .hwt-content.hwt-highlights mark {
  color: #288cb6;
  background-color: transparent;
}
.modal-body .hwt-container .hwt-content.hwt-highlights mark:hover {
  cursor: pointer;
}
.modal-body .hwt-container textarea.hwt-input {
  width: 100%;
  max-width: 100%;
  height: 200px;
  padding: 8px !important;
  color: transparent;
  background-color: transparent;
  caret-color: #fff;
  border: 1px solid #dfdfdf;
}
.post-preview .post-page-preview {
  border: 1px solid #dfdfdf;
  padding: 1rem;
  min-height: 2rem;
}
.post-preview .post-page-preview img {
  width: 100%;
  height: auto;
}
.post-preview .post-page-preview h4 {
  margin-top: 1rem;
  font-size: 1.8rem;
}
form.comment-form {
  margin-top: 2rem;
}
form.comment-form .comment-form-grid {
  display: grid;
  grid-row-gap: 10px;
  grid-template-rows: 30px 100px 40px auto;
}
form.comment-form .comment-form-grid textarea {
  width: 100%;
  max-width: 100%;
}
form.comment-form .comment-form-grid .remaining-wrapper {
  display: grid;
  grid-column-gap: 10px;
  grid-template-columns: auto 50px;
  justify-content: start;
}
.comment-item {
  position: relative;
  margin-bottom: 2rem;
}
.comment-item .comment-header {
  font-size: 16px;
}
.comment-item .comment-header img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 8px;
}
.comment-item .comment-body {
  padding: 0.5rem 3rem;
}
.post-comments {
  margin-top: 3rem;
}
.post-comments .comment-actions {
  display: grid;
  grid-template-columns: auto 5px;
  justify-content: end;
  margin-bottom: 2rem;
}
.post-comments .comment-form-wrapper {
  display: none;
}
.post-comments .comment-form-wrapper[style*="display: block"] {
  margin-bottom: 3rem;
}
.post-comments .comment-item {
  position: relative;
}
ul.post-list-fe {
  max-width: 100%;
}
ul.post-list-fe li {
  border: 1px solid #dfdfdf;
  padding: 1rem;
  position: relative;
}
ul.post-list-fe li span.post-date {
  font-weight: bold;
  font-size: 2rem;
}
ul.post-list-fe li .post-images {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 5px;
  margin: 1rem 0;
}
ul.post-list-fe li .postbody a {
  display: inline;
}
ul.post-list-fe li .taglist {
  margin: 1rem 0;
}
ul.post-list-fe li .taglist a {
  display: unset;
}
ul.post-list-fe li .comment-indicator {
  display: grid;
  grid-template-columns: auto 20px;
  justify-content: start;
  grid-gap: 10px;
  align-items: center;
}
ul.post-list-fe li .post-actions {
  position: absolute;
  right: 0;
  top: 0;
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
}
ul.post-list-fe li .post-actions svg {
  height: 20px;
  width: auto;
}
ul.post-list-fe li .post-page-preview {
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid #dfdfdf;
  display: grid;
  grid-gap: 10px;
}
.event-item {
  position: relative;
  margin-top: 2rem;
  margin-bottom: 3rem;
}
.event-item h1 {
  margin-top: 1rem;
  margin-bottom: 0;
}
.event-item h2 {
  margin-top: 0;
  margin-bottom: 0.3rem !important;
}
.event-item h2 img {
  border-radius: 50%;
  margin-right: 1rem;
}
.event-item h4 {
  margin-bottom: 0.3rem;
}
.event-item .event-header .date {
  display: block;
  margin-bottom: 1rem;
}
.event-item .event-images {
  margin-bottom: 2rem;
}
.event-item .event-images > a img {
  width: 100%;
  height: auto;
}
.event-item .event-images .thumbnails {
  margin-top: 2rem;
}
.event-item .dates .lineup-day {
  margin-bottom: 2rem;
}
.event-item .dates .lineup-day .lineup-item span:not(:first-child) {
  padding-left: 1rem;
}
.event-item .actions {
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.event-item .actions .likes {
  display: grid;
  grid-template-columns: 20px auto auto;
  grid-gap: 1rem;
  justify-content: start;
  align-content: center;
}
.event-item .actions .likes .like-action-wrapper {
  position: relative;
}
.event-item .actions .likes .like-action-wrapper .like-action-animation {
  visibility: hidden;
  position: absolute;
  color: #288cb6;
  top: 0;
  left: 0;
  opacity: 1;
  transition: opacity 0.5s, top 0.5s;
}
.event-item .actions .likes .like-action-wrapper .like-action-animation.do {
  top: -30px;
  opacity: 0;
  visibility: visible;
}
.event-item .actions .likes span.like-indicator {
  line-height: 1;
}
.event-item .actions .rsvp {
  display: grid;
  grid-template-rows: auto;
  grid-row-gap: 1rem;
}
.event-item .actions .rsvp .rsvp-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 2rem;
  justify-content: end;
}
.event-item .actions .rsvp .rsvp-reactions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 2rem;
  justify-content: end;
}
.event-item .actions .rsvp .rsvp-reactions .indicator {
  margin-left: 1rem;
}
.event-item .actions .liking-friends {
  display: grid;
  grid-template-columns: auto auto;
  grid-column-gap: 1rem;
  justify-content: start;
  align-items: center;
  font-size: 12px;
}
.event-item .actions .liking-friends .liking-friend-images img {
  border-radius: 50%;
}
.event-item .actions .liking-friends .liking-friends-names {
  line-height: 1;
}
ul.event-admin {
  width: 100%;
  max-width: initial;
}
ul.event-admin li {
  padding: 1rem;
  border: 1px solid #dfdfdf;
  position: relative;
}
ul.event-admin li .show-comments {
  display: grid;
  grid-template-columns: auto 20px;
  grid-column-gap: 10px;
  justify-content: start;
}
ul.event-admin li .rsvp-reactions {
  display: grid;
  grid-template-columns: auto auto;
  grid-column-gap: 20px;
  justify-content: start;
}
ul.event-admin li .rsvp-reactions span.indicator {
  margin-left: 8px;
}
ul.event-admin li .actions {
  position: absolute;
  top: 0;
  right: 0;
  padding: 1rem;
}
#event-list h3 {
  margin-top: 4rem;
}
#event-list .event-item h3 {
  margin-top: 1rem;
}
.content-list {
  width: 100%;
  max-width: 450px;
  margin: 3rem auto 0 auto;
}
.filter-wrapper {
  position: relative;
}
.filter-wrapper .filter-header {
  display: grid;
  grid-template-columns: auto 30px;
}
.filter-wrapper .filter-header .set-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: center;
}
.filter-wrapper .filter-header .set-filters span {
  display: block;
  background-color: #288cb6;
  color: #fff;
  border-radius: 13px;
  padding: 3px 8px;
  margin-right: 1rem;
  margin-bottom: 1rem;
}
.filter-wrapper .filter-header .set-filters span a {
  color: #fff;
}
.filter-wrapper .filter-header .filter-trigger {
  width: 100%;
  text-align: right;
  margin-bottom: 1rem;
  font-size: 24px;
}
.filter-wrapper .filter-options {
  display: none;
  position: fixed;
  width: 95%;
  top: 0;
  left: 50%;
  max-height: 100%;
  overflow: scroll;
  transform: translateX(-50%);
  background-color: #222;
  border: 1px solid #fff;
  z-index: 9000;
  -webkit-box-shadow: 2px 2px 9px 3px rgba(0, 0, 0, 0.51);
  box-shadow: 2px 2px 9px 3px rgba(0, 0, 0, 0.51);
}
.filter-wrapper .filter-options .filter-options-inner {
  padding: 2rem;
}
.filter-wrapper .filter-options .filter-options-inner h3 {
  margin-bottom: 1rem;
}
.filter-wrapper .filter-options .filter-options-inner li {
  line-height: 1rem;
}
.filter-wrapper .filter-options .filter-options-inner div.checkbox.flex {
  justify-content: start;
  margin: 0;
}
.filter-wrapper .filter-options .filter-options-inner div.checkbox.flex .control {
  margin: 0 0 1rem 0;
  padding-top: 0;
  padding-bottom: 0;
}
.filter-wrapper .filter-options .filter-options-inner .user-filter {
  display: grid;
  grid-template-rows: auto auto auto;
  grid-row-gap: 1rem;
}
.filter-wrapper .close-div {
  position: absolute;
  top: 0;
  right: 0;
  padding: 1rem;
  z-index: 9001;
}
.filter-wrapper .close-div a {
  color: #fff;
}
.loader-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  z-index: 10000000;
}
.loader-overlay .loader-inner {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.loader-overlay .loader-inner object,
.loader-overlay .loader-inner svg {
  width: 80px;
  height: auto;
}
.select2-container {
  position: relative;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: top;
  width: 100%;
  border: 1px solid #dfdfdf;
}
.select2-container,
.select2-drop,
.select2-search,
.select2-search input {
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -khtml-box-sizing: border-box;
  box-sizing: border-box;
}
.select2-container .select2-choice {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eeeeee), color-stop(0.5, white));
  background-image: -webkit-linear-gradient(center bottom, #eeeeee 0%, white 50%);
  background-image: -moz-linear-gradient(center bottom, #eeeeee 0%, white 50%);
  background-image: -o-linear-gradient(bottom, #eeeeee 0%, #ffffff 50%);
  background-image: -ms-linear-gradient(top, #eeeeee 0%, #ffffff 50%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
  background-image: linear-gradient(top, #eeeeee 0%, #ffffff 50%);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #aaa;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  height: 26px;
  line-height: 26px;
  padding: 0 0 0 8px;
  color: #444;
  text-decoration: none;
}
.select2-container.select2-drop-above .select2-choice {
  border-bottom-color: #aaa;
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eeeeee), color-stop(0.9, white));
  background-image: -webkit-linear-gradient(center bottom, #eeeeee 0%, white 90%);
  background-image: -moz-linear-gradient(center bottom, #eeeeee 0%, white 90%);
  background-image: -o-linear-gradient(bottom, #eeeeee 0%, white 90%);
  background-image: -ms-linear-gradient(top, #eeeeee 0%, #ffffff 90%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
  background-image: linear-gradient(top, #eeeeee 0%, #ffffff 90%);
}
.select2-container .select2-choice span {
  margin-right: 26px;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.select2-container .select2-choice abbr {
  display: block;
  position: absolute;
  right: 26px;
  top: 8px;
  width: 12px;
  height: 12px;
  font-size: 1px;
  background: url(../img/select2.png) right top no-repeat;
  cursor: pointer;
  text-decoration: none;
  border: 0;
  outline: 0;
}
.select2-container .select2-choice abbr:hover {
  background-position: right -11px;
  cursor: pointer;
}
.select2-drop {
  background: #fff;
  color: #000;
  border: 1px solid #aaa;
  border-top: 0;
  position: absolute;
  top: 100%;
  -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  -o-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  width: 100%;
  margin-top: -1px;
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
}
.select2-drop.select2-drop-above {
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
  margin-top: 1px;
  border-top: 1px solid #aaa;
  border-bottom: 0;
  -webkit-box-shadow: 0 -4px 5px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 -4px 5px rgba(0, 0, 0, 0.15);
  -o-box-shadow: 0 -4px 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 -4px 5px rgba(0, 0, 0, 0.15);
}
.select2-container .select2-choice div {
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background: #ccc;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ccc), color-stop(0.6, #eee));
  background-image: -webkit-linear-gradient(center bottom, #ccc 0%, #eee 60%);
  background-image: -moz-linear-gradient(center bottom, #ccc 0%, #eee 60%);
  background-image: -o-linear-gradient(bottom, #ccc 0%, #eee 60%);
  background-image: -ms-linear-gradient(top, #cccccc 0%, #eeeeee 60%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cccccc', endColorstr='#eeeeee', GradientType=0);
  background-image: linear-gradient(top, #cccccc 0%, #eeeeee 60%);
  border-left: 1px solid #aaa;
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  height: 100%;
  width: 18px;
}
.select2-container .select2-choice div b {
  background: url(../img/select2.png) no-repeat 0 1px;
  display: block;
  width: 100%;
  height: 100%;
}
.select2-search {
  display: inline-block;
  white-space: nowrap;
  z-index: 10000;
  min-height: 26px;
  width: 100%;
  margin: 0;
  padding-left: 4px;
  padding-right: 4px;
}
.select2-search-hidden {
  display: block;
  position: absolute;
  left: -10000px;
}
.select2-search input {
  background: #fff url(../img/select2.png) no-repeat 100% -22px;
  background: url('../img/select2.png') no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, white), color-stop(0.99, #eeeeee));
  background: url(../img/select2.png) no-repeat 100% -22px, -webkit-linear-gradient(center bottom, white 85%, #eeeeee 99%);
  background: url(../img/select2.png) no-repeat 100% -22px, -moz-linear-gradient(center bottom, white 85%, #eeeeee 99%);
  background: url(../img/select2.png) no-repeat 100% -22px, -o-linear-gradient(bottom, white 85%, #eeeeee 99%);
  background: url(../img/select2.png) no-repeat 100% -22px, -ms-linear-gradient(top, #ffffff 85%, #eeeeee 99%);
  background: url(../img/select2.png) no-repeat 100% -22px, linear-gradient(top, #ffffff 85%, #eeeeee 99%);
  padding: 4px 20px 4px 5px;
  outline: 0;
  border: 1px solid #aaa;
  font-family: sans-serif;
  font-size: 1em;
  width: 100%;
  margin: 0;
  height: auto!important;
  min-height: 26px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
}
.select2-drop.select2-drop-above .select2-search input {
  margin-top: 4px;
}
.select2-search input.select2-active {
  background: #fff url(../img/spinner.gif) no-repeat 100%;
  background: url('../img/spinner.gif') no-repeat 100%, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, white), color-stop(0.99, #eeeeee));
  background: url(../img/spinner.gif) no-repeat 100%, -webkit-linear-gradient(center bottom, white 85%, #eeeeee 99%);
  background: url(../img/spinner.gif) no-repeat 100%, -moz-linear-gradient(center bottom, white 85%, #eeeeee 99%);
  background: url(../img/spinner.gif) no-repeat 100%, -o-linear-gradient(bottom, white 85%, #eeeeee 99%);
  background: url(../img/spinner.gif) no-repeat 100%, -ms-linear-gradient(top, #ffffff 85%, #eeeeee 99%);
  background: url(../img/spinner.gif) no-repeat 100%, linear-gradient(top, #ffffff 85%, #eeeeee 99%);
}
.select2-container-active .select2-choice,
.select2-container-active .select2-choices {
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  -o-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  border: 1px solid #5897fb;
  outline: 0;
}
.select2-dropdown-open .select2-choice {
  border: 1px solid #dfdfdf;
  border-bottom-color: transparent;
  -webkit-box-shadow: 0 1px 0 #1e1e1e inset;
  -moz-box-shadow: 0 1px 0 #1e1e1e inset;
  -o-box-shadow: 0 1px 0 #1e1e1e inset;
  box-shadow: 0 1px 0 #1e1e1e inset;
  background-color: #eee;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, white), color-stop(0.5, #eeeeee));
  background-image: -webkit-linear-gradient(center bottom, white 0%, #eeeeee 50%);
  background-image: -moz-linear-gradient(center bottom, white 0%, #eeeeee 50%);
  background-image: -o-linear-gradient(bottom, white 0%, #eeeeee 50%);
  background-image: -ms-linear-gradient(top, #ffffff 0%, #eeeeee 50%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
  background-image: linear-gradient(top, #ffffff 0%, #eeeeee 50%);
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  -moz-border-radius-bottomleft: 0;
  -moz-border-radius-bottomright: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select2-dropdown-open .select2-choice div {
  background: 0 0;
  border-left: 0;
}
.select2-dropdown-open .select2-choice div b {
  background-position: -18px 1px;
}
.select2-results {
  margin: 4px 4px 4px 0;
  padding: 0 0 0 4px;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 200px;
}
.select2-results ul.select2-result-sub {
  margin: 0;
}
.select2-results ul.select2-result-sub > li .select2-result-label {
  padding-left: 20px;
}
.select2-results ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
  padding-left: 40px;
}
.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
  padding-left: 60px;
}
.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
  padding-left: 80px;
}
.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
  padding-left: 100px;
}
.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
  padding-left: 110px;
}
.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
  padding-left: 120px;
}
.select2-results li {
  list-style: none;
  display: list-item;
}
.select2-results li.select2-result-with-children > .select2-result-label {
  font-weight: 700;
}
.select2-results .select2-result-label {
  padding: 3px 7px 4px;
  margin: 0;
  cursor: pointer;
}
.select2-results .select2-highlighted {
  background: #3875d7;
  color: #fff;
}
.select2-results li em {
  background: #feffde;
  font-style: normal;
}
.select2-results .select2-highlighted em {
  background: 0 0;
}
.select2-results .select2-no-results,
.select2-results .select2-searching,
.select2-results .select2-selection-limit {
  background: #f4f4f4;
  display: list-item;
}
.select2-results .select2-disabled {
  display: none;
}
.select2-more-results.select2-active {
  background: #f4f4f4 url(../img/spinner.gif) no-repeat 100%;
}
.select2-more-results {
  background: #f4f4f4;
  display: list-item;
}
.select2-container.select2-container-disabled .select2-choice {
  background-color: #f4f4f4;
  background-image: none;
  border: 1px solid #ddd;
  cursor: default;
}
.select2-container.select2-container-disabled .select2-choice div {
  background-color: #f4f4f4;
  background-image: none;
  border-left: 0;
}
.select2-container-multi .select2-choices {
  background-color: #dfdfdf;
  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #1e1e1e), color-stop(15%, #1e1e1e));
  background-image: -webkit-linear-gradient(top, #1e1e1e1 1 1%, #1e1e1e 15%);
  background-image: -moz-linear-gradient(top, #1e1e1e 1%, #1e1e1e 15%);
  background-image: -o-linear-gradient(top, #1e1e1e 1%, #1e1e1e 15%);
  background-image: -ms-linear-gradient(top, #1e1e1e 1%, #1e1e1e 15%);
  background-image: linear-gradient(top, #1e1e1e 1%, #1e1e1e 15%);
  margin: 0;
  padding: 0;
  cursor: text;
  overflow: hidden;
  height: auto!important;
  height: 1%;
  position: relative;
}
.select2-container-multi .select2-choices {
  min-height: 26px;
  display: flex;
  flex-wrap: wrap;
}
.select2-container-multi.select2-container-active .select2-choices {
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  -o-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  border: 1px solid #5897fb;
  outline: 0;
}
.select2-container-multi .select2-choices li {
  float: left;
  list-style: none;
}
.select2-container-multi .select2-choices .select2-search-field {
  white-space: nowrap;
  margin: 0;
  padding: 0;
  flex-grow: 1;
  flex-shrink: 1;
  min-width: 150px;
}
.select2-container-multi .select2-choices .select2-search-field input {
  color: #dfdfdf;
  width: 100%;
  max-width: 100%;
  background: 0 0!important;
  font-family: sans-serif;
  font-size: 100%;
  height: 15px;
  padding: 5px;
  margin: 1px 0;
  outline: 0;
  border: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
.select2-container-multi .select2-choices .select2-search-field input.select2-active {
  background: #fff url(../img/spinner.gif) no-repeat 100% !important;
}
.select2-default {
  color: #999 !important;
}
.select2-container-multi .select2-choices .select2-search-choice {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: #288cb6;
  color: #fff;
  border: 1px solid #dfdfdf;
  line-height: 13px;
  padding: 3px 5px 3px 18px;
  margin: 3px 0 3px 5px;
  position: relative;
  cursor: default;
}
.select2-container-multi .select2-choices .select2-search-choice a {
  position: absolute;
  left: 4px;
  top: 1px;
  color: #fff;
}
.select2-container-multi .select2-choices .select2-search-choice span {
  cursor: default;
}
.select2-container-multi .select2-choices .select2-search-choice-focus {
  background: #d4d4d4;
}
.select2-search-choice-close {
  display: block;
  position: absolute;
  right: 3px;
  top: 4px;
  width: 12px;
  height: 13px;
  font-size: 1px;
  background: url(../img/select2.png) right top no-repeat;
  outline: 0;
}
.select2-container-multi .select2-search-choice-close {
  left: 3px;
}
.select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover {
  background-position: right -11px;
}
.select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close {
  background-position: right -11px;
}
.select2-container-multi.select2-container-disabled .select2-choices {
  background-color: #f4f4f4;
  background-image: none;
  border: 1px solid #ddd;
  cursor: default;
}
.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice {
  background-image: none;
  background-color: #f4f4f4;
  border: 1px solid #ddd;
  padding: 3px 5px;
}
.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close {
  display: none;
}
.select2-result-selectable .select2-match,
.select2-result-unselectable .select2-result-selectable .select2-match {
  text-decoration: underline;
}
.select2-result-unselectable .select2-match {
  text-decoration: none;
}
.select2-offscreen {
  position: absolute;
  left: -10000px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5) {
  .select2-search input,
  .select2-search-choice-close,
  .select2-container .select2-choice abbr,
  .select2-container .select2-choice div b {
    background-image: url(../img/select2x2.png) !important;
    background-repeat: no-repeat !important;
    background-size: 60px 40px !important;
  }
  .select2-search input {
    background-position: 100% -21px !important;
  }
}
.tag-suggester {
  display: none;
  font-size: 1.5rem;
  padding: 1rem;
  z-index: 1000000;
  position: absolute;
  background: #6b6b6b;
  width: 100%;
  border: 1px solid #dfdfdf;
  left: 0;
}
.tag-suggester > ul > li {
  font-weight: bold;
}
.tag-suggester > ul > li > ul > li {
  padding-left: 1rem;
  font-weight: normal;
  cursor: pointer;
}
.tag-suggester > ul > li > ul > li:hover {
  background-color: #9d9d9d;
  color: #fff;
}
.public-post-item {
  border: 1px solid #6b6b6b;
  padding: 1rem;
  margin-bottom: 2rem;
}
.public-post-item .post-header {
  display: grid;
  grid-template-columns: 30px auto 100px;
  grid-column-gap: 10px;
  align-items: center;
  margin-bottom: 2rem;
}
.public-post-item .post-header.with-user-actions {
  grid-template-columns: 30px auto 100px 80px;
}
.public-post-item .post-header .like-indicator {
  display: grid;
  grid-template-columns: 20px auto;
  grid-column-gap: 5px;
  align-items: center;
  justify-content: end;
}
.public-post-item .post-header .like-indicator .bi {
  height: 19px;
}
.public-post-item .post-header img.actor-thumbnail {
  border-radius: 50%;
}
.public-post-item .taglist {
  margin: 1rem 0;
}
.public-post-item .post-images {
  margin-bottom: 2rem;
}
.public-post-item .post-images img {
  width: 100%;
  max-width: 450px;
  height: auto;
}
.public-post-item .post-images .thumbnails {
  display: flex;
  justify-content: start;
  align-items: center;
  margin-top: 1rem;
}
.public-post-item .post-images .thumbnails img {
  width: auto;
  margin-right: 1rem;
}
.public-post-item .post-body {
  margin-bottom: 2rem;
}
.public-post-item .post-page-preview {
  margin-top: 2rem;
}
.public-post-item .post-page-preview img {
  display: block;
  margin: 2rem 0;
  width: 100%;
  max-width: 450px;
  height: auto;
}
.actor-public-profile,
.public-profile {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}
.actor-public-profile > h2,
.public-profile > h2 {
  margin: 3rem 0;
}
.venue-list-item {
  border: 1px solid white;
  margin-bottom: 2rem;
}
.venue-list-item,
.venue-detail-wrapper {
  position: relative;
}
.venue-list-item h3,
.venue-detail-wrapper h3 {
  padding: 0;
}
.venue-list-item .venue-detail-content,
.venue-detail-wrapper .venue-detail-content {
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 150px auto;
  grid-gap: 10px;
}
.venue-list-item .venue-detail-content h3,
.venue-detail-wrapper .venue-detail-content h3 {
  margin: 0 0 5px 0;
  padding: 0;
}
.venue-list-item .venue-detail-content .venue-right-col > div,
.venue-detail-wrapper .venue-detail-content .venue-right-col > div {
  margin-bottom: 1rem;
}
.venue-list-item .footer,
.venue-detail-wrapper .footer {
  padding: 2rem;
  border-top: 1px solid #dfdfdf;
}
.venue-list-item .follow-indicator a,
.venue-detail-wrapper .follow-indicator a {
  color: #288cb6;
  width: 20px;
  height: 20px;
}
.venue-list-item .follow-indicator a:hover,
.venue-detail-wrapper .follow-indicator a:hover {
  text-decoration: none;
}
.public-list-item {
  border: 1px solid white;
  margin-bottom: 2rem;
  position: relative;
  padding: 1rem;
  width: 100%;
  max-width: 1240px;
}
.public-list-item .grid-wrapper {
  display: grid;
  grid-column-gap: 10px;
  grid-template-columns: auto 40px;
  grid-template-right: auto 40px;
}
.public-list-item h2 {
  margin-bottom: 2rem;
}
.public-list-item .detail-wrapper {
  display: grid;
  grid-template-rows: auto auto;
  grid-row-gap: 1rem;
}
.public-list-item .detail-wrapper h3 {
  margin: 0 0 5px 0;
}
.public-list-item .detail-wrapper img {
  width: 100%;
  height: auto;
}
.public-list-item .detail-wrapper .right-col > div {
  margin-bottom: 1rem;
}
@media screen and (min-width: 450px) {
  .public-list-item .detail-wrapper {
    display: grid;
    grid-template-columns: 150px auto;
    grid-gap: 10px;
  }
}
.public-list-item .bio {
  margin-top: 1rem;
}
.public-list-item .footer {
  padding: 2rem;
  border-top: 1px solid #dfdfdf;
}
.public-list-item .follow-indicator {
  margin-bottom: 20px;
}
.public-list-item .follow-indicator a {
  color: #288cb6;
}
.public-list-item .follow-indicator a:hover {
  text-decoration: none;
}
.public-list-item .right {
  padding: 0;
  display: grid;
  grid-gap: 10px;
  justify-content: center;
  text-align: center;
  align-content: start;
}
.public-list-item .right a {
  width: 30px;
  color: #288cb6;
  fill: #288cb6;
}
.public-list-item .right a:hover {
  color: #78bad3;
  fill: #78bad3;
}
.public-list-item .right a:before {
  font-size: 22px;
}
ul.gl-list li .bi-person-check {
  display: none;
}
ul.gl-list li .door-action {
  display: block;
}
ul.gl-list li.checked-in .bi-person-check {
  display: block;
}
ul.gl-list li.checked-in .door-action {
  display: none;
}
.hidden {
  display: none;
}
.error {
  display: none;
  color: #df0000;
  padding: 1rem 0;
}
.error.show {
  display: block;
}
.message {
  display: none;
  color: #018610;
  padding: 1rem 0;
}
.message.show {
  display: block;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.indent {
  padding-left: 2rem;
}
.tabber .tab {
  display: none;
  padding-top: 2rem;
}
.tabber .tab.active {
  display: block;
}
.tabber .tabs {
  position: relative;
}
.tabber .tabs .tab-line {
  height: 100%;
  border-bottom: 1px solid #dfdfdf;
  position: absolute;
  bottom: 1px;
  left: 0;
  width: 99%;
}
.tabber .tabs a {
  display: inline-block;
  color: #288cb6;
  padding: 8px 12px;
  border-radius: 4px 4px 0 0;
  position: relative;
  margin-right: 4px;
}
.tabber .tabs a:hover {
  text-decoration: none;
  background-color: #288cb6;
  color: white;
}
.tabber .tabs a.active {
  border: 1px solid #222;
  border-bottom: none;
  margin-bottom: 1px;
  color: white;
  cursor: default;
  background-color: #288cb6;
}
/** test **/
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}
.modal-dialog-scrollable {
  height: calc(99%);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}
.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(99%);
}
.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}
.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(-0.7rem);
  border-top-right-radius: calc(-0.7rem);
}
.modal-header .btn-close {
  padding: 0.5rem 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem auto;
}
.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}
.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}
.modal-footer {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(-0.7rem);
  border-bottom-left-radius: calc(-0.7rem);
}
.modal-footer > * {
  margin: 0.25rem;
}
@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-scrollable {
    height: calc(96.5%);
  }
  .modal-dialog-centered {
    min-height: calc(96.5%);
  }
  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen .modal-header {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}
.modal-fullscreen .modal-footer {
  border-radius: 0;
}
@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
}
/*# sourceMappingURL=styles.css.map */