@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i");
@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(10px); }
  to {
    opacity: 1;
    transform: translateY(0px); } }

/* Firefox < 16 */
@-moz-keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(10px); }
  to {
    opacity: 1;
    transform: translateY(0px); } }

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(10px); }
  to {
    opacity: 1;
    transform: translateY(0px); } }

/* Internet Explorer */
@-ms-keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(10px); }
  to {
    opacity: 1;
    transform: translateY(0px); } }

/* Opera < 12.1 */
@-o-keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(10px); }
  to {
    opacity: 1;
    transform: translateY(0px); } }

.card {
  border-radius: 10px;
  background: white;
  box-shadow: 0px 0px 20px -12px black;
  padding: 20px 20px 10px;
  margin: 0 0 10px 0;
  position: relative; }

.__app-header__a6d36 {
  width: 100%;
  height: 50px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  display: flex;
  position: relative;
  background: var(--primary-bg-color-3);
  z-index: 300; }

.__app-info-item__e4050 {
  position: relative; }

.__app-info-item__e4050 .location-bar {
  position: absolute;
  content: " ";
  width: calc(100% - 4px);
  left: 2px;
  top: 0px;
  border-top: 6px solid #3acce1;
  border-bottom: 8px solid transparent;
  border-radius: 20px;
  z-index: 1; }
  .__app-info-item__e4050 .location-bar.location-1 {
    border-top: 6px solid #3acce1; }
  .__app-info-item__e4050 .location-bar.location-2 {
    border-top: 6px solid #ffba00; }
  .__app-info-item__e4050 .location-bar.location-3 {
    border-top: 6px solid #89d510; }
  .__app-info-item__e4050 .location-bar.location-4 {
    border-top: 6px solid #ead90f; }

.__app-info-item__e4050 .info-image {
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px; }

.__app-info-item__e4050 .inner {
  border-radius: 10px;
  background: white;
  box-shadow: 0px 0px 20px -12px black;
  padding: 20px 20px 10px;
  margin: 0 0 10px 0;
  position: relative;
  padding: 0px;
  min-height: 150px;
  background: var(--primary-bg-color-3);
  min-height: auto; }

.__app-info-item__e4050 .header {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0px 0px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px; }

.__app-info-item__e4050 .body {
  padding: 10px; }
  .__app-info-item__e4050 .body .meta {
    position: relative;
    font-size: 14px;
    padding: 0px 20px 0px 0px;
    font-weight: 300;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    height: 30px; }
    .__app-info-item__e4050 .body .meta img {
      position: absolute;
      right: 0px;
      top: 6px;
      width: 16px; }

.__app-info-item__e4050 .headline {
  font-size: 14px;
  font-weight: 300;
  color: #fff; }

.__app-info-item__e4050 .body-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-color-on-answer-field);
  margin-bottom: 10px; }

.__app-info-item__e4050 .add-agenda {
  position: absolute;
  right: 20px;
  top: calc(50% - 20px); }

.__app-info-item__e4050 .add-agenda-text {
  position: absolute;
  font-size: 10px;
  text-align: center;
  width: 50px;
  right: -8px;
  top: 40px;
  color: var(--primary-bg-color); }

.__app-info-item__e4050 .add-agenda-icon {
  width: 36px;
  height: 36px;
  background-color: var(--primary-bg-color);
  -webkit-mask-image: url("/icons/agenda-item.svg");
  mask-image: url("/icons/agenda-item.svg");
  transition: opacity 1s; }

.__app-info-item__e4050.inactive .add-agenda-icon {
  opacity: 0; }

.__app-info-item__e4050.active .add-agenda-icon {
  opacity: 1; }

.__app-info-item__e4050 .checkbox {
  float: right; }

.__app-info-item__e4050 .clearboth {
  clear: both; }

.__app-info-item__e4050.active .inner {
  animation: slide-in 0.5s forwards;
  -webkit-animation: slide-in 0.5s forwards;
  background: #606060;
  color: white; }

.__app-info-item__e4050.inactive .inner {
  animation: slide-out 0.5s forwards;
  -webkit-animation: slide-out 0.5s forwards; }

@keyframes slide-in {
  100% {
    transform: translateX(-25%); } }

@-webkit-keyframes slide-in {
  100% {
    -webkit-transform: translateX(-25%); } }

@keyframes slide-out {
  0% {
    transform: translateX(-25%); }
  100% {
    transform: translateX(0%); } }

@-webkit-keyframes slide-out {
  0% {
    transform: translateX(-25%); }
  100% {
    transform: translateX(0%); } }

.__app-nav__f5f63 {
  position: absolute;
  right: 5px;
  top: 0px; }

.__app-nav__f5f63 .nav-icon {
  width: 33px;
  position: absolute;
  right: 5px;
  z-index: 20;
  margin: 10px; }
  .__app-nav__f5f63 .nav-icon .stripe {
    height: 0px;
    margin: 5px 0px;
    width: 100%;
    border-radius: 2px;
    border: 1px solid white;
    transition: width .5s, margin-left .5s; }
    .__app-nav__f5f63 .nav-icon .stripe:nth-child(2) {
      width: 66%;
      margin-left: 34%; }
    .__app-nav__f5f63 .nav-icon .stripe:nth-child(3) {
      width: 50%;
      margin-left: 50%; }
    .__app-nav__f5f63 .nav-icon .stripe:nth-child(4) {
      width: 33%;
      margin-left: 67%; }

.__app-nav__f5f63.open .stripe {
  width: 100% !important;
  margin-left: 0% !important; }

.__app-nav__f5f63 .btn-notification {
  transform: translate(-100%, -20%);
  right: auto; }

.__app-votescope__7ffa1 {
  position: relative; }

.__app-votescope__7ffa1 .location-bar {
  position: absolute;
  content: " ";
  width: calc(100% - 4px);
  left: 2px;
  top: 0px;
  border-top: 6px solid #3acce1;
  border-bottom: 8px solid transparent;
  border-radius: 20px;
  z-index: 1; }

.__app-votescope__7ffa1 .votescopem-image {
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px; }

.__app-votescope__7ffa1 .inner {
  border-radius: 10px;
  background: white;
  box-shadow: 0px 0px 20px -12px black;
  padding: 20px 20px 10px;
  margin: 0 0 10px 0;
  position: relative;
  padding: 0px;
  min-height: 150px;
  background: var(--primary-bg-color-3); }

.__app-votescope__7ffa1 .header {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0px 0px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px; }

.__app-votescope__7ffa1 .body {
  padding: 10px; }
  .__app-votescope__7ffa1 .body .meta {
    position: relative;
    font-size: 14px;
    padding: 0px 20px 0px 0px;
    font-weight: 300;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    height: 30px; }
    .__app-votescope__7ffa1 .body .meta img {
      position: absolute;
      right: 0px;
      top: 6px;
      width: 16px; }

.__app-votescope__7ffa1 .headline {
  font-size: 14px;
  font-weight: 300;
  color: #fff; }

.__app-votescope__7ffa1 .body-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-color-on-answer-field); }

.__app-votescope__7ffa1 .add-agenda {
  position: absolute;
  right: 20px;
  top: calc(50% - 20px); }

.__app-votescope__7ffa1 .add-agenda-text {
  position: absolute;
  font-size: 10px;
  text-align: center;
  width: 50px;
  right: -8px;
  top: 40px;
  color: var(--primary-bg-color); }

.__app-votescope__7ffa1 .add-agenda-icon {
  width: 36px;
  height: 36px;
  background-color: var(--primary-bg-color);
  -webkit-mask-image: url("/icons/agenda-item.svg");
  mask-image: url("/icons/agenda-item.svg");
  transition: opacity 1s; }

.__app-votescope__7ffa1.inactive .add-agenda-icon {
  opacity: 0; }

.__app-votescope__7ffa1.active .add-agenda-icon {
  opacity: 1; }

.__app-votescope__7ffa1 .checkbox {
  float: right; }

.__app-votescope__7ffa1 .clearboth {
  clear: both; }

.__app-votescope__7ffa1.active .inner {
  animation: slide-in 0.5s forwards;
  -webkit-animation: slide-in 0.5s forwards;
  background: #606060;
  color: white; }

.__app-votescope__7ffa1.inactive .inner {
  animation: slide-out 0.5s forwards;
  -webkit-animation: slide-out 0.5s forwards; }

@keyframes slide-in {
  100% {
    transform: translateX(-25%); } }

@-webkit-keyframes slide-in {
  100% {
    -webkit-transform: translateX(-25%); } }

@keyframes slide-out {
  0% {
    transform: translateX(-25%); }
  100% {
    transform: translateX(0%); } }

@-webkit-keyframes slide-out {
  0% {
    transform: translateX(-25%); }
  100% {
    transform: translateX(0%); } }

.__image-modal__150a0 {
  display: flex;
  position: fixed;
  top: 0px;
  left: 0px;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  z-index: 9999999999999;
  background: rgba(0, 0, 0, 0.8); }
  .__image-modal__150a0 .image-close {
    width: 32px;
    height: 32px;
    position: absolute;
    right: 3rem;
    top: 2rem;
    padding: 0.5rem;
    background-color: black;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center; }
    .__image-modal__150a0 .image-close i {
      width: 1rem;
      height: auto;
      padding: 0; }

.__image-modal__150a0 img {
  object-fit: contain;
  height: 100%;
  width: 100%;
  padding: 1rem;
  z-index: 9999999999999; }

.Searchable-select {
  position: relative;
  font-size: 14px; }
  .Searchable-select li {
    list-style: none;
    line-height: 1.2;
    padding: 0.6em 2.15em; }
  .Searchable-select__label {
    display: block;
    width: 100%;
    padding: 0.58em 1em;
    border: 1px solid #ccc;
    text-decoration: none;
    color: inherit;
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAXBAMAAADq5DJkAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAYUExURQAAADIyMiYmJjIyMjAwMDMzMzExMczMzG/7/KwAAAAHdFJOUwCoC4YjllkQbp1YAAAARklEQVQY02MoYEAB9OYyGTswMDgbwbgsgiEMLIEicFlDUQdXQbgsg7JgSKCwApzLZCgIlESYrCwIlERwmQyNUOxVUaCjBwG62A+AiSlt5gAAAABJRU5ErkJggg==") right 15px center no-repeat;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
    .Searchable-select__label--menu-open {
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0; }
    .Searchable-select__label--multiple {
      background: none;
      padding-top: 0.7em;
      min-height: 2.92857em; }
    .Searchable-select__label--multiple-selected {
      padding: 0.42857em 0.28571em 0; }
    .Searchable-select__label:hover, .Searchable-select__label:focus {
      text-decoration: none;
      color: inherit; }
    .Searchable-select__label:focus {
      border-color: #66afe9;
      outline: 0;
      box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); }
  .Searchable-select__selected-pill {
    display: inline-block;
    padding: 0 4px 0 8px;
    margin-left: 2px;
    margin-bottom: 6px;
    vertical-align: middle;
    border: 1px solid #c7c7c7;
    border-radius: 4px;
    font-size: 0.92857em;
    line-height: 1.92308em;
    background: #f5f5f5;
    background: #f2f8fb;
    cursor: default; }
  .Searchable-select__selected-pill-clear {
    display: inline-block;
    color: #bbb;
    padding: 0 2px;
    color: #888;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.2em;
    line-height: 1.1em; }
    .Searchable-select__selected-pill-clear:hover {
      color: #333; }
  .Searchable-select__search {
    padding: 0.7em;
    background: #f6f6f6; }
  .Searchable-select__input {
    display: block;
    width: 100%;
    padding: 0.6em 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
    .Searchable-select__input:focus {
      border-color: #66afe9;
      outline: 0;
      box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); }
  .Searchable-select__clear {
    position: relative;
    line-height: 1;
    padding: 0.75em 2.15em;
    cursor: pointer;
    background: #33CBFA;
    color: #fff; }
    .Searchable-select__clear:hover {
      background: #1ac5f9; }
    .Searchable-select__clear:focus {
      outline: none;
      text-decoration: underline; }
  .Searchable-select__info {
    padding: 0.8em 1em;
    color: #9a9a9a; }
  .Searchable-select__add-new {
    position: relative;
    padding: 0.8em 1em;
    line-height: 1;
    background: #e2e2e2;
    cursor: pointer; }
    .Searchable-select__add-new:hover {
      background: #d5d5d5; }
    .Searchable-select__add-new:focus {
      outline: none;
      text-decoration: underline; }
  .Searchable-select__loader {
    vertical-align: middle;
    width: 0.857em; }
  .Searchable-select__loader-text {
    vertical-align: middle; }
  .Searchable-select__menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 20;
    width: 100%;
    background: #fff;
    border: 1px solid #D7D7D7;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    border-top: none; }
  .Searchable-select__options-list {
    max-height: 300px;
    overflow-y: auto;
    padding: 10px 0;
    margin: 0; }
  .Searchable-select__option {
    cursor: pointer;
    position: relative; }
    .Searchable-select__option--selected {
      background: #eef6fa; }
    .Searchable-select__option:hover, .Searchable-select__option:focus {
      background: #f6f6f6;
      outline: none; }
    .Searchable-select__option--disabled {
      color: #8C8C8C;
      cursor: not-allowed; }
  .Searchable-select__icon {
    position: absolute;
    left: 0.6em;
    top: 50%;
    transform: translateY(-0.6em); }
    .Searchable-select__icon__check {
      color: #8c8c8c; }
    .Searchable-select__icon--clear {
      font-size: 1.3em;
      font-weight: bold; }
  .Searchable-select__matched-text {
    font-weight: bold; }

/* cyrillic-ext */
@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 400;
  src: local("PT Sans"), local("PTSans-Regular"), url(https://fonts.gstatic.com/s/ptsans/v10/jizaRExUiTo99u79D0-ExcOPIDUg-g.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; }

/* cyrillic */
@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 400;
  src: local("PT Sans"), local("PTSans-Regular"), url(https://fonts.gstatic.com/s/ptsans/v10/jizaRExUiTo99u79D0aExcOPIDUg-g.woff2) format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; }

/* latin-ext */
@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 400;
  src: local("PT Sans"), local("PTSans-Regular"), url(https://fonts.gstatic.com/s/ptsans/v10/jizaRExUiTo99u79D0yExcOPIDUg-g.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; }

/* latin */
@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 400;
  src: local("PT Sans"), local("PTSans-Regular"), url(https://fonts.gstatic.com/s/ptsans/v10/jizaRExUiTo99u79D0KExcOPIDU.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }

.avatar-no-image {
  display: none !important; }

* {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: 'PT Sans'; }

[data-ember-action] {
  cursor: pointer; }

b {
  font-weight: bold; }

html,
body {
  height: 100%;
  margin: 0;
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 300; }

.flex {
  display: flex; }

.flex-row {
  flex-direction: row; }

input:required {
  box-shadow: none; }

input:invalid {
  box-shadow: none; }

html {
  -webkit-text-size-adjust: none;
  touch-action: manipulation; }

#login-form .form-control {
  border: 1px solid transparent; }

@keyframes spin {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }

.animate-spin {
  animation: spin 1s linear infinite; }

.app-chat {
  display: flex;
  flex-direction: column; }

#login-form.touched .form-control:invalid {
  border: 1px solid red;
  outline: none !important; }

a {
  text-decoration: none;
  color: white; }

.app {
  max-width: 1024px;
  margin: 0 auto 0;
  position: relative; }

.isModulesFullWidth .app,
.is--desktop .app-main {
  max-width: 100% !important; }

.is--mobile .footer-nav {
  display: none; }

.is--desktop .footer-nav {
  position: absolute;
  bottom: -50px;
  left: 0px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 50px;
  background: var(--background-nav);
  color: var(--text-color-on-transparent-bg); }
  .is--desktop .footer-nav div {
    margin: 0 10px 0px; }
  .is--desktop .footer-nav a {
    color: var(--text-color-on-transparent-bg); }

.correct-margin-profil {
  margin: 0px 10px; }

.is--desktop .correct-margin-profil {
  margin: 0px 20px; }

.is--mobile.sticky-nav .tabs {
  top: 50px;
  position: fixed; }

.is--mobile.sticky-nav .app {
  margin-top: 100px; }

.is--mobile.sticky-nav .app-header {
  position: fixed;
  top: 0;
  /* left: 0; */
  max-width: 1024px;
  /* margin: 0 auto 0; */
  /* left: 0%; */ }

.is--mobile.sticky-nav .twitter-filter {
  position: fixed;
  top: 50px;
  z-index: 200; }

.welcome-message {
  color: white; }

.clear {
  clear: both; }

*::-webkit-scrollbar {
  display: none; }

/* Hide scrollbar for IE and Edge */
* {
  -ms-overflow-style: none; }

.devider {
  background: rgba(255, 255, 255, 0.3);
  height: 1px;
  width: 100%;
  margin: 10px 0px; }

.header-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 29vh;
  display: flex;
  align-content: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  margin-bottom: -50px; }
  .header-image .header-image-inner {
    color: white; }

.welcome-message {
  font-size: 25px;
  text-align: center;
  padding: 10px 10px; }

.back-icon {
  width: 35px;
  height: 35px;
  position: absolute;
  left: 10px;
  -webkit-mask-image: url(/icons/icons-back.svg);
  mask-image: url(/icons/icons-back.svg);
  mask-size: contain;
  -webkit-mask-size: contain;
  top: 8px; }
  .back-icon.is--desktop {
    display: none; }

.black-text p,
.black-text strong {
  color: black !important; }

.app-content {
  width: 100%;
  padding: 10px; }

.streams {
  padding: 20px; }
  .streams video {
    width: 100%; }
  .streams .vid1-dimensions {
    width: 100%;
    height: 300px;
    margin-top: 20px; }
  .streams .Searchable-select__search {
    display: none; }

.nav-main {
  background-image: linear-gradient(var(--background-nav-2), var(--background-nav-2));
  height: calc(80vh - 50px);
  color: white;
  width: 100%;
  display: flex;
  padding-top: 20%;
  padding-left: 50px;
  flex-direction: column;
  text-align: center;
  z-index: 99999;
  margin-top: 50px;
  position: absolute;
  height: calc(100vh - 50px); }
  .nav-main .nav-item {
    display: flex;
    margin: 5px 0px;
    -webkit-animation: fadein 1s;
    /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 1s;
    /* Firefox < 16 */
    -ms-animation: fadein 1s;
    /* Internet Explorer */
    -o-animation: fadein 1s;
    /* Opera < 12.1 */
    animation: fadein 1s; }
  .nav-main .nav-divider {
    border-bottom: 1px solid #ccc;
    height: 1px;
    width: 50vw;
    margin-top: 50px;
    margin-bottom: 20px; }

.is--mobile .sticky-nav .nav-main {
  top: 50px;
  position: fixed;
  margin-top: 0px; }

.is--desktop .break {
  flex-basis: 100%;
  height: 0; }

.is--desktop .app-programm-item {
  flex: 0 0 49.5%; }

.is--desktop .app-info-item {
  flex: 0 0 49.5%; }

.is--desktop .app-programm {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; }

.is--desktop .app-info {
  display: flex;
  justify-content: space-between; }

.is--desktop .app-main {
  max-width: 1024px;
  min-height: 65vh;
  margin: 0 auto; }

.is--desktop .header-image {
  min-height: 200px;
  margin: 0 auto -50px; }

.is--desktop .header-image {
  min-height: 200px;
  margin: 0 auto -50px; }

.is--desktop .app-nav {
  display: none; }

.froala-content .navbar-expand .navbar-nav-scroll,
.froala-content .svg-inline--fa,
.froala-content button,
.froala-content hr,
.froala-content input,
.froala-content svg:not(:root).svg-inline--fa {
  overflow: visible; }

.froala-content .fa-layers,
.froala-content .fa-layers-counter,
.froala-content .fa-layers-text,
.froala-content .fa-stack,
.froala-content .svg-inline--fa,
.froala-content label,
.froala-content output {
  display: inline-block; }

.froala-content .popover,
.froala-content .tooltip,
.froala-content address {
  font-style: normal; }

.froala-content .svg-inline--fa {
  font-size: inherit;
  height: 1em;
  vertical-align: -0.125em; }

.froala-content .svg-inline--fa.fa-lg {
  vertical-align: -0.225em; }

.froala-content .svg-inline--fa.fa-w-1 {
  width: 0.0625em; }

.froala-content .svg-inline--fa.fa-w-2 {
  width: 0.125em; }

.froala-content .svg-inline--fa.fa-w-3 {
  width: 0.1875em; }

.froala-content .svg-inline--fa.fa-w-4 {
  width: 0.25em; }

.froala-content .svg-inline--fa.fa-w-5 {
  width: 0.3125em; }

.froala-content .svg-inline--fa.fa-w-6 {
  width: 0.375em; }

.froala-content .svg-inline--fa.fa-w-7 {
  width: 0.4375em; }

.froala-content .svg-inline--fa.fa-w-8 {
  width: 0.5em; }

.froala-content .svg-inline--fa.fa-w-9 {
  width: 0.5625em; }

.froala-content .svg-inline--fa.fa-w-10 {
  width: 0.625em; }

.froala-content .svg-inline--fa.fa-w-11 {
  width: 0.6875em; }

.froala-content .svg-inline--fa.fa-w-12 {
  width: 0.75em; }

.froala-content .svg-inline--fa.fa-w-13 {
  width: 0.8125em; }

.froala-content .svg-inline--fa.fa-w-14 {
  width: 0.875em; }

.froala-content .svg-inline--fa.fa-w-15 {
  width: 0.9375em; }

.froala-content .svg-inline--fa.fa-w-16 {
  width: 1em; }

.froala-content .svg-inline--fa.fa-w-17 {
  width: 1.0625em; }

.froala-content .svg-inline--fa.fa-w-18 {
  width: 1.125em; }

.froala-content .svg-inline--fa.fa-w-19 {
  width: 1.1875em; }

.froala-content .svg-inline--fa.fa-w-20 {
  width: 1.25em; }

.froala-content .svg-inline--fa.fa-pull-left {
  margin-right: 0.3em;
  width: auto; }

.froala-content .svg-inline--fa.fa-pull-right {
  margin-left: 0.3em;
  width: auto; }

.froala-content .svg-inline--fa.fa-border {
  height: 1.5em; }

.froala-content .svg-inline--fa.fa-li {
  width: 2em; }

.froala-content .svg-inline--fa.fa-fw {
  width: 1.25em; }

.froala-content .fa-layers svg.svg-inline--fa {
  bottom: 0;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform-origin: center center;
  transform-origin: center center; }

.froala-content .fa-layers {
  height: 1em;
  position: relative;
  text-align: center;
  vertical-align: -0.125em;
  width: 1em; }

.froala-content .fa-layers-counter,
.froala-content .fa-layers-text {
  position: absolute;
  text-align: center; }

.froala-content .fa-layers-text {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform-origin: center center;
  transform-origin: center center; }

.froala-content .fa-layers-counter {
  background-color: #ff253a;
  border-radius: 1em;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  height: 1.5em;
  line-height: 1;
  max-width: 5em;
  min-width: 1.5em;
  overflow: hidden;
  padding: 0.25em;
  right: 0;
  text-overflow: ellipsis;
  top: 0;
  -webkit-transform: scale(0.25);
  transform: scale(0.25);
  -webkit-transform-origin: top right;
  transform-origin: top right; }

.froala-content pre,
.froala-content textarea {
  overflow: auto; }

.froala-content .fa-layers-bottom-right {
  bottom: 0;
  right: 0;
  top: auto;
  -webkit-transform: scale(0.25);
  transform: scale(0.25);
  -webkit-transform-origin: bottom right;
  transform-origin: bottom right; }

.froala-content .fa-layers-bottom-left {
  bottom: 0;
  left: 0;
  right: auto;
  top: auto;
  -webkit-transform: scale(0.25);
  transform: scale(0.25);
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left; }

.froala-content .fa-layers-top-right {
  right: 0;
  top: 0;
  -webkit-transform: scale(0.25);
  transform: scale(0.25);
  -webkit-transform-origin: top right;
  transform-origin: top right; }

.froala-content .fa-layers-top-left {
  left: 0;
  right: auto;
  top: 0;
  -webkit-transform: scale(0.25);
  transform: scale(0.25);
  -webkit-transform-origin: top left;
  transform-origin: top left; }

.froala-content .fa-lg {
  font-size: 1.3333333333em;
  line-height: 0.75em;
  vertical-align: -0.0667em; }

.froala-content .fa-li,
.froala-content address,
.froala-content button,
.froala-content input,
.froala-content legend,
.froala-content optgroup,
.froala-content select,
.froala-content textarea {
  line-height: inherit; }

.froala-content .fa-xs {
  font-size: 0.75em; }

.froala-content .fa-sm {
  font-size: 0.875em; }

.froala-content .fa-1x {
  font-size: 1em; }

.froala-content .fa-2x {
  font-size: 2em; }

.froala-content .fa-3x {
  font-size: 3em; }

.froala-content .fa-4x {
  font-size: 4em; }

.froala-content .fa-5x {
  font-size: 5em; }

.froala-content .fa-6x {
  font-size: 6em; }

.froala-content .fa-7x {
  font-size: 7em; }

.froala-content .fa-8x {
  font-size: 8em; }

.froala-content .fa-9x {
  font-size: 9em; }

.froala-content .fa-10x {
  font-size: 10em; }

.froala-content .fa-fw {
  text-align: center;
  width: 1.25em; }

.froala-content .fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0; }

.froala-content .fa-ul > li {
  position: relative; }

.froala-content .fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em; }

.froala-content body,
.froala-content caption {
  text-align: left; }

.froala-content .fa-border {
  border: 0.08em solid #eee;
  border-radius: 0.1em;
  padding: 0.2em 0.25em 0.15em; }

.froala-content .fa-pull-left {
  float: left; }

.froala-content .close,
.froala-content .fa-pull-right {
  float: right; }

.froala-content .fa.fa-pull-left,
.froala-content .fab.fa-pull-left,
.froala-content .fal.fa-pull-left,
.froala-content .far.fa-pull-left,
.froala-content .fas.fa-pull-left {
  margin-right: 0.3em; }

.froala-content .fa.fa-pull-right,
.froala-content .fab.fa-pull-right,
.froala-content .fal.fa-pull-right,
.froala-content .far.fa-pull-right,
.froala-content .fas.fa-pull-right {
  margin-left: 0.3em; }

.froala-content .fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear; }

.froala-content .fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8); }

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

.froala-content .fa-rotate-90 {
  -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=1)';
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg); }

.froala-content .fa-rotate-180 {
  -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=2)';
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg); }

.froala-content .fa-rotate-270 {
  -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=3)';
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg); }

