/* Common */
.dNo { display: none; }

.fL { float: left; }
.fR { float: right; }

.w100 { width: 100%; }
.h100 { height: 100%; }

.taL { text-align: left; }
.taC { text-align: center; }
.taR { text-align: right; }

.fs12 { font-size: 12px !important; }
.fs14 { font-size: 14px !important; }
.fs16 { font-size: 16px !important; }
.fs18 { font-size: 18px !important; }
.fs20 { font-size: 20px !important; }

.crRed { color: red; }
.crGreen { color: green; }
.crBlue { color: blue; }
.crWhite { color: white; }
.crBlack { color: black; }
.crGary { color: #f9f9f9; }

.bold { font-weight: bold; }
.pointer { cursor: pointer; }

.bgPrimary { background: #0275d8 !important; }
.bgInfo { background: #17a2b8 !important; }
.bgWarning { background: #f0ad4e !important; }

.wrap {
  word-wrap: break-word;
}

.btn-center {
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
}

/* list */
.list-group { 
	float: left;
	width: 100%;
	/*border: 1px solid #ccc;*/
	background: #ffffff;
}
.list-group .list-section {
  background: #fff; 
	float: left;
	width: 100%;
}
.list-group .list-item { 
	float: left;
  width: 100%;
  border-bottom: 1px solid #ccc;
  padding: 10px 0px 10px 0px;
  font-size: 16px;
  background: #ea6153;
  color: #fff;
}
.list-group .list-block {
  float: left;
  width: 100%;
}
.list-group .list-content {
  float: left;
  width: 100%;
  /*margin: 0px 10px 0px 10px;*/
  font-size: 14px;
  border-bottom: 1px solid #ccc; 
  margin-bottom: 10px;  
}
.list-group .list-content .cell { 
  margin-top: 10px;
}
.list-group .list-content .text {
    white-space: initial;
    line-height: 30px;
}
.list-group .list-content .dt {
    border: 1px solid #ddd;
    border-top: 0;
    border-bottom: 0;
}
.list-group .list-content a {
  color: #333333;
}
.list-group .list-content a:nth-of-type(even) {
    background: #f3f3f3;
}
.list-group .list-content a .list-block {
  cursor: pointer;
  border-top: 1px solid #ccc !important;
}
.list-group .list-content a .list-block:nth-of-type(even) {
    background: #f3f3f3;
}
.list-group .list-content a .list-block:hover { 
  background: #FDF8E2;
}
.list-group .list-content a .list-block:first-child {
  border-top: 0;
}
.list-group .list-content a:last-child {
  border-bottom: 0px solid #ccc;
}

.list-group .list-ajax-content .list-block {
  border-top: 1px solid #ccc !important;
}
.list-group .list-ajax-content .list-block:nth-of-type(even) {
  background: #f3f3f3 !important;
}
.list-group .list-ajax-content .list-block:hover { 
  background: #FDF8E2;
}
.list-group .list-ajax-content .list-block:first-child {
  border-top: 0;
}
.list-group .list-ajax-content .list-block:last-child {
  border-bottom: 1px solid #ccc;
}

/* table */
.table-list-item {
  background: #ea6153; color: #fff; font-size: 16px;
}

.table-list-content {
  font-size: 14px;
}

.table-list-content a {
  color: #000000;
}


/* navigation sidebar menu */
#wrapper {
  padding-left: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#wrapper.toggled {
  padding-left: 140px;
}

#sidebar-wrapper {
  z-index: 1000;
  position: fixed;
  left: 140px;
  width: 0;
  height: 100%;
  margin-left: -140px;
  overflow-y: auto;
  background: #373330;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#wrapper.toggled #sidebar-wrapper {
  width: 140px;
}

#page-content-wrapper {
  width: 100%;
  float: left;
}

#wrapper.toggled #page-content-wrapper {
  margin-right: -140px;
}
#menu {
    display: none;
    background: #373330;
    padding: 5px;
    position: fixed;
    z-index: 1000;
}
#menu button {
	margin-left: 5px;
}
#menu i{
    color: #999999;
    font-size: 24px;
}
#menu i:hover{
    color: #ffffff;
}

/* sidebar styles */
.sidebar-nav {
  position: absolute;
  top: 0;
  width: 140px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-nav li {
  /*text-indent: 20px;*/
  padding-left:10px;
  line-height: 40px;
  float: left;
  width: 100%;
}

.sidebar-nav li a {
  display: block;
  text-decoration: none;
  color: #999999;
}

.sidebar-nav li a:hover {
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

.sidebar-nav li a:active, .sidebar-nav li a:focus {
  text-decoration: none;
}

.sidebar-nav>.sidebar-brand {
  height: 65px;
  font-size: 18px;
  line-height: 60px;
}

.sidebar-nav>.sidebar-brand a {
  color: #999999;
}

.sidebar-nav>.sidebar-brand a:hover {
  color: #fff;
  background: none;
}
.sidebar-nav .icon {
	font-weight: 400;
  letter-spacing: -0.5px;
  width: 100%;
  font-size: 18px;
  padding: 10px 20px;
  background-color: #373330;
}

/* toolbar */
.toolbar {
  background: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-left: 0;
  border-right: 0;
  margin-bottom: 20px;
}

.cell:last-child {
    margin: 20px 0px 20px 0px;
}

/* override */
.table {
  font-size: 12px;
}
.table thead th {
  border-top: 0;
  border-bottom: 1px solid #e9ecef;
} 

.form-check-input {
  width: 20px !important; 
}

.mask{
    height: 100%;
    width: 100%;  
    overflow:hidden;
    position:absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background:rgba(230,230,230,0.4) url(../img/loading.gif) center center no-repeat;
    background-position: center 150px;
}

@media(max-width:768px) {
  #menu {
    display: block;
  }  
  #page-content-wrapper {
    margin-top: 45px;
  }  
}