.bc__alert {
  display: flex;
  min-height: 2.75rem;
  padding: 0.5rem 0.75rem;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--color-white);
  border-radius: 0.75rem;
  box-shadow: 0 0 0.125rem 0 rgba(0, 0, 0, 0.03), 0 0.125rem 0.125rem 0 rgba(0, 0, 0, 0.06);
  --alert-top: 1rem;
  position: fixed;
  top: var(--alert-top);
  max-width: 18.75rem;
  z-index: 5;
}
.bc__alert-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.bc__alert-text {
  color: var(--color-black);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.25rem;
  margin: 0;
  padding: 0;
}
.bc__alert--danger .icon-exclamation-danger {
  color: var(--color-red);
}
.bc__alert .icon-close {
  display: none;
}
.bc__alert-close {
  padding: 0.5rem;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
}
.bc__alert.with-close {
  padding-right: 0.75rem;
  max-width: 18.75rem;
}
.bc__alert.with-close .icon-close {
  display: inline-block;
  color: var(--gray-700);
  font-weight: bold;
}
@media screen and (min-width: 601px) {
  .bc__alert {
    --alert-top: 7.1875rem;
    left: auto;
  }
  .bc__alert-text {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .bc__alert.with-close {
    padding-right: 0.75rem;
    max-width: 21.25rem;
  }
}
