/*- Notification-bar-*/
.notification-bar {
  background: #0480B9;
  min-height: 65px;
  display: none;
  align-items: center;
  justify-content: flex-start;
}
.notification-bar .bar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  position: relative;
  padding-right: 60px;
  padding: 10px 0px;
  flex-wrap: wrap;
}
.notification-bar .bar-inner p {
  color: #FFF;
  font-family: Inter;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0;
}
.notification-bar .bar-inner .explore-btn {
  color: #FFF;
  text-align: center;
  font-family: Inter;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  line-height: normal;
  height: 30px !important;
  width: 100px !important;
  padding: 5px !important;
  border-radius: 5px;
  background: rgba(53, 183, 243, 0.5);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  border: none;
  outline: none;
}
.notification-bar .bar-inner .close-notification {
  position: absolute;
  bottom: 20px;
  right: 2px;
  cursor: pointer;
}
.has-notification-bar .notification-bar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 111111;
    width: 100%;
}
.dash-menu-area{
    transition: 0.3s;
    top: 0;
}
.has-notification-bar .dash-slide-menu {
  top: 137px;
}
.has-notification-bar .dash-menu-area {
  top: 65px;
}
.has-notification-bar .dash-mid-aera{
    /*padding-top: 180px;*/
}


.notification-sticky {
    position: fixed;
    z-index: 999;
    opacity:1;
    width: 100%;
}

#top-popup {
    transition: all 0.3s ease;
}

@media only screen and (max-width: 768px) {
  .notification-bar .bar-inner p {
    font-size: 14px;
  }
}

/* ===== Sticky Danger Notification Bar ===== */
.danger-notify-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #c62828; /* danger red */
    color: #fff;
    z-index: 111112;
    display: block;
}

.danger-notify-container {
    max-width: 1200px;
    margin: auto;
    padding: 17px 16px;
}

.danger-notify-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.danger-notify-text {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
}

.danger-notify-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Setup Button */
.danger-notify-btn {
    background: #fff;
    color: #c62828;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.danger-notify-btn:hover {
    background: #fbe9e7;
}

/* Close Icon */
.danger-notify-close {
    width: 14px;
    height: 14px;
    cursor: pointer;
    opacity: 0.9;
}

.danger-notify-close:hover {
    opacity: 1;
}

/* Spacer */
.danger-notify-spacer {
    height: 65px;
}

.has-danger-notification .dash-menu-area {
    top: 65px;
}

.has-danger-notification .dash-slide-menu {
    top: 137px;
}


/* Mobile */
@media (max-width: 768px) {
    .danger-notify-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

