/*- Notification-bar-*/
.notification-bar {
  background: #0480B9;
  min-height: 65px;
  display: flex;
  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;
  }
}