.gv__toast-notification {
  width: 100%;
  width: -moz-available;          /* WebKit-based browsers will ignore this. */
  width: -webkit-fill-available;  /* Mozilla-based browsers will ignore this. */
  width: fill-available;
  font-size: 1rem;
  background-color: #ffce00;
  min-height: 64px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px -6px 6px -6px;
  position: fixed;
  bottom: 0;
  z-index: 9;
  visibility: visible;
}

.gv__toast-notification.is-hidden {
  visibility: hidden;
}

.gv__toast-notification__container {
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gv__toast-notification__content {
  color: #213245;
  display: flex;
  align-items: center;
  gap: 12px;
}

.gv__toast-notification__content p {
  margin: 0;
}

.gv__toast-notification__content a {
  color: currentColor;
}

.gv__toast-notification__close-btn {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  height: 24px;
  width: 24px;
  cursor: pointer;
}
