:root {
  --header-height: 60px;
  /* --header-color: linear-gradient(45deg, var(--base-color1) 30%, #eaeaeaaf); */
  --header-color: var(--base-color1);
  --header-content-height: 60px;
  --max-width:1400px;
  --sub-menu-width: 350px;
  --nav-open-width: 300px;
  --nav-close-width: 50px;
  --base-color1: #fafafa9f;
  --base-r-color1: #e7e7e7;
  --h-base-r-color1: #ffffff;
}

.top-menu {
  display: inline-flex;
  position: sticky;
  top: 0;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  height: var(--header-height);
  width: 100%;
  z-index: 20;
  background: rgba(250, 250, 250, 0.0705882353);
  backdrop-filter: saturate(0.5) blur(3px);
  -webkit-backdrop-filter: saturate(0.5) blur(3px);
  /* border-bottom: 1px solid #390a0a; */
  /* background: white; */
}

.top-logo {
  /* background: gainsboro; */
  width: 135px;
  height: 45px;
  background: url("../img/logo/devbard.svg") no-repeat;
  background-size: contain;
  background-position: center;
  /* font-size: 2rem; */
}

.wedding .top-logo {
  background: url("../img/logo/logo.svg") no-repeat;
  background-size: contain;
  background-position: center;
}

.funeral .top-logo {
  background: url("../img/logo/Funeral.svg") no-repeat;
  background-size: contain;
  background-position: center;
}

.fistBrithday .top-logo {
  background: url("../img/logo/FirstBd.svg") no-repeat;
  background-size: contain;
  background-position: center;
}

.top-menu-center {
  display: inline-grid;
  grid-template-columns: repeat(8, 120px);
  /* position: relative; */
  gap: 10px;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.top-right {
  display: inline-flex;
  gap: 10px;
  justify-content: flex-end;
}

.logout-btn {
  color: #161616;
  font-weight: 500;
  font-family: "Material Icons";
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 13px;
  align-self: center;
  cursor: pointer;
}

.lev-dep-container {
  position: relative;
}

.t-mu-lv1 {
  position: relative;
  cursor: pointer;
  text-align: center;
  height: 100%;
  display: flex;
  z-index: 22;
  align-items: center;
}

.t-mu-lv2 {
  position: absolute;
  /* background: var(--header-color); */
  /* backdrop-filter: saturate(0.5) blur(10px); */
  opacity: 0;
  top: 80px;
  /* transform: rotateY(90deg); */
  height: 0;
  /* width: 0%; */
  left: 0;
  display: grid;
  /* grid-template-columns: repeat(8,120px); */
  /* grid-template-columns: 240px 1fr 300px; */
  justify-content: center;
  gap: 5px;
  z-index: -1;
  transition: all 0.45s;
  overflow-x: hidden;
  overflow-y: visible;
  /* transition-delay: 1s; */
}

.lv2-list {
  display: flex;
  align-items: center;
  gap: 5px;
  text-wrap: nowrap;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.697);
  -webkit-backdrop-filter: saturate(0.5) blur(10px);
          backdrop-filter: saturate(0.5) blur(10px);
  border-radius: 4px;
  padding: 5px 10px;
  border: 1px solid black;
  transition: all 0.35s;
}

.lv2-list:hover {
  background: rgba(161, 224, 255, 0.607);
}

.lv2-icon {
  width: 4px;
  min-width: 4px;
  height: 10px;
  border-radius: 2px;
  background: rgba(6, 0, 255, 0.56);
}

.lv2-label {
  color: black;
  /* box-shadow: -2px -2px 1px rgb(247, 247, 247),2px 2px 1px rgba(0, 0, 0, 0.271); */
  cursor: inherit;
}

.lev-dep-container:has(> .t-mu-lv1:hover) .t-mu-lv2,
.t-mu-lv2.hover {
  top: 40px;
  opacity: 1;
  height: auto;
  /* width: 100%; */
  /* transform: rotateY(360deg); */
}

.nav-container {
  position: sticky;
  top: 0;
  align-self: flex-start;
  background: white;
  height: 100vh;
  width: var(--nav-close-width);
  /* border-right: 1px solid gainsboro; */
  display: flex;
  flex-direction: column;
  background: var(--base-color1);
  flex-wrap: nowrap;
  text-wrap: nowrap;
  overflow: hidden;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 0.85s;
}

