body {
  color: #8c8c8c;
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 300;
  overflow-x: hidden;
  background: white;
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto; }

.container-fluid {
  overflow: unset;
  padding-left: 1% !important;
  padding-right: 1% !important; }

body .tm-section {
  padding-top: 1.5rem; }

.navbar-brand {
  height: 100%;
  display: flex !important;
  align-items: center; }
  .navbar-brand > img {
    padding: 1rem;
    height: 100%; }

.navbar-nav div.umb-block-grid__layout-item {
  /*display: inline-block;*/
  float: left; }

.nav-link {
  white-space: nowrap; }
  .nav-link.text-center {
    text-align: center; }

.nav-user-btns {
  display: flex;
  padding: 5px; }

.banner {
  overflow: hidden; }
  .banner img {
    object-fit: cover;
    margin: 0 auto; }

.banner-small {
  min-height: 100px;
  position: relative; }
  .banner-small img {
    min-height: 100px; }
  .banner-small .banner-gradient {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 20%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0) 100%);
    width: 2000px;
    height: 200px;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    margin: 0 auto; }
  .banner-small .breadcrumb {
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: 0px;
    width: 1390px; }
  .banner-small h1 {
    display: block;
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 0px;
    margin-left: auto;
    margin-right: auto;
    width: 1390px;
    color: var(--main-bg-color);
    padding: 1rem; }

