/* General Styling */
.notification-module {
  padding: .4rem;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background: #5d38df;
background-image: linear-gradient(90deg, #5d38df 0, #e40078 51%, #5d38df);
  background-size: 300% 100%;
  animation: gradientShift 6s ease infinite;
}
.notification-module .notification-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap:1.5rem;
  margin: 0 auto;
}
.notification-module .notification-bar .info-section {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
 {# flex: 1 1 20%; #}
  gap:3rem;
}
.plan25-notification-module .notification-bar .location-text {
  color: #fff;
  font-weight: 800;
  font-size: 1.125rem;
  line-height: 1.5;
  margin-bottom:0;
  }
.notification-module .notification-bar .event-info {
  {#flex: 1 1 80%; #}
  display: flex;
  justify-content: start;
  align-items: center;
  gap:1rem;
}
.notification-module .notification-bar .event-heading .h2 {
  font-size: 1.25rem;
  margin: 0;
  font-weight: 600;
  color: #fff;
  line-height: 27px;
}
.notification-module .notification-bar .date-info {color: #fff;}
.notification-module .notification-bar .live_webinar {
  background: #f6d9e8;
  border-radius: 4px;
  color: var(--dark);
  line-height: 24px;
  padding: 4px 8px;
}
.notification-module .notification-bar .event-heading p {
  font-size: 1rem;
  line-height: 1;
  color: #fff;
  margin-bottom:.5rem;
}
.notification-module .notification-bar .cta-container {
  display: flex;
  justify-content: flex-end;
}
.notification-module .notification-bar .button {
  display: inline-block;
  font-size: 1.125rem;
  text-align: center;
  transition: 0.5s;
  color: #5d38df;
  padding: 5px 20px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  background:#fff;
  text-decoration: none;
  font-weight:700;
  height: inherit;
  line-height: 1.5;
}
.notification-module .notification-bar .button:hover {
  background:#000;
  color: #fff;
}
@media (max-width: 961px) {
.notification-module .notification-bar {
  flex-direction: column;
  text-align: center;
  gap: .5rem;
  }
 .notification-module .notification-bar .info-section {
    flex-direction: column;
    gap: .5rem;
  }
.notification-module .notification-bar .event-info {
    flex-direction: column;
  }
.notification-module .notification-bar .cta-container {
    flex-basis: 100%;
    padding: 10px 0;
    justify-content: center;
  }
}
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}