/* Variables  */
/* Aliases  */
.sr-only {
  position: absolute;
  /* Outside the DOM flow */
  height: 1px;
  width: 1px;
  /* Nearly collapsed */
  padding: 0;
  margin: -1px;
  overflow: hidden;
  border: 0;
  left: -9999px;
  text-indent: -5000px;
  clip: rect(1px, 1px, 1px, 1px);
  /* All other browsers */
}

/* Variables  */
/* Aliases  */
*,
*:before,
*:after {
  box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
code,
em,
img,
small,
strike,
strong,
sub,
sup,
tt,
b,
u,
i,
ol,
ul,
li,
fieldset,
form,
label,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
main,
canvas,
embed,
footer,
header,
nav,
section,
button,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: none;
}

footer,
header,
nav,
section,
main {
  display: block;
}

body {
  line-height: 1.5;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

:host(:focus) {
  outline: none !important;
  border: none !important;
}

:host {
  display: block;
  width: 100%;
}

.notification {
  display: grid;
  border-radius: 4px;
  min-width: 256px;
  max-width: 720px;
  padding: 16px 24px;
  display: grid;
  gap: 16px;
  grid-template-columns: 30px 1fr 30px;
  grid-template-areas: "icon-column content close-column";
  font-family: "museo-sans", arial, sans-serif, sans-serif;
  font-style: normal;
  color: #414651;
}
.notification.hidden {
  display: none;
}
.notification .icon-column {
  grid-area: icon-column;
}
.notification .close-column {
  grid-area: close-column;
  display: flex;
  justify-content: flex-end;
  height: 42px;
}
.notification .close-column .link {
  cursor: pointer;
  height: 24px;
}
.notification .content {
  grid-area: content;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.notification .title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
}
.notification .message {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.notification.red {
  background-color: #fff2f2;
  border: 1px solid #8c0a08;
}
.notification.green {
  background-color: honeydew;
  border: 1px solid #05630a;
}
.notification.yellow {
  background-color: #fff7e3;
  border: 1px solid #cca543;
}
.notification.blue {
  background-color: #cfebff;
  border: 1px solid #01417b;
}