.sidebar {
    background: var(--transparent-grey);
    display: flex;
    flex-direction: column;
    width: 30%;
}
.sidebar ul {
    list-style: none;
    margin: 50px 0;
    padding: 0;
width: 90%;
}
.sidebar ul li{
    margin-bottom: 15px;
}
.sidebar ul li a{
    min-height: 30px;
}
.vaib_users .content.boxflex{
    max-width: 100%;
}

.module_block {
    width: 100%;
  }

.module_header {
    border-bottom:  1px solid var(--blue);
    border-top: 1px solid var(--blue);
    margin-top: 50px;
    margin-left: 0px;
    margin-right: 0px;
    width:calc(100%) ;
}
.module_header h2 {
    align-items: center;
    color: var(--blue);
    display: flex;
    font-size: 40px;
    justify-content: space-between;
    margin: 0;
}
.module_header h2 .material-icons {
    font-size: 40px;
}

.module_content{
    
    margin-left: 73px;
    margin-right: 73px;
    width:calc(100% - 73px) ;
}

table{
    width: 100%;
}
table thead{
    background: #40474A;
    color: white;
}
table thead th{
    height: 67px;
    font-size: 15px;
}

table thead th:last-child {
    width: 30px;
  }
table tbody tr:nth-child(2n) {
    background: #EFEFEF;
}

table tbody td{
    padding: 10px 0;
    text-align: center;
}

.module_actions {
    text-align: center;
}
.module_actions a{
    width: 35%;
    display: inline-table;
}

.module a.btn_blue{
    margin-top: 20px;
    max-width: 70%;
    margin-left: 15%;
  }

@media(max-width:450px) {
    
.module_header h2 {
    font-size: 22px;
}
    .vaib_users .content.boxflex {
        flex-direction: column-reverse;
      }
      .module_header {
        border-bottom: 1px solid var(--blue);
        border-top: 1px solid var(--blue);
        margin-top: 50px;
        margin-left: 10px;
        margin-right: 10px;
        width: calc(100% - 20px);
      }
      .module_content {
        margin-left: 10px;
        margin-right: 10px;
        width: calc(100% - 20px);
      }
      .sidebar {
        width: 100%;
      }
      .sidebar ul {
        display: flex;
        margin: 0;
        flex-wrap: wrap;
      }
      .sidebar ul li {
        margin-bottom: 5px;
        width: 50%;
      }
      .sidebar ul li a {
        font-size: 10px;
        min-height: 30px;
        width: 100%;
      }

      table thead th {
        font-size: 8.5px;
      }
}