.checkboxes {
    position: absolute;
    right: 0px;
    display: grid;
    /* flex-direction: row; */
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr auto;
    column-gap: 10px;
    justify-content: space-between;
    padding: 20px;
    box-sizing: border-box;
    width: 40%;
    font-family:'OpenSans-regular';
    font-size: 12px;
    background-color: white;
    border: 1px solid #ddd;
}

.switches {
  display: flex;
  flex-direction: row;
  grid-area: 2 / 1 / 3 / 4;
  justify-content: space-between;
}

.checkbox-group__container {
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
}

.checkbox__container, .other-inputs__container {
    display: flex;
    flex-direction: row;
    width: 100%;
    /* justify-content: space-around; */
    justify-content: space-between;
    align-items: center;
}

.checkbox-group__title, .other-inputs__title {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.checkbox__label {
    display: flex;
    flex-direction: row;
    align-items: center;
}
