@font-face {
  font-family: 'SL Sign Language';
  src: url(../sl-sign-language-font/SlSignLanguage-LE8E.ttf)
}

@font-face {
  font-family: 'Braille CCO';
  src: url(../braille-cc0-font/BrailleCc0-DOeDd.ttf)
}

.bsl {
  font-family : 'SL Sign Language';
  font-size : 2.5vw;
  white-space : normal;
  letter-spacing : 0.25vw;
}

.braille {
  font-family : 'Braille CCO';
  font-size : 2.0vw;
  white-space : normal;
  letter-spacing : 0.25vw;
}

/*	Max width before this PARTICULAR table gets nasty. This query will take effect for any screen smaller than 760px and also iPads specifically.
	*/

.response {
  display : none;
}

@media
  only screen 
  and (max-width : 760px), (min-width : 768px) 
  and (max-width : 1024px)

{
  /* Force table to not be like tables anymore */
  table, thead, tbody, th, td, tr {
    display : block;
  }

    /* Hide table headers (but not display : none;, for accessibility) */
  thead tr {
    position : absolute;
    top : -9999px;
    left : -9999px;
  }

  .response {
    display : block;
  }

  tr {
    margin : 0 0 1rem 0;
  }

  .noshow {
    display : none;
  }

  .braille {
    font-family : 'Braille CCO';
    font-size : 4.25vw;
  }

  .bsl {
    font-family : 'SL Sign Language';
    font-size : 4.25vw;
  }

  td:nth-child(1) {
    font-weight : bold; /* for titles */
  }

  td {
    /* Behave  like a "row" */
    border : none;
    border-bottom : 1px solid #00008b;
    position : relative;
    padding-left : 40%;
  }

  td:before {
    /* Now like a table header */
    position : absolute;
    /* Top/left values mimic padding */
    top : 0;
    left : 0px;
    width : 35%;
    /* padding-right : 10px;*/
    white-space : nowrap;
  }

/* Label the data */
  td:before { 
    font-weight : bold;
    background-color  : #add8e6;
    color  : #00008b;
    text-align  : left;
    vertical-align  : baseline;
    font-size  : 1rem;
    padding  : 0.125rem;
    border  : none;
    white-space  : pre-wrap;
  }

  td:nth-of-type(1):before {
    content: "English name";
  }

  .bn td:nth-of-type(2):before {
    content: "Bengali name";
  }

  .sign td:nth-of-type(2):before {
    content: "BSL name";
  }

  .dots td:nth-of-type(2):before {
    content: "Braille name";
  }

  .zh td:nth-of-type(2):before {
    content: "Chinese name";
  }

  .de td:nth-of-type(2):before {
    content: "German name";
  }

  .el td:nth-of-type(2):before {
    content: "Greek name";
  }

  .ne td:nth-of-type(2):before {
    content: "Nepali name";
  }

  .pa td:nth-of-type(2):before {
    content: "Punjabi name";
  }

  .ur td:nth-of-type(2):before {
    content: "Urdu name";
  }

  .hi td:nth-of-type(2):before {
    content: "Hindi name";
  }

  .yi td:nth-of-type(2):before {
    content: "Yiddish name";
  }

/* Zebra striping */
  tr:nth-of-type(even) {
    background-color : rgba(208,231,242,0.5);
  }
}