
.cell-grid {
  display: grid;
  grid-column-gap: 0px;
  /*grid-template-columns: repeat(4, 1fr);*/
  grid-template-columns: repeat(auto-fill, 82px);
  grid-template-rows: repeat(1, 1fr);
  /*background-color: #2196F3;*/
  /* border: 1px solid rgba(0, 0, 0, 0.8);*/
  padding: 0px;
  background: #FFF;
  background-color: #FFF;
  height: 140px;
  max-width: 330px;
}

.braille-grid {
  display: grid;
  grid-column-gap: 0px;
  grid-template-columns: repeat(3, 1fr);
  /*grid-template-columns: repeat(auto-fill, 82px);*/
  grid-template-rows: repeat(1, 1fr);
  /*background-color: #2196F3;*/
  /* border: 1px solid rgba(0, 0, 0, 0.8);*/
  padding: 0px;
  background: #FFF;
  background-color: #FFF;
  height: 140px;
  max-width: 220px;
}

.cell-grid-item {
  /*background-color: rgba(255, 255, 255, 0.8);
  border: 5px solid rgba(0, 0, 0, 0.8);*/
  margin: 5px;
  padding: 5px;
  font-size: 10px;
  text-align: center;
  cursor: pointer;
  background: #FFF;
  background-color: #FFF;
  min-height: 0;  /* NEW */
  min-width: 60;   /* NEW; needed for Firefox */
  height: 130px;
  /*overflow: hidden;  /* NEW */
}


.cell-grid-edit {
  display: grid;
  grid-column-gap: 5px;
  /*grid-template-columns: 8fr 1fr 3fr;*/
  grid-template-columns: 84px 256px 1fr;
}
.cell-grid-edit :first-child {
  grid-column: 1 / -1;
}

.cell-grid-item-edit {
  margin: 5px;
  padding: 5px;
  cursor: pointer;
  background: #FFF;
  background-color: #FFF;
  min-height: 0;  /* NEW */
  min-width: 60;   /* NEW; needed for Firefox */

  /*overflow: hidden;  /* NEW */
}

@font-face {
  font-family: cool_font;
  /*font-family: SimBraille;*/
  src: url('/static/fonts/braille-merge.ttf');

}


@font-face
{
    font-family: 'AppleBraille';
    src: url('/static/fonts/AppleBraille.ttf');
}

.braille-font {
  font-family: cool_font;
  /*color:#003399;*/
  font-size: 18pt;
}

.braille-font-type {
  font-family: cool_font;
  font-size: 18pt;
}

.cell table{
    border: 1px solid black;
    table-layout: fixed;
}
.cell th, td, tr{
    overflow: hidden;
    padding: 1px;
    margin-bottom: 0rem;
}

.cell input[type=text] {
  font-size: 18px;
  text-align: center;
  /*border-color:dodgerBlue;
  box-shadow: 0 0 8px 0 dodgerBlue;*/
  font-family: FontAwesome;
  font-weight: bold;
  width: 100%;
  padding: 2px;
  box-sizing: border-box;
  border:none;
}




.cell-dot {
  position: relative;
}

.cell-dot label {
  background-color: #fff;
  border: 2px solid #373632;
  border-radius: 50%;
  cursor: pointer;
  height: 30px;
  width: 30px;
  position: relative;
  display: block;
  margin-bottom: 0rem;
}

.cell-dot input[type="checkbox"]:checked + label {
  background-color: #373632;
  border-color: #000;
  display: block;
}


.cell-dot input[type="checkbox"] {
  visibility: hidden;
  display: none;
}

.braille_output {
  font-size: 20px;
}

/*
.cell-dot label:after {
  border: 2px solid #CCC;
  content: "";
  height: 25px;
  position: absolute;
  width: 25px;
  opacity: 0;
}

.cell-dot input[type="checkbox"]:checked + label:after {
  opacity: 0;
}*/


@media(max-width:600px){
 .mobile-hide{
    visibility: hidden;
    display: none;
    }
}
