.chat-btn {
  right: 0;
  bottom: 25%;
  position: fixed;
  z-index: 10;
  border-right: none;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  display: flex;
  flex-direction: column;
}
.chat-btn .pm-data {
  background-color: white;
  border-radius: 10px 0 0 0;
  padding: 5px;
  box-shadow: -1px -1px 5px rgba(0, 0, 0, 0.3);
  border-left: 1px solid rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(0, 0, 0, 0.3);
}
.chat-btn .pm-data #pm-carousel .carousel-item p {
  margin: 0;
}
.chat-btn .pm-data .carousel-controls {
  background-color: white;
  padding-right: 5px;
  flex-grow: 1;
}
.chat-btn .pm-data .carousel-controls .carousel-control {
  filter: brightness(0.5);
  background: none;
  border: none;
}
.chat-btn .pm-data .carousel-controls .carousel-control .icon {
  width: 15px;
  height: 15px;
}
.chat-btn .pm-data .carousel-controls .carousel-control:hover {
  filter: brightness(0);
}
.chat-btn .pm-data .carousel-controls .carousel-control:focus {
  outline: none;
}
.chat-btn .pm-title, .chat-btn .pm-carousel-wrapper {
  padding: 2px 5px;
}
.chat-btn__controls {
  display: flex;
}
.chat-btn .minimize-btn {
  margin-left: auto;
  width: 25px;
  height: 25px;
  font-size: 19px;
  line-height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #585750;
  cursor: pointer;
  color: white;
  background-color: #2b2b28;
  align-self: flex-end;
}
.chat-btn .minimize-btn:hover {
  color: #f09033;
}
.chat-btn .minimize-btn .plus {
  display: none;
}
.chat-btn #chat-btn {
  margin-left: auto;
  display: flex;
  align-items: stretch;
  text-align: center;
  cursor: pointer;
  background-color: #2b2b28;
  border: 2px solid #585750;
  box-shadow: -1px 0 5px rgba(0, 0, 0, 0.3);
}
.chat-btn--hidden {
  display: none;
}
.chat-btn--minimized #chat-btn {
  box-shadow: none;
}
.chat-btn--minimized .minimize-btn .plus {
  display: inline;
}
.chat-btn--minimized .minimize-btn .minus {
  display: none;
}
.chat-btn--minimized .chat-btn__title {
  display: none;
}
.chat-btn__icon {
  border-right: 1px solid #585750;
  padding: 5px 8px;
}
.chat-btn__icon i {
  font-size: 40px;
  transition: all 0.3s;
  z-index: 1;
  text-shadow: 1px 1px 2px white;
  color: #f09033;
}
.chat-btn__title {
  flex-grow: 1;
  font-size: 16px;
  transition: all 0.3s;
  color: white;
  padding: 5px 8px;
  display: flex;
  flex-direction: column;
}
.chat-btn__title > span {
  height: 21px;
  margin-bottom: 5px;
  transition: all 0.3s;
}
.chat-btn__indicator {
  font-size: 10px;
  font-weight: bold;
  line-height: 10px;
  padding: 1px 2px;
  border-radius: 10px;
  border: 1px solid #f58728;
  background-color: orange;
  transition: all 0.3s;
  z-index: 2;
  margin-left: auto;
  display: inline-flex;
  color: #2b2b28;
  position: absolute;
  right: 3px;
  bottom: 3px;
}
.chat-btn__indicator #msg_count {
  margin-left: 2px;
}
.chat-btn #chat-btn:hover i {
  text-shadow: 1px 1px 2px #f09033;
  color: white;
}
.chat-btn #chat-btn:hover .chat-btn__title > span {
  border-bottom: 1px solid #f09033;
}

.chat-container {
  filter: drop-shadow(2px 4px 6px black);
  position: fixed;
  right: 20px;
  bottom: 30px;
  width: 500px;
  max-width: 90%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: 15px;
  border: 1px solid #dee2e6;
  height: 70vh;
  min-height: 400px;
  transition: width 0.3s, height 0.3s, filter 0.3s;
}
.chat-container--hidden {
  overflow: hidden;
  width: 0;
  height: 0;
  border: none;
  min-height: 0;
}
.chat-container .resize-btn {
  position: absolute;
  left: 5px;
  top: 0;
  cursor: pointer;
  padding: 2px;
}
.chat-container .resize-btn .resize-icon i {
  width: 25px;
  height: 25px;
}
.chat-container .resize-btn .resize-icon.collapse {
  display: none;
}
.chat-container .close-btn {
  position: absolute;
  right: 5px;
  top: 0;
  cursor: pointer;
  padding: 2px;
  text-align: right;
}
.chat-container .close-btn i {
  width: 25px;
  height: 25px;
}
.chat-container .chat {
  height: 100%;
}
.chat-container .chat__title i:hover {
  color: #005fcc;
}
.chat-container .chat__body {
  flex-grow: 1;
  height: 50vh;
  border: 1px solid #dee2e6;
  overflow-y: auto;
  max-width: unset;
  width: 100%;
  padding-bottom: 10px;
}
.chat-container .chat__body .projektmanager .inner-row .dateien .file-wrapper {
  position: relative;
}
.chat-container .chat__body .projektmanager .inner-row .dateien .file-wrapper .delete-file {
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 10px;
  position: absolute;
  right: -7px;
  color: red;
  top: -10px;
  display: none;
}
.chat-container .chat__body .projektmanager .inner-row .dateien .file-wrapper:hover .delete-file {
  display: inline-flex;
}
.chat-container .chat__body .projektmanager .inner-row .dateien .file-wrapper:hover .delete-file:hover {
  color: #c20000;
}
.chat-container .chat__body .row[data-is-read=false] {
  background-color: #e2eaf2;
}
.chat-container .chat__body .row .col.kommentar {
  word-break: break-word;
}
.chat-container .chat__body .row .col.kommentar span {
  width: 100%;
}
.chat-container .chat__body .row .col.kommentar p, .chat-container .chat__body .row .col.kommentar ul, .chat-container .chat__body .row .col.kommentar ol {
  margin: 0;
}
.chat-container .chat__body .row .inner-row * a.send-email {
  bottom: -18px;
  right: 5px;
  font-size: 14px;
  border: 1px solid #dee2e6;
  background: radial-gradient(ellipse, white, #f4f7fa 120%);
  border-radius: 12px;
  padding: 0 4px;
}
.chat-container .chat__body .row .inner-row * a.send-email:hover {
  background: radial-gradient(ellipse, #f4f7fa, #f4f7fa 120%);
}
.chat-container .chat__controls {
  padding: 5px;
}
.chat-container .chat__controls textarea {
  min-height: 50px;
  max-height: 250px;
}
.chat-container .chat__controls .other {
  padding-right: 5px;
}
.chat-container .chat__controls .other > * {
  cursor: pointer;
}
.chat-container .chat__controls .is-see-change {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  border: 1px solid #dee2e6;
  cursor: pointer;
}
.chat-container .chat__controls .controls-btn-confirm {
  margin-left: auto;
  height: unset;
}
.chat-container--wide:not(.chat-container--hidden) {
  width: 1000px;
  height: 80vh;
}
.chat-container--wide:not(.chat-container--hidden) .resize-icon.expand {
  display: none;
}
.chat-container--wide:not(.chat-container--hidden) .resize-icon.collapse {
  display: block !important;
}
.chat-container--wide:not(.chat-container--hidden) .chat__body {
  height: 50vh;
}
.chat-container--wide:not(.chat-container--hidden) .chat__controls textarea {
  max-height: 300px;
}/*# sourceMappingURL=chat_additional_1.css.map */