.froala-content .fa-flip-horizontal {
  -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)';
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1); }

.froala-content .fa-flip-vertical {
  -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)';
  -webkit-transform: scale(1, -1);
  transform: scale(1, -1); }

.froala-content .fa-flip-both,
.froala-content .fa-flip-horizontal.fa-flip-vertical {
  -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)';
  -webkit-transform: scale(-1, -1);
  transform: scale(-1, -1); }

.froala-content :root .fa-flip-both,
.froala-content :root .fa-flip-horizontal,
.froala-content :root .fa-flip-vertical,
.froala-content :root .fa-rotate-180,
.froala-content :root .fa-rotate-270,
.froala-content :root .fa-rotate-90 {
  -webkit-filter: none;
  filter: none; }

.froala-content .fa-stack {
  height: 2em;
  position: relative;
  width: 2.5em; }

.froala-content article,
.froala-content aside,
.froala-content figcaption,
.froala-content figure,
.froala-content footer,
.froala-content header,
.froala-content hgroup,
.froala-content legend,
.froala-content main,
.froala-content nav,
.froala-content section {
  display: block; }

.froala-content .fa-stack-1x,
.froala-content .fa-stack-2x {
  bottom: 0;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0; }

.froala-content dl,
.froala-content h1,
.froala-content h2,
.froala-content h3,
.froala-content h4,
.froala-content h5,
.froala-content h6,
.froala-content ol,
.froala-content p,
.froala-content pre,
.froala-content ul {
  margin-top: 0;
  margin-bottom: 0; }

