.platform-checkbox-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.4rem;
}

.platform-checkbox-options.is-vertical {
    grid-template-columns: minmax(0, 1fr);
}

.platform-checkbox-option {
    position: relative;
}

.platform-checkbox-input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.platform-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 38px;
    padding: 8px 12px;
    color: #b0b0b0;
    background: #202029;
    border: 1px solid #3a3a45;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
}

.platform-checkbox-mark {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    border: 1px solid #666674;
    border-radius: 4px;
}

.platform-checkbox-icon {
    width: 20px;
    height: 20px;
    display: block;
    object-fit: contain;
}

.platform-checkbox-input:checked + .platform-checkbox-label {
    color: #fff;
    background: rgba(0, 242, 254, 0.12);
    border-color: #00f2fe;
}

.platform-checkbox-input:checked + .platform-checkbox-label .platform-checkbox-mark {
    background: #00f2fe;
    border-color: #00f2fe;
    box-shadow: inset 0 0 0 4px #202029;
}

.platform-checkbox-input:focus-visible + .platform-checkbox-label {
    outline: 2px solid #00f2fe;
    outline-offset: 2px;
}

.platform-checkbox-label:hover {
    color: #fff;
    border-color: #00f2fe;
}