.breadcrumb {
  background: none !important;
  padding-top: 0 !important;
  margin-top: 0 !important;
  color: #8c8c8c !important; }
  .breadcrumb a {
    color: white; }

.event-metadata {
  display: flex;
  flex-wrap: wrap;
  color: #8c8c8c;
  stroke: #8c8c8c; }
  .event-metadata div {
    margin: 0 1rem;
    white-space: nowrap; }

.teaser-listing .section-header {
  border-bottom: 1px solid lightgray; }

.teaser-listing .section-content {
  display: flex;
  flex-wrap: wrap; }

.gallery-widget {
  margin: 1rem 0; }
  .gallery-widget .gallery-teasers {
    display: flex;
    flex-wrap: wrap; }
    .gallery-widget .gallery-teasers img {
      max-width: 10rem;
      display: block;
      margin: 4px; }
  .gallery-widget .gallery-fullimages {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(128, 128, 128, 0.6);
    z-index: 100000; }
    .gallery-widget .gallery-fullimages .gallery-fullimage img {
      max-width: 90%;
      max-height: 85%;
      position: absolute;
      top: 1rem;
      left: 50%;
      transform: translate(-50%, 0%); }
    .gallery-widget .gallery-fullimages .gallery-fullimage .gallery-description {
      position: fixed;
      bottom: 7rem;
      padding: 1rem;
      background-color: seashell;
      color: black;
      font-size: 16px;
      border-radius: 1rem;
      left: 50%;
      transform: translate(-50%, 0%);
      width: 90%; }
    .gallery-widget .gallery-fullimages .gallery-buttons {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translate(-50%, 0%);
      display: flex; }
      .gallery-widget .gallery-fullimages .gallery-buttons div {
        border: 3px solid white;
        border-radius: 100%;
        background: gray;
        color: white;
        display: inline-block;
        margin: 0 0.5rem;
        cursor: pointer; }
      .gallery-widget .gallery-fullimages .gallery-buttons svg {
        padding: 0.5rem;
        vertical-align: middle;
        text-align: center;
        width: 3rem;
        height: 3rem; }

.comment-section {
  margin: 1rem 0; }
  .comment-section .comment {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "author date" "comment comment";
    margin: 1rem 1rem;
    padding: 1rem;
    border: 1px solid lightgray;
    border-radius: 10px;
    box-shadow: 2px 2px 5px;
    background-color: white; }
    .comment-section .comment .btn {
      color: darkred;
      background: white; }
    .comment-section .comment .comment-author {
      grid-area: author; }
    .comment-section .comment .comment-date {
      grid-area: date;
      justify-self: right; }
    .comment-section .comment .comment-text {
      grid-area: comment;
      border-top: 1px solid lightgray; }
  .comment-section input[type=submit], .comment-section .btn[type=submit] {
    margin: 1rem;
    background-color: #cc9900;
    border-color: #cc9900;
    color: white; }
    .comment-section input[type=submit]:hover, .comment-section .btn[type=submit]:hover {
      background-color: #906E09; }

.teaser-box {
  padding: 1rem;
  transition: background-color 0.5s; }
  .teaser-box:hover {
    background-color: #eeeeee; }
    .teaser-box:hover img {
      transform: scale(1.2); }
    .teaser-box:hover .teaser-metadata {
      opacity: 0; }
  .teaser-box .tm-content-box {
    position: relative; }
  .teaser-box img {
    transition: transform 0.5s; }
  .teaser-box .teaser-image-container {
    overflow: hidden;
    height: 180px; }
  .teaser-box .teaser-metadata {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    transition: opacity 0.5s; }
    .teaser-box .teaser-metadata div {
      text-align: center;
      padding: 0.2rem; }
    .teaser-box .teaser-metadata svg {
      fill: none;
      stroke-width: 3;
      stroke: #8c8c8c !important;
      color: #8c8c8c !important; }

div[data-content-element-type-alias="richText"] img {
  max-width: 100%;
  height: auto;
  width: auto;
  padding: 1rem; }

#vue-usermenu .notification-items {
  max-height: 22rem;
  overflow: scroll;
  overflow-x: hidden;
  scrollbar-width: thin; }

#vue-usermenu .notification-item {
  display: block;
  margin: 0.5rem;
  color: black;
  padding: 0.5rem;
  border-radius: 10px;
  box-shadow: lightgray 2px 2px 5px; }
  #vue-usermenu .notification-item:hover {
    background-color: #cc9900;
    color: white; }
  #vue-usermenu .notification-item .notification-title {
    font-weight: bold; }

#vue-usermenu .new-notification {
  border-top: 1px solid #cc9900; }
  #vue-usermenu .new-notification i {
    color: #cc9900; }

.usermenu-notificationcount {
  position: absolute;
  top: 0px;
  left: 40%;
  min-width: 1.5rem;
  height: 1.5rem;
  background: #cc9900;
  font-weight: bold;
  border-radius: 100%;
  text-align: center;
  align-self: center;
  line-height: 0.9;
  padding: 0.2rem;
  color: white; }

.usermenu {
  position: relative; }

.userList {
  display: flex;
  flex-wrap: wrap; }
  .userList span::after {
    content: "|";
    margin: 0 0.1rem; }
  .userList span:last-child::after {
    content: ""; }

.upcoming-event-item {
  border-top: 1px solid lightgray;
  padding: 0.5rem;
  display: flex;
  flex-wrap: wrap; }
  .upcoming-event-item * {
    align-content: center; }
  .upcoming-event-item .btn {
    position: relative;
    margin: 0.5rem 0; }
    .upcoming-event-item .btn .counter {
      position: absolute;
      top: -5px;
      margin-right: 0.2rem; }
  .upcoming-event-item:nth-child(even) {
    background-color: #f8f8f8; }
  .upcoming-event-item.selectedItem {
    background-color: lightgray;
    border-left: 4px solid green;
    color: black; }
  .upcoming-event-item .date-start {
    width: 7rem;
    text-align: center; }
  .upcoming-event-item .date-start,
  .upcoming-event-item .date-end {
    font-weight: bold; }
    .upcoming-event-item .date-start p,
    .upcoming-event-item .date-end p {
      margin: 0; }
  .upcoming-event-item .name {
    margin-left: 1rem; }
  .upcoming-event-item .description {
    margin-left: 1rem; }
    .upcoming-event-item .description p {
      margin: 0; }
  .upcoming-event-item .options {
    margin: 0 1rem; }
    .upcoming-event-item .options button {
      margin-right: 1rem; }
    .upcoming-event-item .options .btn-success {
      background-color: #cc9900;
      border-color: #cc9900; }
  .upcoming-event-item .replies {
    flex-basis: 100%;
    margin-top: 1rem; }
    .upcoming-event-item .replies table {
      display: block; }
    .upcoming-event-item .replies .icon {
      flex-grow: 0;
      flex-shrink: 0;
      flex-basis: 35px;
      color: #cc9900;
      cursor: pointer; }
      .upcoming-event-item .replies .icon-red {
        color: #cc3d23; }
      .upcoming-event-item .replies .icon a {
        color: unset; }
    .upcoming-event-item .replies .name {
      font-weight: bold;
      margin-right: 1rem;
      flex-grow: 0;
      flex-shrink: 0;
      flex-basis: 10rem; }
    .upcoming-event-item .replies .status {
      flex: auto; }
    .upcoming-event-item .replies .comment {
      flex: auto;
      width: 100%; }
    .upcoming-event-item .replies tr {
      display: flex;
      flex-wrap: wrap; }
    .upcoming-event-item .replies td {
      display: block;
      flex: 1;
      padding: 0.25rem 0.5rem; }

.hidden {
  display: none; }
