#cnw-widget {
  position: fixed;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
  transition: width .3s, border-radius .3s;
  z-index: 9999;
}

#cnw-widget.cnw-pinned {
  position: fixed;
}

#cnw-widget.cnw-center {
  left: 50%;
  transform: translateX(-50%);
}

#cnw-widget img {
  flex: 0 0 auto;
  border-radius: 50%;
}

#cnw-widget .cnw-message {
  display: none;
  margin-left: 10px;
  align-items: center;
}

#cnw-widget.open {
  width: auto;
  border-radius: 25px;
  padding: 10px;
}

#cnw-widget.open .cnw-message {
  display: flex;
}

.cnw-text h4 {
  margin: 0;
  font-size: 14px;
  line-height: 1.2;
}

.cnw-text p {
  margin: 4px 0 0;
  font-size: 12px;
  line-height: 1.2;
}

/* Ikona zamknięcia */
.cnw-dismiss-icon {
  margin-left: 15px;
  background: none;
  border: none;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}
.cnw-dismiss-icon:hover {
  color: #c00;
}
