#agreementdivid {
  display: none;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 12px;

  position: fixed;
  bottom: 10px;
  left: calc(50% - 70% / 2);
  width: 70%;

  padding: 16px;
  /* border: 1px solid #ccc; */
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.8);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

  /* У jivo-site = 2147483646 */
  z-index: 2147483647;
}

#agreementdivid .agreementdivclass {
  font-size: 16px;
  color: white;
}

#agreementdivid button {
  background-color: var(--primary-color);
  /* color: #fff; */
  border: none;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  text-wrap: nowrap;
  transition: background-color 0.2s ease;
}

#agreementdivid button:hover {
  background-color: var(--primary-hover-color);
}

@media (max-width: 600px) {
  #agreementdivid {
    width: 90%;
    left: calc(50% - 90% / 2);
  }
}
