/* Customize the label (the container) */
.checkbox-container {
    display: block;
    position: relative;
    /*padding-left: 35px;*/
    margin: 12px;
    /*margin-bottom: 24px;*/
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    border-radius: 50%;
    height: 40px;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 40px;
    width: 40px;
    /* background-color: #eee; */
    border-radius: 50%;
    border: 1px solid #000;
}

/* On mouse-over, add a grey background color */
/* .container:hover input~.checkmark {
    background-color: #ccc;
} */

/* When the checkbox is checked, add a background */
.checkbox-container input:checked~.checkmark {
    background-color: #000000;
}

.wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    width: 115px;

}

.global-container {
    display: flex;
    justify-content: center;
}

.braille-symbol {
    margin: 10px;
}

.result {
    width: 119px;
    border: solid 1px black;
    /* border-radius: 4px; */
    padding: 2px;
    /* height: 3.6em; */
    /* background-color: #eee; */
    background-color: white;
    cursor: pointer;
}

.result>p {
    margin: 0px;
    padding: 5px;
}

.button {
    cursor: pointer;
    width: 125px;
    height: 30px;
    margin-top: 5px;
    display: block;
    background-color: white;
    border-color: black;
}

.result-braille-symbol {
    width: 20px;
    display: inline-block;
}

.total-result {
    background-color: #eee;
    width: 90%;
    border: solid 1px;
    border-radius: 4px;
    padding: 5px;
    height: 1.8em;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 30px 1fr 30px;
}

#total_result_content {
    margin: 10px;
    margin-top: auto;
    margin-bottom: auto;

}

.button-icon {
    cursor: pointer;
    height: 30px;
    width: 30px;
    display: block;
    background-color: white;
    border-color: black;
    float: right;
    margin: 0px 2px;
}