@charset "UTF-8";
.tcnj-notification-bar {
  background-color: #dfecdd;
  color: #000;
  padding: 1rem 0;
  text-align: center;
  position: relative;
  width: 100%;
  z-index: 1000;
  transition: opacity 0.3s ease-in-out, height 0.3s ease-in-out, padding 0.3s ease-in-out;
  opacity: 1;
  height: auto;
}
.tcnj-notification-bar.bar-closed {
  opacity: 0;
  height: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
  overflow: hidden;
}
.tcnj-notification-bar .notification-content {
  max-width: var(--wp--style--global--content-size);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-right: var(--wp--style--root--padding-right);
  padding-left: var(--wp--style--root--padding-left);
  font-family: "Open Sans", sans-serif;
  color: #000;
  font-size: 18px;
  line-height: 17px;
}
.tcnj-notification-bar .notification-content p {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  color: #000;
  font-size: 18px;
  max-width: 70%;
  text-align: left;
  line-height: 17px;
}
.tcnj-notification-bar .notification-content a {
  margin: 0;
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  line-height: 35px;
}
.tcnj-notification-bar .notification-button {
  display: inline-block;
  padding: 0 1rem;
  background-color: #293f6f;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  margin-left: 1rem;
  transition: background-color 0.2s ease;
}
.tcnj-notification-bar .notification-button:hover {
  background-color: #1a2a4d;
  color: #fff;
}
.tcnj-notification-bar .close-button {
  position: absolute;
  right: 1rem;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #000;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  transition: background-color 0.2s ease;
  top: 50%;
  transform: translateY(-50%);
}
.tcnj-notification-bar .close-button:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.tcnj-notification-bar .close-button::before {
  content: "×";
}

@media (max-width: 768px) {
  .tcnj-notification-bar .notification-content {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 35px;
    font-size: 16px;
  }
  .tcnj-notification-bar .notification-content p {
    font-size: 16px;
    max-width: initial;
    text-align: center;
  }
  .tcnj-notification-bar .notification-button {
    margin: 0.5rem 0 0;
  }
  .tcnj-notification-bar .close-button {
    top: 1rem;
    right: 10px;
    transform: none;
  }
}/*# sourceMappingURL=notification-bar.css.map */