/* CSS */
.choices {
    border-radius: 4px;
    border-style: none;
    box-sizing: border-box;
    color: #000000;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
    outline: none;
    overflow: hidden;
    padding: 9px 20px 8px;
    position: absolute;
    text-align: center;
    text-transform: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: 100px;
    background-color: aliceblue;
    top: 1%;
    left: 1%;
}

.choices:hover,
.choices:focus {
    transform: scale(1.05);
    transition: transform 0.2s ease-in-out;
    z-index: 1000;
}