.ops-form {
    .ops-form-group {
        margin-bottom: 25px;
    }

    label {
        color: $color__ops-black;
        display: block;
        margin-bottom: .5rem;
    }

    .ops-input-group {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        width: 100%;

        > .ops-form-control, > .ops-form-select {
            position: relative;
            flex: 1 1 auto;
            width: 1%;
            min-width: 0;
        }

        .ops-input-group-text {
            display: flex;
            align-items: center;
            padding: .375rem .75rem;
            font-size: 1rem;
            font-weight: 400;
            line-height: 1.5;
            color: #212529;
            text-align: center;
            white-space: nowrap;
            background-color: #e9ecef;
            border: 1px solid #ced4da;
            border-radius: .25rem;
        }
    }

    .ops-form-control {
        width: 100%;
        display: block;
        border: 1px solid $color__ops-borderLight;
        border-radius: 5px;
        line-height: 100%;
        font-size: 16px;
        box-sizing: border-box !important;
        margin-bottom: 20px !important;
        padding: 1rem 1.5rem !important;
        background-clip: padding-box;
        height: auto;

        &:focus {
            box-shadow: none;
            border-color: initial;
        }

        &:last-child {
            margin-bottom: 0;
        }

        &::placeholder {
            opacity: 0.4;
        }

        &.ops-form-control-facebook-select {
          max-width: 100%;
          line-height: 1.5;
        }

        &.ops-has-error {
          border: 1px solid $color__ops-red;
        }
    }

    .ops-form-error {
      color: $color__ops_red;
      font-size: 12px;
      margin-top: -20px;
      margin-bottom: 20px;
    }

    button {
        &:focus {
            box-shadow: none;
            border-color: initial;
            outline: none;
        }
    }

    .ops-form-control[type="file"]:not(:disabled):not([readonly]) {
        cursor: pointer;
    }

    .ops-form-control[type="file"] {
        overflow: hidden;
    }
}

@import "elements/form/onoffswitch";
@import "elements/form/toggleswitch";
@import "elements/form/content-layout";
@import "elements/form";

/*
.ops-form {


  select {
    border: 1px solid $color__ops-borderLight;
    &:focus {
      box-shadow: none;
      border-color: initial;
    }
  }

  button {
    &:focus {
      box-shadow: none;
      border-color: initial;
      outline: none;
    }
  }

  button[type="submit"] {
    margin-top: 15px;
  }

  @import "form/onoffswitch";
}

 */
