/* SCROLL */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #c9b458;  
}
::-webkit-scrollbar-thumb {
  background: gray;
 border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

#myGuess {
 // display: inline-block;
  display: none;
}

#guessControl {
  //position:absolute;
  margin: 1rem 0;
  display: flex;
  flex-flow: row nowrap;
  flex-direction: column;
  align-items: center;
}

#guessControl div {
  display: flex;
}

.firstRow {
  margin: 0.5rem 0;
}

.secondRow {
  margin: 0.5rem 0;
}

.guessInput {
  float:left;
  font-size: 15px;
  margin: 0px 5px 5px 25px ;
  background-color: Yellow;
  border-radius: 4px;
  padding: 1px 5px 1px 5px ;
}

#game-board {
  display: flex;
 // max-width:550px;
  align-items: center;
  flex-direction: column;
 //border: 2px solid red;
  touch-action: manipulation;
}

.letter-box {
  border: 2px solid gray;
  border-radius: 3px;
  margin: 2px;
  font-size: 2.5rem;
  font-weight: 700;
  height: 3rem;
  width: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}

.filled-box {
  border: 2px solid black;
}

.letter-row {
  display: flex;
}

#keyboard-cont {
 // max-width:550px;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
// border: 2px solid blue;
}

#keyboard-cont div {
  display: flex;
}

.second-row {
  margin: 0.5rem 0;
}

.keyboard-button {
  border-radius: 5px;
  font-size: 1.8rem;
  color:black;
  font-weight: 700;
  padding: 0.5rem;
  margin: 0px 4px 0px 4px ;
  cursor: pointer;
  text-transform: uppercase;
  touch-action: manipulation;
}

 .guess {
  border-radius: 6px;
  font-size: 2.5rem;
  font-weight: 700;
  height: 3rem;
  width: 3rem;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: -20px 5px 5px 5px ;
  padding:  4px 0px 4px 0px;
  text-align: center;
  //text-transform: capitalize;
  text-transform: uppercase;
  background-color: gray;
  color: white;
  border: 1px solid #222;  
 }

.colorPick {
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  height: 1.5rem;
  width: 3.0rem;
  margin:5px ;
  padding:  4px 0px 4px 0px;
  font-size: 0.8rem;
  font-weight: 600;
  background-color: #6aaa64;
  background-image: linear-gradient(to right,  #c9b458   , gray 40%, #6aaa64 75%);
  border: 2px solid black;
}

#curatedBox {
  display: inline-block;
  margin:5px 5px 10px 25px ;
  border-radius: 6px;
 // max-width:290px;
 // min-width:290px;
  max-width:18.0rem;
  min-width:18.0rem;

  background-color: #6aaa64;
  min-height:140px;
  max-height:140px;
  overflow-y: scroll;
  border-style:double;
  vertical-align: super;"
}

#possibleBox {
  display: inline-block;
  margin:10px 5px 0px 25px ;
  border-radius: 6px;
  //max-width:290px;
  //min-width:290px;
  max-width:18.0rem;
  min-width:18.0rem;
  background-color: #6aaa64;
  min-height:235px;
  max-height:235px;
  overflow-y: scroll;
  border-style:double;
  vertical-align: super;"
}

#hintButton {
  display: inline-block;
  border-radius: 5px;
  color:white;
  background-color:#A70000;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.1rem;
  padding: 0.5rem;
  margin: 0 2px;
  cursor: pointer;
  text-transform: uppercase;
 // touch-action: manipulation;
}

#hintButton2 {
  position:absolute;
  outline: none;
  top: 27px;
  border:0;
  display: inline-block;
  border-radius: 5px;
 // height:35	px;
  color:#a9a879;
  background-color:#a9a879;
  //font-weight: 700;
 // font-size: 18px;
 // font-size: 0.1rem;
 // padding: 0.5rem;
 // margin: 0 2px;
  cursor: pointer;
  text-transform: uppercase;
 // touch-action: manipulation;
}

#hintButton3 {
  position:absolute;
  outline: none;
  top: 27px;
 left:20px;	
  border:0;
  display: inline-block;
  border-radius: 5px;
 // height:35	px;
  color:#a9a879;
  //color:#6aaa64;
 background-color:#a9a879;
 // background-color: #6aaa64;
  //font-weight: 700;
 // font-size: 18px;
 // font-size: 0.1rem;
 // padding: 0.5rem;
 // margin: 0 2px;
  cursor: pointer;
  text-transform: uppercase;
 // touch-action: manipulation;
}


body {
	background: #3ABCF8 url(img/backgrnd.jpg)  ;


}
