header {
  display: flex;
  background: #272727;
  justify-content: space-between;
  align-items: center;
  height: 63px;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0.5rem;
  z-index: 10;
  width: 100%;
}
header #epg {
  display: flex;
  align-items: center;
  justify-content: center;
}
header .logo-icon {
  width: 2rem;
  margin-right: 1rem;
}
header > div {
  height: 100%;
}
header .left {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 1rem;
}
header .left .text-h1 {
  font-size: 18px;
  color: #ffffff;
  padding: 1rem;
}
header .left .text-h2 {
  color: #777;
  border-left: 1px solid #777;
  padding: 0.5rem 1rem;
  font-size: 14px;
}
@media (max-width: 500px) {
  header .left .text-h2 {
    display: none;
  }
}
header .right {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
  gap: 0.5rem;
}
header .notification-center {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.25rem;
}
header .notification-center:focus-within .notification-panel,
header .notification-center:hover .notification-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
header .notification-button {
  width: 42px;
  height: 42px;
  border: 1px solid #3d434a;
  background-color: #30353b;
  color: white;
  position: relative;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
header .notification-button .material-icons {
  font-size: 20px;
}
header .notification-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  padding: 0 0.3rem;
  border-radius: 999px;
  background-color: #f97316;
  color: white;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
header .notification-panel {
  width: 320px;
  max-width: calc(100vw - 32px);
  position: absolute;
  top: 52px;
  right: 0;
  background-color: white;
  border: 1px solid #d7e0ea;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;
}
header .notification-panel .notification-panel-header {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid #e8edf3;
}
header .notification-panel .notification-panel-title {
  color: #112033;
  font-size: 14px;
  font-weight: 700;
}
header .notification-panel .notification-panel-subtitle {
  color: #6b7485;
  font-size: 12px;
}
header .notification-list {
  display: flex;
  flex-direction: column;
}
header .notification-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid #eef2f6;
}
header .notification-item:last-child {
  border-bottom: none;
}
header .notification-tag {
  height: fit-content;
  padding: 0.3rem 0.55rem;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
header .notification-tag.is-success {
  background-color: #e9fbf1;
  color: #157347;
}
header .notification-tag.is-warning {
  background-color: #fff4e5;
  color: #b45f06;
}
header .notification-tag.is-info {
  background-color: #e8f0ff;
  color: #2d4f8c;
}
header .notification-copy {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
header .notification-copy .notification-title {
  color: #112033;
  font-size: 13px;
  font-weight: 700;
}
header .notification-copy .notification-text {
  color: #6b7485;
  font-size: 12px;
  line-height: 1.45;
}
header .dropdown {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 1rem;
}
header .dropdown .dropdown-button {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .dropdown .dropdown-menu {
  height: 0;
  width: 18rem;
  overflow: hidden;
  position: absolute;
  transition: 0.4s;
  right: 1rem;
  top: 55px;
  box-shadow: 1px -2px 10px #000;
}
header .dropdown:hover {
  cursor: pointer;
}
header .dropdown:hover .dropdown-menu {
  height: 18rem;
  background-color: #272727;
  border-radius: 4px;
}
header .dropdown:hover .dropdown-menu .dropdown-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 1px solid #343434;
  padding: 0.5rem;
  height: fit-content;
}
header .dropdown:hover .dropdown-menu .dropdown-header div {
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: fit-content;
}
header .dropdown:hover .dropdown-menu .dropdown-header div .text-p {
  color: white;
  font-size: 12px;
}
header .dropdown:hover .dropdown-menu .dropdown-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  border-bottom: 1px solid #343434;
  padding: 1rem;
  padding-bottom: 2rem;
  flex: 1;
}
header .dropdown:hover .dropdown-menu a {
  padding-bottom: 1rem;
  text-decoration: none;
  color: #ccc;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  font-size: 13px;
  transition: 0.4s;
}
header .dropdown:hover .dropdown-menu a span {
  padding-right: 1rem;
  color: white;
}
header .dropdown:hover .dropdown-menu a:hover {
  color: #ffffff;
}
header .dropdown:hover .dropdown-menu .dropdown-footer {
  padding: 1rem;
}

@media (max-width: 640px) {
  header .notification-panel {
    right: -44px;
  }
}

/*# sourceMappingURL=home_header.css.map */