.nav-item-container {
  display: inline-flex;
  flex-direction: column;
  height: 100%;
}

.nav-container:hover,
.nav-container:has(.burger-icon.active) {
  width: var(--nav-open-width);
}

.nav-top {
  /* background: #c1c1c1; */
  height: 80px;
}

.nav-bottom {
  position: relative;
  bottom: 0;
  color: white;
  height: 50px;
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  gap: 10px;
  /* margin: 5px; */
  box-sizing: border-box;
}

/* .nav-bottom > div{
    flex: 1;
    padding: 10px;
    border: 1px solid gainsboro;
    border-radius: 9px;

} */
.nav-ctl,
.nav-item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  min-width: 35px;
  height: 35px;
  border-radius: 100%;
  /* background: #2e2e2e; */
  margin: 0 5px;
}

.logo-box {
  display: inline-flex;
  width: 100%;
  height: 100%;
}

.logo-box > .lms-logo {
  width: 200px;
  margin: 0;
  color: var(--base-r-color1);
  font-size: 1.8rem;
}

.nav-item-box,
.nav-item-box * {
  cursor: pointer;
}

.nav-1-mu {
  width: 100%;
  transition: all 0.35s;
}

.nav-1-mu:hover {
  color: var(--h-base-r-color1);
}

.nav-icon1 {
  position: relative;
  width: 24px;
  height: 23px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.burger-icon {
  position: relative;
  cursor: pointer;
  pointer-events: fill;
  font-size: 2.3rem !important;
}

.nav-icon1 > span {
  width: 100%;
  height: 1px;
  background: var(--base-r-color1);
  position: relative;
  display: inline-flex;
  flex-direction: column;
  transition: all 0.35s;
  left: 0;
  pointer-events: none;
}

.burger-icon.active .nav-icon1 > span:nth-of-type(1) {
  transform: rotate(45deg);
  top: 5px;
}

.burger-icon.active .nav-icon1 > span:nth-of-type(2) {
  opacity: 0;
  left: -20px;
  /* background: rebeccapurple; */
  transform: rotate(360deg) translateY(-10px);
  /* transition-delay: .15s; */
}

.burger-icon.active .nav-icon1 > span:nth-of-type(3) {
  transform: rotate(-45deg) translateX(0px);
  top: -10px;
}

.alarm-container {
  position: fixed;
  right: 0px;
  top: 70px;
  width: 300px;
  padding: 10px;
  z-index: 2;
}
.alarm-container .alarm-wrap {
  position: relative;
  right: -280px;
  padding: 5px;
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.0705882353);
  background: white;
  -webkit-backdrop-filter: blur(10px) saturate(0.5);
          backdrop-filter: blur(10px) saturate(0.5);
  font-size: 1.5rem;
  border-radius: 10px;
  width: 260px;
  animation: alarm-box 10s cubic-bezier(0.6, -0.28, 0.735, 0.045) 0.65s 1 normal forwards;
}
.alarm-container .alarm-wrap .real-alarm {
  display: inline-flex;
  flex-direction: column;
  width: 100%;
  line-height: normal;
}
.alarm-container .alarm-wrap .real-alarm > .ar-u-n {
  color: #07738d;
  font-weight: bold;
}
.alarm-container .alarm-wrap .real-alarm > .ar-u-c {
  color: rgb(22, 22, 22);
}
.alarm-container .alarm-wrap .real-alarm > .ar-u-c > .money-label {
  color: #ff5500;
  margin-right: 5px;
}
.alarm-container .alarm-wrap .real-alarm > .ar-u-t {
  color: rgb(167, 167, 167);
  align-self: flex-end;
  font-size: 1.3rem;
}

.defalt-btn {
  padding: 0px 20px;
  border: 1px solid #dddddd;
  font-size: 1.5rem;
  color: #303087;
  transition: all 0.35s;
}
.defalt-btn:hover {
  background: #303087;
  color: white;
}

@keyframes alarm-box {
  0% {
    right: -280px;
  }
  10% {
    right: 0px;
  }
  50% {
    right: 0px;
  }
  90% {
    right: 0px;
  }
  100% {
    right: -280px;
  }
}
@media (max-width: 1200px) {
  .top-menu {
    height: auto;
    padding: 20px;
    gap: 10px;
    position: relative;
  }
  .alarm-container {
    top: 150px;
  }
}