.mastersoh-table{
  display: flex;
  flex-flow: column nowrap;
  margin: 10px 20px 10px 20px;
}
.mastersoh-table .ms-table-row {
  display: flex;
  flex-flow: row nowrap;
  width: 100%;
  border-bottom: 1px solid #eeeeee;
  padding:0px 15px;
}
.mastersoh-table .ms-table-row:first-child{
  border-top: 1px solid #eeeeee;
}
.mastersoh-table .ms-table-row:last-child{
  border-bottom: none;
}
.mastersoh-table .ms-header {
  color: #3e3e3e;
  font-weight: bold;
}
.mastersoh-table .ms-table-row > div {
  flex: 1;
  font-size: 11px;
  padding: 8px 0;
  justify-content: flex-start;
  align-self: center;
  align-items: center;
  transition: all 0.15s ease-in-out;    
}
.mastersoh-table .ms-table-row > div .material-icons{
  font-size:12px;
}
.mastersoh-table .ms-table-row > div .btn + .btn{
  margin-left:3px;
}
.mastersoh-table .ms-table-row > div .btn:hover{
  opacity: 0.7;
}
.mastersoh-table .ms-table-row > div .btn{
  width: 30px;
  height: 25px;
  padding: 0px;
  line-height: 23px;
  transition: all 0.3s ease;
}
.mastersoh-table .ms-header.ms-table-row > div{
  font-weight: bold;
  text-transform: uppercase;
}
.mastersoh-table .ms-table-row > div:first-child{
  justify-content: flex-start;
}
.mastersoh-table .ms-table-row > div:last-child{
  justify-content: flex-end;
  text-align: right;
}
.mastersoh-table .ms-pagination-wrapper{
  display: flex;
  justify-content: space-between;
}
.mastersoh-table .ms-pagination-total{
  font-size: 12px;
  margin-top: 17px;
}
.mastersoh-table .ms-pagination{
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 5px;
  margin-top:15px;
}
.mastersoh-table .ms-pagination a{
  align-items: center;
  justify-content: center;
  display: flex;
  width: 35px;
  height: 35px;
  font-size: 11px;
  border: 1px solid #ebebeb;
  cursor: pointer;
  background-color: #ffffff;
  border-radius: 10px;
  transition: all 0.2s ease;
}
.mastersoh-table .ms-pagination a.current{
  background-color: #e93b30;
  color:#fff;
}
.mastersoh-table .ms-pagination a:hover{
  background-color: #f3f3f3;
  color:#000;
}
.mastersoh-table .ms-pagination a.current:hover{
  background-color: #e93b30;
  color:#fff;
}
.navbar-nav span{
  transition: all 0.3s ease;
}
.navbar-nav span:hover{
  color:#ccc;
}
#headerLogo{
  color: #e93b30;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
}
.arrow-back:hover{
  color:#ff9696;
}
.arrow-back{
  vertical-align: middle;
  margin-top: -3px;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-left: -5px;
  padding: 5px 10px;
}
.case-detail{
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0px 20px 15px 20px;
  margin-top:-5px;
}
.case-detail > div > div > span{
  font-size:12px;
}
.case-detail > div > div > span:first-child{
  font-weight: bold;
  color:#000;
}
.case-detail > div > div{
  height:18px;
}
.ms-listing-detail > div > span{
  font-size:12px;
}
.ms-listing-detail > div > span:first-child{
  font-weight: bold;
  color:#000;
}
.mobile-show{
  display: none;
}
.blockUI.blockOverlay{
  z-index: 99999 !important;
}
#screenLoading {
  animation-delay: 3s;
}
.screenLoadingText{
  font-size:12px;
  margin-top:10px;
}
select.form-control{
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
}
#contentNoData {
  text-align: center;
  padding: 50px;
}
.contentNoDataText{
  font-size:12px;
  margin-top:10px;
}
#contentLoading {
  text-align: center;
  padding: 50px;
}
.contentLoadingText{
  font-size:12px;
  margin-top:10px;
}
/* Mobile Responsive */
@media only screen and (max-width: 600px) {
  body{
    color: #7f7f7f;
  }
  .mobile-hide{
    display: none;
  }
  nav.navbar-main {
    background-color: white;
    margin: 0 !important;
    border-radius: 0 !important;
    padding: 0;
  }
  #headerLogo {
    font-size: 12px;
  }
  #headerLogo img{
    margin-right: 5px !important;
    width: 95px !important;
  }
  .main-content{
    border-radius: 0 !important;
  }
  nav.navbar-main .container-fluid{
    padding: 8px 10px !important;
    justify-content: space-between !important;
  }
  .navbar-collapse{
    flex-grow: unset;
    margin-top:0 !important
  }
  .m-d-display{
    display: inline-block !important;
    font-size: 12px;
  }
  .mobile-content{
    padding: 10px;
    margin-top:10px;
  }
  .case-detail{
    grid-template-columns: 1fr;
  }
  .card-header > div{
    padding: 8px 0px !important;
  }
  .card-header > div > h6{
    margin: 0 0 0 10px !important;
    font-size: 14px;
  }
  .card-header > div > h6 .arrow-back{
    margin-right: -5px;
    margin-top: -4px;
    font-size: 15px;
    margin-left: -10px;
  }
  .case-detail > div > div{
    height: auto;
  }
  .mastersoh-table .ms-header.ms-table-row{
    display: none;
  }
  .mastersoh-table .ms-table-row{
    display: grid;
    grid-template-columns: 1fr;
  }
  .mastersoh-table .ms-table-row{
    padding: 0px 0px;
  }
  .mobile-show{
    display: inline-block;
  }
  .mobile-hide{
    display: none;
  }
}

