.common-banner {
  box-shadow: none;
}

.common-banner-top-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 11px 15px;
}

.common-banner-content-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.common-banner-icon-wrapper {
  padding-right: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: inherit;
}

.common-banner-icon {
  font-size: 16px;
}

.common-banner-messages-list {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}

.common-banner-message-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
  line-height: 24px;
}

.common-banner-message-item:last-child {
  margin-bottom: 0;
}

.common-banner-messages-list-item::before {
  content: "•";
  margin-right: 4px;
  flex-shrink: 0;
}

/* Per-item button on the right */
.common-banner-per-item-button-wrapper {
  margin-left: 12px;
  flex-shrink: 0;
}

.common-banner-button {
  padding: 3px 10px;
  font-weight: 600;
  border-radius: 4px;
  white-space: nowrap;
  /* padding: 5px 12px; */
}

/* RED */
.common-banner.red {
  background-color: #F7DFE4;
  border: 1px solid #FF7C8B;
}

.common-banner-icon.red {
  color: #a30001;
}

.common-banner-button.red {
  background-color: #FF586B;
  border: 1px solid #FF586B;
  color: #fff;
}

/* BLUE */
.common-banner.blue {
  background-color: #D5E4EB;
  border: 1px solid var(--primary-color);
}

.common-banner-icon-wrapper.blue {
  color: var(--primary-color);
}

.common-banner-icon.blue {
  color: var(--primary-color);
}

.common-banner-button.blue {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: #fff;
}

/* YELLOW */
.common-banner.yellow {
  background-color: #FDF4E1;
  border: 1px solid #ede0c3;
}

.common-banner-button.yellow {
  background-color: #FEAA00;
  border: 1px solid #FEAA00;
  color: #fff;
}

.common-banner-icon.yellow {
  color: #FEAA00;
}
