.aTable {
    margin-left: auto;
    margin-right: auto;
    border: solid 1px rgb(255, 255, 255);
    height: 100%;
}

.hintCell {
    cursor: pointer;    
}

.results {
    margin-left: auto;
    margin-right: auto;
    bottom: 0;
    height: auto;
    max-width: 900px;
    padding: 0;
    background: #ffffff;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    user-select: none;
    transition: bottom 0.4s;
}

.results--hidden {
    display: none;
}

.results__scores {
    text-align: center;
}

.results__score {
    height: 45px;
    width: 150%;
    max-width: 300px;
    margin: 0px;
    border-radius: 0;
    border-style: solid;
    border-width: 1px;
    border-color: rgb(255, 255, 255);
    background: rgb(0, 121, 193);
    color: #ffffff;
    font-size: auto;
    outline: rgb(255, 255, 255);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: top;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    position: relative;
}

.shareBox {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
    text-align: center;
    vertical-align: middle;
    border-style: solid;
    border-width: 1px;
    align-items: center;
    justify-content: center;
}

.share {
    max-width: 90px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: top;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    font-family: 'Work Sans', sans-serif;
}

.route__confirmation {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.route__road {
    height: 45px;
    width: 45px;
    margin: 2px 2px;
    border-radius: 8px;
    border-style: solid;
    border-width: 1px;
    border-color: rgb(0, 0, 0);
    background: rgb(0, 121, 193);
    color: #ffffff;
    font-size: auto;
    outline: rgb(255, 255, 255);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: top;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    position: relative;
}

.keyboard {
    margin-left: auto;
    margin-right: auto;
    bottom: 0px;
    height: auto;
    max-width: 900px;
    padding: 0;
    background: #6d6d6d;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    user-select: none;
    transition: bottom 0.4s;
}

.keyboard--hidden {
    display: none;
}

.keyboard__keys {
    text-align: center;
}

.keyboard__key {
    height: 32px;
    width: 8%;
    max-width: 32px;
    margin: 2px;
    border-radius: 8px;
    border: none;
    background: rgb(188, 253, 204);
    color: #000000;
    font-size: auto;
    outline: black;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: top;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    position: relative;
}

.keyboard__key--notfound {
    background: rgba(255, 255, 255, 0.12);
    color: #aaaaaa;
}

.keyboard__key--somewhere {
    background: rgb(255, 124, 0);
    color: #ffffff;
}

.keyboard__key--correct {
    background: rgb(0, 121, 193);
    color: #ffffff;
}

.keyboard__key:active {
    background: rgba(255, 255, 255, 0.12);
}

.keyboard__key--slightlywide {
    width: 10%;
    max-width: 60px;
    margin: 2px 2px;
}

.keyboard__key--fairlywide {
    width: 12%;
    max-width: 70px;
    margin: 2px 2px;
}

.keyboard__key--morewide {
    width: 14%;
    max-width: 80px;
    margin: 2px 2px;
}

.keyboard__key--wide {
    width: 14%;
    max-width: 90px;
}

.keyboard__key--extra-wide {
    width: 36%;
    max-width: 500px;
}

.keyboard__key--activatable::after {
    content: '';
    top: 10px;
    right: 10px;
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
}

.keyboard__key--active::after {
    background: #08ff00;
}

.keyboard__key--dark {
    background: rgba(0,0,0,0.25);
}