/**
 * This file is part of the iBobr - WordsSwitcher package
 *
 * (c) Ondřej Záruba <info@zaruba-ondrej.cz>
 *
 * For the full copyright and license information, please view the license.md
 * file that was distributed with this source code.
 */

.letter_switcher-buttons-container {
    margin-top: 25px;
}

.letter_switcher-button {
    background-color: #216895;
    border: 2px solid #1a4c6c;
    color: #ffffff;
    display: inline-block;
    text-decoration: none;
    width: 150px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    margin: 0 10px;
}

.letter_switcher-button:hover {
    color: #c6c8c9;
}

.letter_switcher-button:first-child {
    margin-left: 0;
}

.letter_switcher-letter-box {
    text-transform: uppercase;
    display: inline-block;
    border: 1px solid #316595;
    font-size: 28px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    margin: 4px;
    text-align: center;
    position: relative;
}

.letter_switcher-clickable {
    cursor: pointer;
}

.letter_switcher-letter-box.letter_switcher-first-letter {
    cursor: default;
}

.letter_switcher-letters-container {
    margin: 70px 0;
    position: relative;
}


.letter_switcher-red-box {
    left: -1px;
    top: -1px;
    position: absolute;
    width: 58px;
    height: 58px;
    border: 2px solid red;
    border-radius: 5px;
}

.letter_switcher-result {
    color: #0000f7;
    font-size: 20px;
}