
/*responsive menu*/
#menuToggle{
	display:none;
	position: relative;
	top: 2px;
	left: 10px;
	z-index: 0;
	-webkit-user-select: none;
	user-select: none;
}
#menuToggle a
{
  text-decoration: none;
  color: #fff;
  
  transition: color 0.3s ease;
}

#menuToggle a:hover
{
  color: #5888b7;
}


#menuToggle input
{
    display: block;
    width: 45px;
    height: 45px;
    position: absolute;
    top: -20px;
    left: -10px;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
    -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span {
    display: block;
    width: 27px;
    height: 2px;
    margin-bottom: 5px;
    position: relative;
    background: #fefefe;
    border-radius: 3px;
    z-index: 2;
    transform-origin: 4px 0px;
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
    background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
    opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
  opacity: 1;
  -webkit-transform: rotate(45deg) translate(-2px, -1px);
  background: #fff;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
 -webkit-transform: rotate(0deg) scale(0.2, 0.2);

}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
   -webkit-transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu
{
  position: absolute;
  width: 200px;
  margin: -100px 0 0 -50px;
  padding: 50px;
  padding-top: 125px;
  z-index: 1;
  
  background: #000;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  
  -webkit-transform-origin: 0% 0%;
  -webkit-transform: translate(-100%, 0);
  
  -webkit-transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
  padding: 10px 0;
  font-size: 12px;
  letter-spacing:0.3px;
  text-transform:uppercase;

}

/*
 * And let's slide it in from the left
 */
#menuToggle input:checked ~ ul
{
  -webkit-transform: none;
}

@media (max-width: 767px) {
	#timer-scroll { background: #d0d0d0; }
	#notifications-scroll { background: #d0d0d0; }
	#projects-scroll { background: #d0d0d0; }
	#email-scroll { background: #d0d0d0; }
	.notification-box-title { background: #d0d0d0; }
	.dashboard-window { margin-bottom: 10px; }

}
@media (max-width: 990px) {
	.chooseLang{
    min-height: auto !important;
    margin-top: -30px;
	}
  
}
/*phone*/
@media (max-width: 750px){
	.inner-sidebar-links{
		display:none;
	}
	#menuToggle{
		display:initial;
		margin: 40px;
	}
   .responsive-mobile thead {
      display: none;
  }
  .responsive-mobile td {
    display: flex;
    padding: 3px !important;
    margin: 0px;
    flex-direction: column;
    align-items: center;
  
  }
  /*.white-area-content{*/
  /*  position:absolute;*/
  /*}*/
  .responsive-mobile tbody tr{
    text-align: left !important;
    display: table;
    width: 100%;
     
  }
  .filter-main-div{
      width: 100%;
  }
}
@media (max-width: 400px){
  .search-primary-dot{
    width:100% !important;
  }
  .search-filter-primary{
  	width:100% !important;
  }
  .filter-main-div{
  	padding:0px;
  }
 
}