/* Google Fonts Import Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  /*user-select: none;*/
}

html,body{
  height:100%;
  background-color: rgb(219, 224, 224);
}

:root{
  --blue_color:rgb(17, 162, 247);
}

.contentbody{
  position: relative;
  display: flex;
  width: calc(100% - 260px);
  left: 260px;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;	
}

.user_phono{
  width: 50px;
  height: 50px;
  border-radius: 100%;
  border: 1px solid #d9d9df;
  margin-left: 10px;
  margin-top: 10px;
}

.sidebar{
  position: fixed;
  height: 100%;
  width: 260px;
  background: #ffffff;
  z-index: 100;
  transition: all 0.5s ease;
}

.sidebar.close{
  width: 78px;
}

.sidebar .logo-details{
  height: 60px;
  width: 100%;
  display: flex;
  align-items: center;
}
.sidebar .logo-details i{
  color: rgb(0, 0, 0);
  height: 50px;
  min-width: 78px;
  text-align: center;
  line-height: 50px;
}

.sidebar .user_name_text{
  font-size: 14px;
  color: rgb(70, 70, 70);
  font-weight: bold;
  font-weight: 400;
  transition: 0.3s ease;
  transition-delay: 0.1s;
}
.sidebar.close .user_name_text{
  transition-delay: 0s;
  opacity: 0;
  pointer-events: none;
}

.sidebar .user_type_text{
  font-size: 12px;
  color: rgb(105, 105, 105);
  font-weight: 400;
  transition: 0.3s ease;
  transition-delay: 0.1s;
}
.sidebar.close .user_type_text{
  transition-delay: 0s;
  opacity: 0;
  pointer-events: none;
}

