.config-view {
  transform-origin: 50% 100px;
  background: #f9f9f9;
  padding: 20px;

  p.ftc-desc {
    color: #999;
  }
  p.ftc-name {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    text-transform: capitalize;
  }
  p.ftc-desc,
  p.ftc-name {
    margin: 2px 0;
  }

  .ftc-tips {
    color: #cccccc;
  }

  .headline1 {
    padding-top: 20px;
    margin: 0 20px;
    line-height: 80px;
    font-weight: 500;
    font-size: 32px;
    color: #222;
    align-items: center;
    justify-content: space-between;
    box-shadow: inset 0 -2px 0 0 #222;
    margin-bottom: 36px;
    height: 80px;
  }
  .headline2 {
    font-size: 16px;
    margin: 20px 0;
    padding: 15px 0;
    border-bottom: 1px solid #eeeeee;
  }
  .headline3 {
    font-size: 14px;
    padding: 10px 0;
    margin: 20px 0;
  }
  .headline1,
  .headline2,
  .headline3 {
    text-transform: capitalize;
  }

  .comp-groups .headline2 {
    margin: 0;
    border-bottom: none;
  }

  .comp-page {
    width: 100%;
    min-width: 1000px;
    background: #fff;
    transition: box-shadow 135ms 0ms cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 1px 0 rgba(66, 66, 66, 0.08),
      0 1px 3px 1px rgba(66, 66, 66, 0.16);
    transition: width 235ms 0ms cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px;
    display: inline-block;
  }
  .comp-container {
    display: inline-grid;
    gap: 20px 40px;

    .y-row {
      align-self: flex-start;
      justify-self: right;
      width: 100%;
      text-align: right;
      padding-bottom: 5px;
      border-bottom: 1px solid #eee;
      color: #999999;
      text-transform: capitalize;
      transform: translateX(-40px);
    }
  }
  .radio-group {
    border-bottom: 1px solid #eee;
    border-top: 1px solid #eee;

    & > label {
      margin-right: 20px;
      padding: 10px 0;
    }

    .radio-items {
      flex: 1;
      display: inline-flex;
    }

    .radio-item {
      padding: 10px 0;
      margin-right: 20px;
      cursor: pointer;

      & > * {
        cursor: pointer;
      }

      .radio-item-input {
        height: 13px;
        width: 13px;
        border-radius: 50%;
        display: inline-block;
        border: 1px solid #c1c1c1;
        position: relative;
        vertical-align: baseline;
      }

      &.radio-item-checked .radio-item-input {
        border-color: #0076ff;

        &::after {
          content: "";
          display: inline-block;
          position: absolute;
          top: 2px;
          bottom: 2px;
          left: 2px;
          right: 2px;
          background: #0076ff;
          border-radius: 50%;
        }
      }

      input[type="radio"] {
        opacity: 0 !important;
        margin: 0;
        width: 100%;
        height: 100%;
        display: block;
      }

      label {
        vertical-align: text-bottom;
        display: inline-block;
        padding: 0 6px;
      }
    }
  }

  .simple-content,
  .comp-groups {
    padding: 40px;
  }

  .item-row {
    display: flex;
    margin-bottom: 48px;

    .row-desc {
      width: 100px;
      padding: 0 30px;
      text-align: right;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
  }

  .comp-groups.inverse {
    background: #222222;

    .headline1 {
      border-bottom: 1px solid #3c3c3c;
    }
    .headline2,
    .headline3 {
      color: #fff;
    }
    .radio-group {
      border-bottom: 1px solid #3c3c3c;
      border-top: 1px solid #3c3c3c;
    }
    .radio-items {
      color: #a0a0a0;
    }
  }
}
