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

.close {
  color: #000;
  cursor: pointer;
  float: right;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1;
  opacity: 0.5;
  text-shadow: 0 1px 0 #fff;
}
.close:hover {
  color: #000;
  text-decoration: none;
}
.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
  opacity: 0.75;
}

.notification {
  color: #2b2b2b;
  font-family: "Libre Franklin", sans-serif;
  align-items: center;
  background: #ffffff;
  border-radius: 0.25rem;
  border: 0.125rem solid #000000;
  bottom: 20px;
  box-shadow: 0 0.875rem 1.75rem rgba(0, 0, 0, 0.25), 0 0.625rem 0.625rem rgba(0, 0, 0, 0.22);
  display: flex;
  flex-direction: row;
  height: 11rem;
  padding: 1.5rem;
  position: fixed;
  right: 20px;
  width: 32rem;
  max-width: calc(100% - 40px);
  z-index: 1030;
  flex-direction: column;
  height: auto;
  padding: 40px;
  cursor: pointer;
}
@media (max-width: 576px) {
  .notification {
    width: 100%;
  }
}
.notification .close {
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.notification-col {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-around;
  text-align: center;
}
@media (max-width: 576px) {
  .notification-col {
    margin-top: 1rem;
  }
}
.notification__content {
  margin: 1.3rem 0;
  font-size: 13.2px;
  text-align: left;
}
.notification__title {
  font-family: "More Gothic Bold", Impact, sans-serif !important;
  font-size: 36px;
  line-height: 0.85;
}
@media (max-width: 576px) {
  .notification__title {
    margin-bottom: 0.5rem;
  }
}
.notification__date {
  color: #808080;
  font-size: 9px;
}
.notification__action {
  height: 3rem;
  width: 11.25rem;
  font-size: 1.25rem;
  padding: 0.5rem 1rem;
  border-radius: 0.3rem;
  border: none;
  padding: 0.5rem 1rem;
  font-weight: bold;
  color: #ffffff;
  background: #2dcbad;
  cursor: pointer;
  transition: background-color 0.2s;
}
.notification__action:hover {
  background-color: #52d9bf;
  transition: background-color 0.2s;
}

.flex-row {
  display: flex;
  flex-direction: row;
}