@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Pacifico&family=Work+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
html,body{
  font-family: 'Work Sans', sans-serif !important;
}
#otpCard{
  display: none;
}
.leftpane {
  min-width: 60px;
  width: 60px;
  transition: width 0.3s ease;
  position: absolute;
  padding-top: 15px;
  left: 0;
  top: 66px;
  z-index: 1;
  height: 100vh;
  overflow: hidden;
  background-color: #fff;
}

.leftpane:hover {
  width: 250px;
  transition: width 0.3s ease;
}
.menu-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  white-space: nowrap; /* Prevent text wrapping */
  overflow: hidden;
}

.menu-item img{
  height: 55px;
  transition: height 0.3s ease;
}

.leftpane:hover .menu-item img{
  height: 200px;
  transition: height 0.3s ease;
}

.menu-item a span {
  display: inline-block;
  margin-left: 10px; /* Adjust as needed */
  opacity: 1; /* Initially visible */
  transition: opacity 0.3s ease; /* Add transition effect */
}

.leftpane:hover .menu-item a span {
  opacity: 1; /* Make text visible on hover */
}
.menu-item a{
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 300;
}
.menu-item a span{
  opacity: 0
}
main{
  max-width: calc(100vw - 70px);
}
.main_card{
  -webkit-animation: fade-in-bottom 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  animation: fade-in-bottom 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

@-webkit-keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

.userDropDown{
  left: auto !important;
  right: 0 !important;
}
.notificationsDropdown{
  right: 70px !important;
  left: auto !important;
  width: 350px;
}
.dropdown-toggle::after {
  display: none;
}
.dropdown-toggle{
  width: 40px;
  height: 40px;
}
