/* Kaffeautomat Kontakt */

.wrapper{
	z-index: 999;
  	width: 100%;
    margin-bottom: 20px;
}
.wrapper .toast{
  background: #f6f5f3;
  padding: 20px 15px 20px 20px;
  border-radius: 10px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wrapper .toast.offline{
  border-color: #ccc;
}
.toast .content{
  display: flex;
  align-items: center;
}
.content .details{
  margin-left: 15px;
  width: 100%;
}

.dennis {
  border-radius: 100%;
  height: 100px;
  width: 100px;
  position: sticky;
  top: 0;
}

#button-float {
  float:right !important:
}
.details p{
  color: #878787;
}

.close-icon:hover{
  background: #efefef;
}


// Comment card




.comment-card-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.comment-card {
  background-color: #f6f5f3;
  border-radius: 12px;
  width: 100%;
  padding: 24px;
  position: relative;
  margin-bottom: 15px;
}

.comment-card h2 {
  margin: 0;
  font-size: 20px;
}

.comment-card h2 span {
  font-weight: bold;
}

.comment-card p {
  margin-top: 8px;
  color: #555;
  font-size: 15px;
  line-height: 1.4;
}

.comment-btn {
  background-color: #597a5d;
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 6px 16px;
  font-size: 14px;
  cursor: pointer;
  margin-top: 14px;
}

.comment-avatars {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 120px;
  justify-content: flex-end;
}

.comment-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid white;
  object-fit: cover;
}

