﻿.checkbox-button {
    display: grid;
    grid-template-columns: 40px 1fr;
    width: 200px;
    height: 40px;
    margin: 4px;
    border-radius: 20px;
    overflow: hidden;
    background-color: #b3b3b3;
    color: #fff;
    cursor: pointer;
}
    .checkbox-button:hover {
        background-color: #b3b3b3AA;
    }
    .checkbox-button div:first-child {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .checkbox-button div:last-child {
        display: flex;
        justify-content: start;
        align-items: center;
    }
