
.AdNiceChooser {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    margin: 20px auto;
    overflow: hidden;
    width: 60%;
    padding: 3px;
}

.AdNiceChooser input {
    position: absolute !important;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    width: 1px;
    border: 0;
    overflow: hidden;
}

.AdNiceChooser label {
    /*width: 24%;*/
    background-color: #F2F2F2;
    font-size: 120%;
    /*line-height: 1;*/
    text-align: center;
    width: 70%;
    color: var(--text_color);
    padding: 20px;
    margin-right: -1px;
    margin-left: 0;
    border: 1px solid rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.1s ease-in-out;
}
.AdNiceChooser label:hover {
    cursor: pointer;
}
.AdNiceChooser input:checked + label {
    background-color: #7ba6d4;
    /*background-color: #e3f4ff;*/
    /*background-color: #a5dc86;*/
    box-shadow: none;
}
.AdNiceChooser label:first-of-type {
    border-radius: 0 4px 4px 0;
}
.AdNiceChooser label:last-of-type {
    border-radius: 4px 0 0 4px;
}
