.c-alert {
  position: relative;
  z-index: 101;
}
.c-alert--red {
  background-color: #D62727;
}
.c-alert--ocean {
  background-color: #09B5CA;
}
.c-alert--tan {
  background-color: #EDE9E4;
}
.c-alert__inner {
  display: flex;
  padding-top: 20px;
  padding-top: 2rem;
  padding-bottom: 20px;
  padding-bottom: 2rem;
  padding-right: 50px;
  padding-right: 5rem;
  align-items: flex-start;
  gap: 12px;
  gap: 1.2rem;
}
@media all and (min-width: 1280px) {
  .c-alert__inner {
    padding-right: 4rem;
  }
}
.c-alert__icon {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  color: #fff;
}
.c-alert__icon .e-icon {
  display: block;
  width: 24px;
  width: 2.4rem;
  height: 24px;
  height: 2.4rem;
  fill: #fff;
}
.c-alert--tan .c-alert__icon {
  color: #D62727;
}
.c-alert--tan .c-alert__icon .e-icon {
  fill: #D62727;
}
.c-alert__main {
  display: flex;
  min-width: 0;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 12px;
  gap: 1.2rem;
}
@media all and (min-width: 768px) {
  .c-alert__main {
    flex-direction: row;
    align-items: center;
    gap: 2.4rem;
  }
}
@media all and (min-width: 1280px) {
  .c-alert__main {
    gap: 8rem;
  }
}
.c-alert__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 8px;
  gap: 0.8rem;
}
.c-alert__title {
  margin: 0;
  font-family: "Lato", Gotham, Arial, sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.333;
  color: #fff;
}
.c-alert--tan .c-alert__title {
  color: #000;
}
.c-alert__description {
  margin: 0;
  font-family: "Lato", Gotham, Arial, sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.28;
  color: #fff;
}
.c-alert--tan .c-alert__description {
  color: #000;
}
.c-alert__actions {
  flex-shrink: 0;
}
.c-alert__link {
  display: inline-flex;
  padding: 4px 8px;
  padding: 0.4rem 0.8rem;
  align-items: center;
  font-family: "Lato", Gotham, Arial, sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.14;
  white-space: nowrap;
  color: #D62727;
  text-decoration: none;
  background-color: #fff;
  border-radius: 10rem;
  transition: opacity 0.3s ease;
}
.c-alert--ocean .c-alert__link {
  color: #09B5CA;
}
.c-alert--tan .c-alert__link {
  color: #D62727;
}
.c-alert__link:hover,
.c-alert__link:focus {
  opacity: 0.8;
  text-decoration: none;
}
.c-alert__link:focus {
  outline: 2px solid #fff;
  outline: 0.2rem solid #fff;
  outline-offset: 2px;
  outline-offset: 0.2rem;
}
.c-alert__button {
  display: flex;
  justify-content: center;
  flex-shrink: 0;
  border: none;
  background: transparent none;
  padding: 0;
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
  position: absolute;
  top: 20px;
  top: 2rem;
  right: 20px;
  right: 2rem;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.c-alert__button:hover,
.c-alert__button:focus {
  opacity: 0.8;
}
.c-alert__button:focus {
  outline: 2px solid #fff;
  outline: 0.2rem solid #fff;
  outline-offset: 1px;
  outline-offset: 0.1rem;
}
.c-alert__button .e-icon {
  display: block;
  width: 10px;
  width: 1rem;
  height: 10px;
  height: 1rem;
  fill: #fff;
}
.c-alert--tan .c-alert__button .e-icon {
  fill: #000;
}
