@include export-module('cc-form-builder-user-form-layout') {
  .co-form-builder-user-form {

    .footer-wrapper {
      width: 100%;
      display: flex;
      flex-direction: row;

      align-items: center;
      padding: 10px 20px;

      .attachments-wrapper{
        width: 40%;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        gap: 1em;

        .row {
          display: flex;
          flex-direction: row;
          align-items: center;

          input:not(.is-mobile) {
            display: none;
          }
        }
      }
      .row{
        align-self: center;
        display: flex;
        flex-direction: row;
        gap: 1em;
        co-button {
          height: 40px;
          width: 40px;


          co-icon {
            height: 30px;
            width: 30px;
          }
        }
      }
    }

    .header-wrapper {
      .form-title {
        font-size: 18px;
        font-weight: bold;
      }
    }

    .headers-row {
      padding: 10px 20px;
    }
    .popup-card-title {
      padding: 10px 20px;
      background: $color-active-light;
      color: white;
      .header-wrapper {
        align-items: center !important;
      }
      .separator {
        border-color: white !important;
      }
      .header {
        font-size: 15px;
        font-weight: normal;
      }
      .sub-header {
        font-size: 18px;
        color: white !important;
        font-weight: bold !important;
      }
      button-select {
        icon {
          [fill] {
            fill: white;
          }
        }
      }
    }
    .main-content-wrapper {
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }

    .section-wrapper {
      overflow: auto;
      margin-bottom: 5px;
      height: 100%;
    }
    .form-rubric-header {
      font-weight: bold;
      padding-bottom: 10px;
    }
    .answer-wrapper {
      > * {
        margin-bottom: 2px;
      }
    }
    .button-wrapper {
      padding-top: 20px;
      padding-bottom: 20px;
      justify-content: center;
    }
    .disabled {
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      pointer-events: none;
      opacity: 0.5;
      > input {
        pointer-events: none;
      }
    }
    .goto-question {
      margin: -20px 0 0 15px;
      font-size: 12px;
      font-style: italic;
    }
  }

}