.sidebar .nav-links{
  height: 100%;
  padding: 30px 0 150px 0;
  overflow: auto;
}
.sidebar.close .nav-links{
  overflow: visible;
}
.sidebar .nav-links::-webkit-scrollbar{
  display: none;
}
.sidebar .nav-links li{
  position: relative;
  list-style: none;
  transition: all 0.4s ease;
}
.sidebar .nav-links li:hover{
  background: #e6e6e6;
}
.sidebar .nav-links li .iocn-link{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sidebar.close .nav-links li .iocn-link{
  display: block
}

/*color icons*/
.sidebar .nav-links li i{
  height: 50px;
  min-width: 78px;
  text-align: center;
  line-height: 50px;
  color: rgb(170, 165, 165);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.sidebar .nav-links li.showMenu i.arrow{
  transform: rotate(-180deg);
}
.sidebar.close .nav-links i.arrow{
  display: none;
}
.sidebar .nav-links li a{
  display: flex;
  align-items: center;
  text-decoration: none;
}
/*font naras*/
.sidebar .nav-links li a .link_name{
  font-size: 13px;
  font-weight: 400;
  color: rgb(95, 95, 95);
  transition: all 0.4s ease;
}
.sidebar.close .nav-links li a .link_name{
  opacity: 0;
  pointer-events: none;
}
.sidebar .nav-links li .sub-menu{
  padding: 6px 6px 14px 80px;
  margin-top: -10px;
  background: #e6e6e6;
  display: none;
}
.sidebar .nav-links li.showMenu .sub-menu{
  display: block;
}
.sidebar .nav-links li .sub-menu a{
  color: rgb(0, 0, 0);
  font-size: 12px;
  font-weight: 400;
  padding: 8px 0;
  padding-left: 5px;
  white-space: nowrap;
  opacity: 0.6;
  transition: all 0.3s ease;
}
.sidebar .nav-links li .sub-menu a:hover{
  opacity: 1;
}
.sidebar.close .nav-links li .sub-menu{
  position: absolute;
  left: 100%;
  top: -10px;
  margin-top: 0;
  padding: 10px 20px;
  border-radius: 0 6px 6px 0;
  opacity: 0;
  display: block;
  pointer-events: none;
  transition: 0s;
}

.sidebar.close .nav-links li:hover .sub-menu{
  top: 0;
  opacity: 1;
  pointer-events: auto;
  transition: all 0.4s ease;
}
.sidebar .nav-links li .sub-menu .link_name{
  display: none;
}
.sidebar.close .nav-links li .sub-menu .link_name{
  font-size: 18px;
  opacity: 1;
  display: block;
}
.sidebar .nav-links li .sub-menu.blank{
  opacity: 1;
  pointer-events: auto;
  padding: 3px 20px 6px 16px;
  opacity: 0;
  pointer-events: none;
}
.sidebar .nav-links li:hover .sub-menu.blank{
  top: 50%;
  transform: translateY(-50%);
}
.sidebar .profile-details{
  position: fixed;
  bottom: 0;
  width: 260px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #dfb429;
  padding: 12px 0;
  transition: all 0.5s ease;
}
.sidebar.close .profile-details{
  background: none;
}
.sidebar.close .profile-details{
  width: 78px;
}
.sidebar .profile-details .profile-content{
  display: flex;
  align-items: center;
}
.sidebar .profile-details img{
  height: 52px;
  width: 52px;
  object-fit: cover;
  border-radius: 16px;
  margin: 0 14px 0 12px;
  background: #cfe015;
  transition: all 0.5s ease;
}

.home-section{
  position: relative;
  background: #E4E9F7;
  height: 100vh;
  left: 260px;
  width: calc(100% - 260px);
  transition: all 0.5s ease;
}
.sidebar.close ~ .home-section{
  left: 78px;
  width: calc(100% - 78px);
}
.home-section .home-content{
  height: 60px;
  display: flex;
  align-items: center;
}

.bx-pin{
  align-content: center;
  display: flex;
  color: rgb(51, 51, 51);
  font-size: 25px;
  cursor: pointer;
}

.user_name_text{
  padding-left: 10px;
  color: rgb(80, 80, 80);
  font-size: 15px;
  font-weight: 400;
}

.user_type_text{
  padding-left: 10px;
  color: rgb(146, 146, 146);
  font-size: 12px;
  font-weight: 400;
}

.splitter{
  margin-top: 8px;
  margin-bottom: 0px;
  border: 0;
  border-top: 1px solid #e7e7e7;
}

.home-section .home-content .text{
  font-size: 12px;
  font-weight: 400;
}

@media (max-width: 400px) {
  .sidebar.close .nav-links li .sub-menu{
    display: none;
  }
  .sidebar{
    width: 78px;
  }
  .sidebar.close{
    width: 0;
  }
  .home-section{
    left: 78px;
    width: calc(100% - 78px);
    z-index: 100;
  }
  .sidebar.close ~ .home-section{
    width: 100%;
    left: 0;
  }
}

.headnav{
  position:relative;
  background-color: var(--blue_color);
  height: 40px;
  padding: 2px;
}

.headnav .routetooltip{
  left: 15px;
  color: white;
  font-weight: bold;
  font-size: 18;
  top: 6px;
  float: left;
  position: relative;
  width: 33%;
}

.headnav .app_name{
  color: white;
  font-weight: bold;
  font-size: 18;
  text-align: center;
  top: 6px;
  float: left;
  position: relative;
  width: 33%;
}

.headnav .send_message_icon{
  left: calc(100%)-10px;
  width: 33%;
  color: white;
  font-weight: bold;
  font-size: 18;
  top: 8px;
  float: left;
  text-align: right;
  position: relative;
}

.toolbox{
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  width: 100%;
  height: 35px;
  border: none;
  background: var(--blue_color);
  font-weight: 400;
  font-size: 18px;
  padding: 0 10px 0 10px;
}

.UserInfoContent{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.userinf{
  display: flex;
  flex-direction: column;
  gap: 3px;
  transition: all 0.5s ease;
}

.pinAndUserInf, .pinAndUserInfContext, .pinContent{
  display: flex;
  transition: all 0.5s ease;
}
.pinAndUserInfContext{
  width: 100%;
  justify-content: space-between;
  transition: all 0.5s ease;
  height: 34px;
}

.pinContent{
  width: 50px;
  justify-content: center;
  -webkit-transform: rotate(270deg); /* Chrome, Safari, Opera */
  transition: all 0.5s ease;
}

.sidebar.close .userinf{
  overflow: hidden;
  white-space: nowrap;
  transition: all 0.5s ease;
}

.sidebar.close .pinContent{
  width: 30px;
  -webkit-transform: rotate(0deg); /* Chrome, Safari, Opera */
}

.sidebar.close .pinAndUserInfContext{
  width: 25px;
}

/*main styles*/
#main {
  padding-top: 20px;
  justify-content: center;
  display: flex;
  gap: 30px;
  flex-direction: row;
}
/*end style*/

