/* 
---------------------------------------------
Hub community
--------------------------------------------- 
*/
.communityHub{
    background-image: url(../images/banner-bg.jpg);
    background-position: center center;
    background-size: cover;
    height: 230px;
    border-radius: 23px;
    padding: 1% 6%;
    margin-bottom: 50px;
    border-bottom: solid #2C8CE7;
    border-width: 6px;
  }
  .communityHub em{
    color: #2C8CE7;
    font-style: normal;
  }
  .searchSideBar{
    width: 200px;
    transition: 0.1s;
  }
  .searchSideBar:hover{
    width: 100%;
    transition: 0.1s;
  }
  
  
  
  /* 
  ---------------------------------------------
  Member list
  --------------------------------------------- 
  */
  
  .dyn-memberList {
    display: flex;
    flex-wrap: wrap;
  
  }
  .member{
    width: 100%;
    padding: 10px;
    
  }
  .member .card{
   
    border: solid #666;
    border-width: 1px;
    background-color: #1f2122;
    height: 90px;
    text-align: right;
    padding-right: 5px;
    padding-top: 10px;
  
  }
  .member .notif-card {
    width: 100%;
    height: 90px;
    border-radius: 5px;
    padding-top: 10%;
    text-align: center;
    background-color: #000;
  }
  
  
  .member .notif-card h1{
    font-size: 20px;
    width: 100%;
    color: #Fff;
  }
  
  
  
  .member .card h1{
    font-size: 30px;
    color: #2C8CE7;
  }
  
  .member .card h4{
    font-size: 17px;
    text-transform: capitalize;
  
  }
  .member .card img{
    overflow: hidden;
    width: 60px;
    border-radius: 50%;
    position: absolute;
    top : 10px;
    left: 10px;
  }
  .member .card .userActive{
    background-color: #3b9125;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    position: absolute;
    top: 50px;
    left: 50px;
    border: solid #1f2122;
    border-width: 5px;
    
  }
  .member .card .userActive:hover{
    border-width: 3px;
    width: 26px;
    height: 26px;
  }
  
  .member .card .userPending{
    background-color: rgb(230, 146, 69);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    position: absolute;
    top: 50px;
    left: 50px;
    border: solid #1f2122;
    border-width: 5px;
    
  }
  .member .card .userPending:hover{
    border-width: 3px;
    width: 26px;
    height: 26px;
  }
  
  .member .card .userInActive{
    background-color: #9a1616;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    position: absolute;
    top: 50px;
    left: 50px;
    border: solid #1f2122;
    border-width: 5px;
    
  }
  .member .card .userInActive:hover{
    border-width: 3px;
    width: 26px;
    height: 26px;
  }
  
  .member .dropdown{
    
    display: none;
    height: fit-content;
    width: 100%;
    border: solid #666;
    border-width: 1px;
    background-color: #1f2122;
    border-radius: 0px 0px 23px 23px;
    border-top: none;
    padding-bottom: 5px;
  }
  .member .dropdown:hover{
    width: 100%;
  }
  
  .member .dropdown button{
    height: 30px;
    width: 90%;
    margin-top: 10px;
    margin-left: 5%;
    margin-right: 5%;
    background-color: #2C8CE7;
    color: #fff;
    border-radius: 23px;
  
  }
  .member .dropdown button:hover{
    background-color: #fff;
    color: #2C8CE7;
    
  }
  
  
  @media (min-width:760px) {
    .dyn-memberList .member{
      width: 50%;
      padding: 10px;
    }
  }
  @media (min-width:1060px) {
    .dyn-memberList .member{
      width: 33.33%;
      padding: 10px;
    }
  }
  @media (min-width:1400px) {
    .dyn-memberList .member{
      width: 25%;
      padding: 10px;
    }
  }
  
  
  
  
  