#case-translation-notice {
  position: fixed;
  bottom: 0;
  z-index: 9999;
  background-color: white;
  color: black;
  padding: 1em;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.2);
  font-size: 0.95em;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
  pointer-events: none;
}

#case-translation-notice.visible {
  transform: translateY(0%);
  opacity: 1;
  pointer-events: auto;
}

.translation-notice-wrapper {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (min-width: 68.75em){
  .translation-notice-wrapper {
    flex-direction: row;
  }
}

.translation-notice-wrapper .notice-message {
  margin-right: 1em;
}

.translation-notice-wrapper .notice-close {
  margin-top: 1em;
}
