.c-bottom-message {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 9999;
  display: flex;
  gap: 1rem;
  align-items: center;
  min-width: 300px;
  max-width: 400px;
  padding: 1rem;
  pointer-events: none;
  background-color: #fff;
  border-left: 4px solid #2d3c5a;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(45, 60, 90, 0.15);
  transform: translateX(-120%);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.c-bottom-message.is-active {
  pointer-events: auto;
  transform: translateX(0);
}
.c-bottom-message__body {
  display: flex;
  flex-grow: 1;
  gap: 1rem;
  align-items: center;
  color: inherit;
  text-decoration: none;
}
.c-bottom-message__body:hover {
  color: inherit;
  text-decoration: none;
}
.c-bottom-message__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.c-bottom-message__icon svg {
  width: 2rem;
  height: 2rem;
  stroke: #2d3c5a;
}
.c-bottom-message__content {
  flex-grow: 1;
}
.c-bottom-message__title {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
  font-weight: bold;
  color: #2d3c5a;
}
.c-bottom-message__text {
  font-size: 0.8rem;
  line-height: 1.5;
  color: #2d3c5a;
}
.c-bottom-message__text--guide {
  display: block;
  margin-top: 0.25rem;
  font-weight: 600;
  color: #1d4190;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}
.c-bottom-message__close {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  background-color: #475569;
  border-radius: 50%;
}
.c-bottom-message__close:hover {
  opacity: 1;
}
.c-bottom-message__close svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: #fff;
}
@media screen and (max-width: 767px) {
  .c-bottom-message {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    min-width: 0;
    max-width: none;
    padding: 1rem;
  }
}/*# sourceMappingURL=bottom-message.css.map */