* {
  box-sizing: border-box;
  font-family: sans-serif;
  text-transform: uppercase; }

html {
  overflow: hidden; }

body {
  background-color: #3c7ebb; }

#container {
  height: 100vh;
  width: 43vh;
  padding: 1vh;
  margin: 0 auto; }

.icon {
  text-transform: none;
  font-weight: 900;
  font-family: serif;
  width: 3vh;
  height: 3vh;
  background-color: #fff;
  border-radius: 3vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 4vh; }

#info {
  margin-left: -2vh; }

#add-word {
  margin-left: 40vh;
  text-decoration: none; }

#info-box {
  z-index: 100;
  position: absolute;
  width: 41vh;
  margin: 1vh auto;
  background-color: #fff;
  padding: 1vh 2vh;
  box-shadow: 0 1px 7px -2px rgba(0, 0, 0, 0.94);
  display: none; }
  #info-box * {
    text-transform: none; }
  #info-box .dl {
    color: #0d8d0a; }
  #info-box .tl {
    color: #0d68af; }
  #info-box .dw {
    color: #fea400; }
  #info-box .tw {
    color: #bc0707; }

#letter-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 4vh; }
  #letter-grid > div {
    position: relative; }
    #letter-grid > div:before {
      position: absolute;
      color: #fff;
      border: 3px solid #fff;
      width: 3vh;
      height: 3vh;
      border-radius: 3vh;
      display: flex;
      justify-content: center;
      align-items: center;
      top: -1vh;
      left: -1.5vh;
      font-size: 1.2vh;
      font-weight: 900;
      box-shadow: 2px 2px 1px 0px rgba(0, 0, 0, 0.5);
      z-index: 10; }
    #letter-grid > div.mpl-1:before {
      content: 'DL';
      background-color: #0d8d0a; }
    #letter-grid > div.mpl-1 input {
      border: 3px solid #0d8d0a; }
    #letter-grid > div.mpl-2:before {
      content: 'TL';
      background-color: #0d68af; }
    #letter-grid > div.mpl-2 input {
      border: 3px solid #0d68af; }
    #letter-grid > div.mpl-3:before {
      content: 'DW';
      background-color: #fea400; }
    #letter-grid > div.mpl-3 input {
      border: 3px solid #fea400; }
    #letter-grid > div.mpl-4:before {
      content: 'TW';
      background-color: #bc0707; }
    #letter-grid > div.mpl-4 input {
      border: 3px solid #bc0707; }
    #letter-grid > div:after {
      content: attr(data-points);
      position: absolute;
      color: #000;
      width: 1vh;
      height: 1vh;
      display: flex;
      justify-content: center;
      align-items: center;
      top: 0.4vh;
      right: 0.7vh;
      font-size: 1vh;
      font-weight: 900; }
  #letter-grid input.letter {
    flex: 0 0 7vh;
    margin-bottom: 1.4vh;
    width: 7vh;
    min-width: 7vh;
    height: 7vh;
    text-align: center;
    font-size: 5vh;
    font-weight: 600;
    border-radius: 1vh; }

#path-container {
  position: absolute;
  top: 2vh;
  width: 33vh;
  height: 33vh;
  margin-left: 5vh;
  pointer-events: none; }
  #path-container .path-start {
    background-color: #ec6f00;
    width: 2vh;
    height: 2vh;
    border-radius: 2vh;
    position: absolute;
    display: none; }
  #path-container .path {
    width: 1vh;
    height: 7vh;
    background-color: #ffb100;
    position: absolute;
    display: none; }
    #path-container .path.path-hor {
      transform: rotate(90deg); }
      #path-container .path.path-hor.path-x-1 {
        left: 6.3vh; }
      #path-container .path.path-hor.path-x-2 {
        left: 15vh; }
      #path-container .path.path-hor.path-x-3 {
        left: 23.6vh; }
      #path-container .path.path-hor.path-y-1 {
        top: -0.2vh; }
      #path-container .path.path-hor.path-y-2 {
        top: 8.1vh; }
      #path-container .path.path-hor.path-y-3 {
        top: 16.5vh; }
      #path-container .path.path-hor.path-y-4 {
        top: 24.9vh; }
    #path-container .path.path-ver.path-x-1 {
      left: 2vh; }
    #path-container .path.path-ver.path-x-2 {
      left: 10.7vh; }
    #path-container .path.path-ver.path-x-3 {
      left: 19.4vh; }
    #path-container .path.path-ver.path-x-4 {
      left: 27.9vh; }
    #path-container .path.path-ver.path-y-1 {
      top: 4vh; }
    #path-container .path.path-ver.path-y-2 {
      top: 12.2vh; }
    #path-container .path.path-ver.path-y-3 {
      top: 20.8vh; }
    #path-container .path.path-dia {
      transform: rotate(45deg); }
      #path-container .path.path-dia.path-x-1 {
        left: 6.3vh; }
      #path-container .path.path-dia.path-x-2 {
        left: 15vh; }
      #path-container .path.path-dia.path-x-3 {
        left: 23.6vh; }
      #path-container .path.path-dia.path-y-1 {
        top: 4vh; }
      #path-container .path.path-dia.path-y-2 {
        top: 12.2vh; }
      #path-container .path.path-dia.path-y-3 {
        top: 20.8vh; }
    #path-container .path.path-dia-down {
      transform: rotate(-45deg); }
    #path-container .path.path-dia-up {
      transform: rotate(45deg); }

#words {
  background-color: #fff;
  height: 60vh;
  margin-top: 3vh;
  box-shadow: inset 0 1px 7px -2px rgba(0, 0, 0, 0.94);
  overflow: auto; }
  #words .word-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 3vh;
    padding: 1vh 2.5vh;
    border-bottom: 1px solid; }
    #words .word-container .score {
      font-size: 1.5vh;
      font-weight: 900; }

/*# sourceMappingURL=style.css.map */
