.revamp .header .header__wrapper.notification {
  transition: all .35s ease-in-out;
  max-height: 100px;
  min-height: 0;
  overflow: hidden;
}
@media (max-width: 392px) {
  .hidden-392 {
    display: none!important;
  }
}
.revamp .header .header__wrapper.notification.closed {
  max-height: 0;
  pointer-events: none;
}
.revamp .header .header__container.notification-wrapper{
  padding: 16px;
}
.header__container.notification-wrapper .flex-col {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  gap: 4px;
}
.header__container.notification-wrapper .notif-copy {
  color: var(--new-black);
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 126%;
  margin: auto;
  text-align: center;
  text-wrap: pretty;
  text-decoration: none;
  transition: all .35s ease;
  border-bottom: 1px solid rgba(255,255,255,0); 
  margin: 0;
}
.header__container.notification-wrapper .notif-copy:hover {
  border-bottom: 1px solid var(--new-black); 
}
.header__container.notification-wrapper .notif-copy strong{
  font-weight: 700;
}

.header__wrapper.notification {
  background: #F4F4F4;
}
.header__wrapper.notification a.notif-link {
  color: #4F56FA;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  position: relative;
  transition: all .2s;
  white-space: nowrap;
}
.header__wrapper.notification a.notif-link:hover {
  border-bottom: 1px solid #4F56FA;
}
.header__wrapper.notification a.notif-link::after {
  content: "→";
  display: inline-block;
  position: absolute;
  right: -15px;
  transition: all .2s;
}
.header__wrapper.notification a.notif-link:hover::after {
  right: -17px;
}
.notification-wrapper .new-tag {
  color: #4F56FA;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  padding: 0 5px;
  background-color: rgba(79, 86, 250, 0.1);
  border-radius: 4px;
  display: inline-block;
  position: relative;
  top: -2px;
  margin-right: 6px;
}
@media (max-width: 575px) {
  .header__container.notification-wrapper p.notif-copy {
    font-size: 12px;
    letter-spacing: -.01em;
  }
  .header__container.notification-wrapper .notif-copy {
    font-size: 12px;
    letter-spacing: -.01em;
  }
  .notification-wrapper .new-tag {
    top: 0px;
  }