.froala-content .svg-inline--fa.fa-stack-1x {
  height: 1em;
  width: 1.25em; }

.froala-content .svg-inline--fa.fa-stack-2x {
  height: 2em;
  width: 2.5em; }

.froala-content .fa-inverse {
  color: #fff; }

.froala-content .sr-only-focusable:active,
.froala-content .sr-only-focusable:focus {
  margin: 0; }

.froala-content dd,
.froala-content h1,
.froala-content h2,
.froala-content h3,
.froala-content h4,
.froala-content h5,
.froala-content h6,
.froala-content label {
  margin-bottom: 0.5rem; }

.froala-content .svg-inline--fa .fa-primary {
  fill: var(--fa-primary-color, currentColor);
  opacity: 1;
  opacity: var(--fa-primary-opacity, 1); }

.froala-content .svg-inline--fa .fa-secondary {
  fill: var(--fa-secondary-color, currentColor);
  opacity: 0.4;
  opacity: var(--fa-secondary-opacity, 0.4); }

.froala-content .svg-inline--fa.fa-swap-opacity .fa-primary {
  opacity: 0.4;
  opacity: var(--fa-secondary-opacity, 0.4); }

.froala-content .svg-inline--fa.fa-swap-opacity .fa-secondary {
  opacity: 1;
  opacity: var(--fa-primary-opacity, 1); }

.froala-content .svg-inline--fa mask .fa-primary,
.froala-content .svg-inline--fa mask .fa-secondary {
  fill: #000; }

.froala-content .fad.fa-inverse {
  color: #fff; }

.position-relative {
  position: relative; }

.is--desktop .minilogo {
  left: -50px;
  top: -8px; }

.minilogo {
  position: absolute;
  height: 35px;
  left: 25%;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in;
  -moz-transition: opacity 0.5s ease-in;
  -o-transition: opacity 0.5s ease-in;
  -ms-transition: opacity 0.5s ease-in;
  transition: opacity 0.5s ease-in; }

.is--mobile .sticky .minilogo {
  opacity: 1; }

.dashboard-item-link-chat::after,
.dashboard-item-link-novote::after {
  display: flex;
  position: absolute;
  top: -5px;
  right: -5px;
  width: 15px;
  height: 15px;
  border-radius: 10px;
  background: black;
  color: white;
  font-size: 11px;
  text-align: center;
  line-height: 10px;
  align-items: center;
  justify-content: center; }

.dashboard-item-link-chat,
.dashboard-item-link-novote {
  position: relative; }

.vote-not-active {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px; }
  .vote-not-active > div {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    color: #000000; }
    .vote-not-active > div button {
      margin-top: 1rem; }

.form-control {
  border-radius: 5px;
  border: none;
  padding: 10px;
  width: 100%;
  margin: 20px 0px 20px; }

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem; }

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb; }

.alert-success {
  color: #000000;
  background-color: #00d11c;
  border-color: #00af17; }

/* Customize the label (the container) */
.container {
  display: block;
  position: relative;
  padding-right: 0px;
  padding-left: 0px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

/* Hide the browser's default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0; }

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 3px;
  left: 0;
  height: 15px;
  width: 15px;
  background: var(--background-text-box);
  border-radius: 50%; }

.container-checkbox .checkmark {
  border-radius: 0%; }

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: '';
  position: absolute;
  display: none; }

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
  display: block; }

/* Style the checkmark/indicator */
.container .checkmark:after {
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2.5px 2.5px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

.row {
  display: flex; }
  .row .col-50 {
    width: 50%; }

.avatar-container {
  display: flex;
  justify-content: flex-end; }

.avatar-image {
  border-radius: 5px;
  max-width: 100px; }

.no-avater {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  border: 1px solid var(--text-color-question);
  border-radius: 5px; }

.edit-avatar {
  color: lightgrey;
  font-size: 10px;
  background: var(--text-color-question);
  position: absolute;
  bottom: 0px;
  right: 0px;
  padding: 2px;
  border-bottom-right-radius: 5px; }

.btn-group {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 45px; }

.btn-group-lg {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 60px; }

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  border: none;
  text-align: center;
  font-size: 16px;
  position: relative; }

.btn:hover {
  cursor: pointer; }

.btn.btn-primary {
  color: white; }

.btn.btn-danger {
  color: white;
  background-color: #e74c3c; }

.btn.btn-success {
  color: white;
  background-color: #16a34a; }

.btn-card {
  color: var(--text-color-appointment);
  background-color: var(--background-appointment); }

.btn.btn-lg {
  height: 50px; }

.btn.btn-md {
  height: 25px;
  font-size: 14px; }

.btn.btn-sm {
  font-size: 16px;
  padding: 2px 6px;
  border-radius: 6px; }

.btn.btn-p {
  margin: 0;
  cursor: initial; }

.btn.btn-fullwidth {
  width: 100%; }

.btn.btn-align-right {
  position: absolute;
  right: 10px;
  top: 10px; }

.fa {
  color: white;
  margin: 0 10px; }

.deleteInput {
  right: 4px !important;
  top: 26px !important;
  position: absolute;
  font-size: 20px; }

.btn:disabled {
  opacity: 0.7; }

.private-message {
  position: absolute;
  right: 0px; }

.chat-box-avatar {
  display: flex;
  align-self: flex-start;
  margin-top: -10px;
  margin-bottom: -10px; }
  .chat-box-avatar.left {
    margin-left: -10px;
    margin-right: 10px; }
    .chat-box-avatar.left img {
      border-top-left-radius: 10px;
      border-bottom-left-radius: 10px; }
  .chat-box-avatar.right {
    margin-left: 10px; }
    .chat-box-avatar.right img {
      border-top-right-radius: 10px;
      border-bottom-right-radius: 10px; }
  .chat-box-avatar img {
    max-width: 75px;
    max-height: 75px; }

.deleteInput {
  right: 0px;
  top: 25px;
  position: absolute;
  font-size: 20px; }
  .deleteInput i {
    color: var(--text-color); }

.app-programm-module {
  overflow: initial; }

.ember-cli-notifications-notification__container {
  z-index: 9999999 !important; }

.Searchable-select__option-label {
  color: black; }

.flex {
  display: flex; }

.mb-4 {
  margin-bottom: calc(4 * var(--base-unit)); }

.mb-8 {
  margin-bottom: calc(8 * var(--base-unit)); }

.icon-mr {
  margin: 0;
  margin-right: calc(2 * var(--base-unit)); }

.icon-ml {
  margin: 0;
  margin-left: calc(2 * var(--base-unit)); }

:root {
  --base-unit: 0.25rem; }

.fa.fa-clock::before {
  content: '\f017'; }

.dashboard-item-link-Chat {
  position: relative; }

.unread-messages {
  position: absolute;
  right: 0px;
  font-size: 30px; }

.btn-notification {
  background-color: red;
  border-radius: 1.25rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: calc(50% - 50px);
  transform: translate(-20%, -20%);
  font-size: 10px;
  width: 20px;
  height: 20px;
  z-index: 9999; }

.pm-messages {
  z-index: 999;
  position: absolute;
  right: 10px;
  top: -2px;
  font-size: 40px; }
  .pm-messages:hover {
    cursor: pointer; }
  .pm-messages .btn-notification {
    right: 0;
    top: 0;
    transform: translateY(5px); }

.already-logged-in {
  padding: 10px; }
  .already-logged-in button {
    appearance: none;
    padding: 0;
    margin: 0;
    border: none;
    background-color: transparent;
    display: flex;
    margin-top: 2rem; }
    .already-logged-in button svg {
      height: 2rem;
      fill: var(--text-color); }
  .already-logged-in .dashboard-link {
    display: block;
    margin-top: 1rem;
    text-decoration: underline; }

.login-state {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 2rem; }
  .login-state span {
    font-weight: bold; }
  .login-state button {
    appearance: none;
    padding: 0;
    margin: 0;
    border: none;
    background-color: transparent;
    display: flex; }
    .login-state button svg {
      height: 2rem;
      fill: var(--fill-navbar-icons);
      margin-top: 1rem; }

.notification-envelope > svg {
  height: auto;
  width: 40px;
  margin: 0 10px; }

.btn.btn-danger {
  background-color: red; }

.chat-input-wrapper {
  height: 45px; }
  .chat-input-wrapper input {
    height: 100%;
    width: 100%;
    margin: 0px;
    border-radius: 0px; }
  .chat-input-wrapper button {
    border: none;
    height: 100%;
    background: var(--text-color-akzent);
    color: #fff;
    padding: 0 10px; }

.chat-input-wrapper {
  height: 45px !important; }

.chat-input-wrapper input {
  height: 100%;
  width: 100%;
  margin: 0;
  border-radius: 0; }

.nav-main .btn-notification {
  top: -7px;
  right: calc(33% - 51px);
  transform: none; }

.app-loading {
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center; }

.lds-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px; }

.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px; }

.lds-roller div:after {
  content: ' ';
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #000;
  margin: -4px 0 0 -4px; }

.lds-roller div:nth-child(1) {
  animation-delay: -0.036s; }

.lds-roller div:nth-child(1):after {
  top: 63px;
  left: 63px; }

.lds-roller div:nth-child(2) {
  animation-delay: -0.072s; }

.lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px; }

.lds-roller div:nth-child(3) {
  animation-delay: -0.108s; }

.lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px; }

.lds-roller div:nth-child(4) {
  animation-delay: -0.144s; }

.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px; }

.lds-roller div:nth-child(5) {
  animation-delay: -0.18s; }

.lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px; }

.lds-roller div:nth-child(6) {
  animation-delay: -0.216s; }

.lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px; }

.lds-roller div:nth-child(7) {
  animation-delay: -0.252s; }

.lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px; }

.lds-roller div:nth-child(8) {
  animation-delay: -0.288s; }

.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px; }

@keyframes lds-roller {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

.hide-on-desktop {
  display: none; }

/*# sourceMappingURL=event-app.css.map */