.grid-container {
  display: grid;
  grid-template-columns: 160px 160px 160px;
  grid-gap: 5px;
  background-color: #2196F3;
  padding: 10px;
  align-content: center;	
}

.btnbar-container {
/*   display: flex; */
  flex-wrap: wrap;
  background-color: #f5f5f5;
  /*flex-direction: row*/
   flex-basis: 0;
   
 
}

.btnbar-container-div {
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 195px;
    max-width: 195px;
    margin-left: 2px;
    margin-right: 8px;
    margin-top: 10px;
    margin-bottom: 0px;
    max-height: 55px;
    height: 55px;
    font-size: 12px;
    display: flex;
    /* flex-wrap: nowrap; */
    flex-shrink: 1;
    /* align-items: stretch; */
    justify-content: center;
    cursor: pointer;
}

.btnbar-container-div:hover {
  opacity: 0.8;
}
.btnbar-item-left {
    display: flex;
    /*width: 40px;*/
    width:0px;
    height: 55px;
    flex-shrink: 0;
    margin-left: 5px;
    align-items: center;
  
}
.btnbar-item-right {
  display: flex;
  align-items: center;
  font-size: 15px;
  text-align: left;
  justify-content: left;
  flex-grow:1; /*set right to growing while left fixed*/
  font-weight: bold;
  margin-left:10px;
}
.btnbar-label {
   	color: #004594;
    font-size: 14px;
}


/**
PROPERTY GRID: Mode 1
**/
.propgrid-icondetail-1{
    line-height: 35px;
    font-size: 20px;
    position: relative;
   /* left: 60%;
    top: 96%;*/
    text-align: center;
    color: #f46f6c;
    /*transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);*/
}
.propgrid-1-tbl-tr {
    border-bottom:1px solid #ddd;
    padding: 8px;
    background-color: white;
}


.propgrid-1-tbl-th {
	/*border-bottom:1px solid black;*/
    /*padding: 8px;*/
    height:40px;
    padding-top: 2px;
    padding-bottom: 2px;
    text-align: left;
    background-color: #4CAF50;
    color: white;
}
/**END PROPERTY GRID: Mode 1**/


/**FILEBOX IN CKENDOGRID**/
.k-filebox-container::-webkit-scrollbar-thumb {
border-radius: 3px;
background-color: rgba(0,0,0,0.5);
-webkit-box-shadow: 0 0 1px rgba(255,255,255,0.5);
}
::-webkit-scrollbar {
width: 8px;
height: 8px;
}

.k-filebox-container {
  /*background-color: #fff;*/
  /*border: 1px solid red;*/
  min-width: 100%;
  /*height: 80px;*/
  display: flex;
  overflow-x: auto;
 
  align-items: left;
  justify-content: left;
}
.k-filebox-content {
  display: flex;
  max-width: 130px;
  height: 40px;
  margin: 5px 3px 5px 3px;
}
.k-filebox-content:hover {
  opacity:0.8;
  cursor:pointer;
  background-color: #e74c3c;
}
.k-file-icon{
  display: flex;
  min-width:50px;
  min-height:100%;
  text-align:center;
  align-items: center;
  justify-content: center;
}
.k-file-name{
  display: flex;
  font-size:12px;
  align-items: left;
  text-align:left;
  justify-content: left;
  flex-direction: column;
 word-wrap: break-word;overflow: hidden;text-overflow: ellipsis;
}
.k-file-size{
flex:0 0 15px;
justify-content: flex-end;
  font-size:10px;
}

  .k-window-content{
    overflow: auto;
    height: calc(100% - 60px);
    padding: 10px
  }
  .k-window-footer{
    display: block;
    width: 95%;
    /*padding: 15px 0;*/
    text-align: right;
    border-top: 1px solid #e5e5e5;
  }
 .line{
	width: 100%;
	height: 1px;
	border-bottom: 1px solid #dddddd;
	
}
.backdrop-class{
    background: -moz-linear-gradient(rgba(11,11,11,0.1), rgba(11,11,11,0.6)) repeat-x rgba(11,11,11,0.2);
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(11,11,11,0.1)), to(rgba(11,11,11,0.6))) repeat-x rgba(11,11,11,0.2);
}	       