.checkbox-line-switch {
  > span {
    font-size: 18px;
    font-family: Rubik;
    color: #939393;
    font-weight: 400;
    letter-spacing: 0%;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;

    > span {
      position: relative;
      width: 35px;
      height: 18px;
      display: inline-block;
      margin-right: 20px;
      border: 3px solid black;
      border-radius: 9px;
      vertical-align: middle;
    }
    > span:before {
      position: absolute;
      content: "";
      width: 10px;
      height: 10px;
      left: 2px;
      top: calc(50% - 5px);
      background-color: black;
      border-radius: 50%;
      transition: left 0.25s ease-in-out;
    }
  }
  input:checked + span > span:before {
    left: calc(100% - 10px - 2px);
  }
  input {
    display: none;
  }
}
.radio-circle {
  font-size: 20px;
  font-family: Rubik;
  color: #000000;
  font-weight: 400;
  letter-spacing: 0%;
  display: flex;
  flex-direction: row;
  cursor: pointer;
  align-items: center;

  input {
    + span {
      display: block;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      border: 2px solid black;
      background-color: white;
      position: relative;
    }
    + span:before {
      position: absolute;
      content: "";
      width: 14px;
      height: 14px;
      background-color: black;
      border-radius: 50%;
      top: calc(50% - 7px);
      left: calc(50% - 7px);
      display: none;
    }
  }
  input:checked + span:before {
    display: block;
  }
  input {
    display: none;
  }
  .right {
    margin-left: 15px;
    display: flex;
    flex-direction: column;

    .text {
    }
    .subtext {
      font-size: 10px;
      color: #939393;
    }
  }
}
.default-text,
.default-text p,
.default-text h2 {
  font-family: Rubik;
  font-size: 16px;
  font-weight: 400;
  color: black;
  line-height: 20px;

  h2 {
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 30px;
  }
}