/*Header*/
.header-container {
    background: var(--main-grident);
}

header.header {
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    padding: 0.5em;
    width: 100%;
    height: 3.5em;
}

.header_logomg{
    align-items: inherit;
    display: flex;
    width:60%;
    justify-content: flex-start;
}

.header_logomg .logo{
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 1;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 0;
    border-radius: .3em;
    background-color: var(--white-color);
}

.header_logomg .sidebarCollapse{
 display:flex;
  flex-direction:column;
  width: 25px;
  cursor:pointer;
  margin-left: 1em;
  background: transparent;
  border: 0;
}


.header_logomg .sidebarCollapse>.menuspan{
  background: #fff;
  border-radius: 10px;
  height: 3px;
  margin: 2px 0;
}

.menuspan:nth-of-type(1){
  width:50%;
  
}

.menuspan:nth-of-type(2){
  width:100%;
}


.menuspan:nth-of-type(3){
  width:75%;
 
}

.header_logomg .each_pagetitle{
    margin-left:0.8em;
    color:#fff;
    margin-bottom:0;
}

.header_menu_block{
    display:flex;
    width:60%;
    flex-direction: row;
    justify-content: space-between;
}

.header_menu_block .searchbox{
    position: relative;    
    width: 100%;
}

.header_menu_block .searchbox form{
    background:rgba(255,255,255,0.46);
    display:flex;
    flex-direction: row;
    padding:5px 10px 5px 15px;
    border-radius:5px;
    align-items: center;
    width:100%;
}

.header_menu_block .searchbox form .search_input{
  width:100%;
  margin:0px 0px 0px 8px;
  border:none;
  background: transparent;
  color:rgba(255,255,255,0.65);
}   
      
      
.header_menu_block .searchbox form .search_input::-webkit-input-placeholder { /* Edge */
  color:rgba(255,255,255,0.65);
}

.header_menu_block .searchbox form .search_input:-ms-input-placeholder { /* Internet Explorer */
  color:rgba(255,255,255,0.65);
}

.header_menu_block .searchbox form .search_input::placeholder {
  color:rgba(255,255,255,0.65);
}


.user_profile,.user_profile:focus,.user_profile:active,.user_profile:hover{
    display: block;
    padding:4px;
    height: 40px;
    width: 40px;
    border-radius: 100%;
    background: #f58220;
    align-items: center;
    text-align: center;
    text-decoration: none;
    font-size: 1.5em;
    line-height: 30px;
    color: #fff;
}

  
/* Media Query for Mobile Devices */
@media (max-width: 480px) {

.header_logomg {
    width:10%;
}

.header_logomg .logo,.header_logomg .each_pagetitle{
    display: none;
}

.header_logomg .sidebarCollapse {
     margin-left: 0em; 
}

.header_menu_block {
    width:90%;
    margin-left: 0px;
}
.user-profile-dropdown {
    margin-left: 7px;
    margin-right: 0px;
}
}

/* Media Query for low resolution  Tablets, Ipads */
@media (min-width: 481px) and (max-width: 767px) {

    
}

/* Media Query for Tablets Ipads portrait mode */
@media (min-width: 768px) and (max-width: 1024px){

    
}

/* Media Query for Laptops and Desktops */
@media (min-width: 1025px) and (max-width: 1280px){
   
}

/* Media Query for Large screens */
@media (min-width: 1281px) {
   
}



