.coq-container {
  padding: 24px 12px;
  width: 100%;
  max-width: 1020px;
  border-radius: 12px;
  display: flex;
  gap: 12px;
  flex-direction: column;
  margin: 0 auto;
}
.coq-container h3 {
  margin: 0;
  font-size: 22px;
}
@media only screen and (max-width: 450px) {
  .coq-container h3 {
    font-size: 18px;
  }
}
.coq-settings {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 auto 0 0;
}
.coq-setting {
  min-width: 70px;
  font-size: 12px;
}
.coq-text {
  font-size: 16px;
  line-height: 1.5;
}
@media only screen and (max-width: 450px) {
  .coq-text {
    font-size: 12px;
    line-height: 1.2;
  }
}
.coq-footer {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.coq-btn {
  border: none;
  padding: 6px 12px;
  border-radius: 12px;
}
.coq-btn:hover {
  cursor: pointer;
}
.coq-section {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 999999999;
  max-height: 70vh;
  overflow-y: scroll;
}
