.alert {
  padding: 50px 60px;
  background-color: #F2EFE8;
}
@media (max-width: 767.98px) {
  .alert {
    padding: 30px;
  }
}
.alert-wrapper {
  position: relative;
  z-index: 1;
  display: none;
}
.alert-container {
  display: grid;
  grid-template-columns: 55px 1fr;
  grid-gap: 30px;
  padding-right: 30px;
  align-items: center;
}
@media (max-width: 767.98px) {
  .alert-container {
    padding-right: 45px;
    grid-template-columns: 1fr;
  }
}
.alert-icon {
  font-size: 45px;
}
.alert-close {
  line-height: normal;
  display: flex;
  position: absolute;
  right: 60px;
  top: 40px;
  translate: 0 -50%;
  font-size: 18px;
  background: none;
  border: none;
  color: #1B44A0;
  position: absolute;
  right: 60px;
  top: 50%;
  translate: 0 -50%;
}
.alert-close:after {
  width: 0;
  height: 0;
  position: absolute;
  content: "";
  background-color: #1B44A0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 100%;
  transition: 0.25s ease;
}
@media (hover: hover) {
  .alert-close:hover {
    color: #fff;
  }
  .alert-close:hover:after {
    width: 50px;
    height: 50px;
  }
}
.is-tabbing .alert-close:focus {
  color: #fff;
}
.is-tabbing .alert-close:focus:after {
  width: 50px;
  height: 50px;
  border: 1px solid #1B44A0;
}
@media (max-width: 767.98px) {
  .alert-close {
    right: 30px;
  }
}
.alert-title {
  font-family: "CircularPro-Medium", sans-serif;
  font-size: 14px;
  letter-spacing: 0.05px;
  line-height: 18px;
}
.alert-body :last-child {
  margin-bottom: 0;
}
.alert--warning {
  background-color: #F2EFE8 !important;
}
.alert--warning .alert-icon:before {
  content: "\f107";
  font-family: "icons" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.alert--emergency {
  background-color: #D34319;
  color: #fff;
}
.alert--emergency a:not(.btn) {
  color: #fff;
}
.alert--emergency .alert-icon:before {
  content: "\f103";
  font-family: "icons" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.alert--emergency ~ .alert-close {
  color: #fff;
}
.alert--emergency ~ .alert-close:before {
  color: #fff;
}