#opinion-modal-bg {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,30,0.32);
  z-index: 2147483647;
  display: none;
  transition: background 0.2s;
}
#opinion-modal-bg-en {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,30,0.32);
  z-index: 2147483647;
  display: none;
  transition: background 0.2s;
}
#opinion-modal {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%) translateX(-110%);
  background: #fff;
  color: #181c22;
  min-width: 260px;
  max-width: 92vw;
  width: 290px;
  border-radius: 0 14px 14px 0;
  box-shadow: 2px 8px 24px 0 rgba(0,0,0,0.13);
  padding: 18px 14px 14px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transition: transform 0.22s cubic-bezier(.4,0,.2,1), opacity 0.22s;
  max-height: 92vh;
  overflow-y: auto;
  overflow-x: hidden;
}
#opinion-modal-en {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%) translateX(-110%);
  background: #fff;
  color: #181c22;
  min-width: 260px;
  max-width: 92vw;
  width: 290px;
  border-radius: 0 14px 14px 0;
  box-shadow: 2px 8px 24px 0 rgba(0,0,0,0.13);
  padding: 18px 14px 14px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transition: transform 0.22s cubic-bezier(.4,0,.2,1), opacity 0.22s;
  max-height: 92vh;
  overflow-y: auto;
  overflow-x: hidden;
}
#opinion-modal.show {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
}
#opinion-modal-en.show {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
}
#opinion-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #888;
  cursor: pointer;
}
#opinion-modal-close-en {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #888;
  cursor: pointer;
}
#opinion-modal img {
  width: 92%;
  height: auto;
  max-height: 90px;
  object-fit: cover;
  margin-bottom: 12px;
  border-radius: 8px;
  max-width: 92%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
#opinion-modal-en img {
  width: 92%;
  height: auto;
  max-height: 90px;
  object-fit: cover;
  margin-bottom: 12px;
  border-radius: 8px;
  max-width: 92%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
#opinion-modal label {
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
  color: #0A5C85;
}
#opinion-modal-en label {
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
  color: #0A5C85;
}
#opinion-modal input, #opinion-modal textarea {
  width: 92%;
  max-width: 92%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 14px;
  padding: 8px 10px;
  border: 1px solid #b3c6d9;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  background: #f4f7fa;
  color: #181c22;
  resize: none;
}
#opinion-modal-en input, #opinion-modal-en textarea {
  width: 92%;
  max-width: 92%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 14px;
  padding: 8px 10px;
  border: 1px solid #b3c6d9;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  background: #f4f7fa;
  color: #181c22;
  resize: none;
}
#opinion-modal textarea {
  min-height: 70px;
  max-height: 180px;
}
#opinion-modal-en textarea {
  min-height: 70px;
  max-height: 180px;
}
#opinion-modal button[type="submit"] {
  background: #0A5C85;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 0;
  width: 92%;
  max-width: 92%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.08rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s;
}
#opinion-modal-en button[type="submit"] {
  background: #0A5C85;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 0;
  width: 92%;
  max-width: 92%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.08rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s;
}
#opinion-modal button[type="submit"]:hover {
  background: #123A55;
}
#opinion-modal-en button[type="submit"]:hover {
  background: #123A55;
}
@media (max-width: 600px) {
  #opinion-modal {
    min-width: 0;
    width: 98vw;
    max-width: 98vw;
    padding: 10px 2vw 10px 2vw;
    max-height: 98vh;
    overflow-x: hidden;
  }
  #opinion-modal img {
    max-height: 60px;
  }
  #opinion-modal-en {
    min-width: 0;
    width: 98vw;
    max-width: 98vw;
    padding: 10px 2vw 10px 2vw;
    max-height: 98vh;
    overflow-x: hidden;
  }
  #opinion-modal-en img {
    max-height: 60px;
  }
}
[data-theme="dark"] #opinion-modal {
  background: #181c22;
  color: #fff;
}
[data-theme="dark"] #opinion-modal-en {
  background: #181c22;
  color: #fff;
}
[data-theme="dark"] #opinion-modal label {
  color: #0ADFF0;
}
[data-theme="dark"] #opinion-modal-en label {
  color: #0ADFF0;
}
[data-theme="dark"] #opinion-modal input, [data-theme="dark"] #opinion-modal textarea {
  background: #23272f;
  color: #fff;
  border: 1px solid #0A5C85;
}
[data-theme="dark"] #opinion-modal-en input, [data-theme="dark"] #opinion-modal-en textarea {
  background: #23272f;
  color: #fff;
  border: 1px solid #0A5C85;
}
[data-theme="dark"] #opinion-modal button[type="submit"] {
  background: #0ADFF0;
  color: #181c22;
}
[data-theme="dark"] #opinion-modal-en button[type="submit"] {
  background: #0ADFF0;
  color: #181c22;
}
[data-theme="dark"] #opinion-modal button[type="submit"]:hover {
  background: #0A5C85;
  color: #fff;
}
[data-theme="dark"] #opinion-modal-en button[type="submit"]:hover {
  background: #0A5C85;
  color: #fff;
}
