#cw {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 96%;
  box-sizing: border-box;
  padding: 20px;
  background: #fff;
  border: 1px solid #dbdbdb;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0,0,0,.1);
  font-size: 14px;
  line-height: 1.6;
  z-index: 2500;
  display: none;
  max-width: 1440px;
}

#ci {
  display: flex;
  gap: 15px;
}

#ct {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: bold;
  line-height: 1.8;
  font-size: 16px;
}

#cb { flex: 1; min-width: 0; }
#ctx {
  color: #6a6a6a;
  display: inline;
  white-space: normal;
  line-height: 1.8;
}

#ctx a { font-weight: bold; color: #000; text-decoration: none; }
#ctx a:hover { text-decoration: underline; }

#cbt {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

#cbt button {
  padding: 10px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 6px;
  border: 1px solid #000;
  min-height: 60px;
  min-width: 150px;
  font-size: 15px;
}

#co { background: #222; color: #fff; }
#co:hover { background: #000; }
#cn { background: #fff; color: #000; }

@media(max-width:768px) {
  #ci { flex-direction: column; }
  #cbt { width: 100%; }
}