.button-filled, .button-border, .button-border-red {
  background: #7EAF40;
  padding: 9px 30px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.2s ease-in-out;
  border-radius: 50px;
  border: 1px solid #7EAF40;
  cursor: pointer; }
  .button-filled:hover, .button-border:hover, .button-border-red:hover, .button-filled:focus, .button-border:focus, .button-border-red:focus {
    background: #638a32;
    color: #fff; }

.button-border, .button-border-red {
  background: transparent;
  color: #7EAF40;
  border: 1px solid #7EAF40;
  margin-right: 10px; }
  .button-border:hover, .button-border:focus {
    color: #fff; }

.button-border-red {
  color: #F00;
  border-color: #F00; }
  .button-border-red:hover, .button-border-red:focus {
    background: #F00;
    color: #fff; }

.tag-list {
  display: block;
  margin: 10px 0; }

.tag {
  display: inline-block;
  border: 1px solid #7EAF40;
  padding: 5px 10px;
  margin: 5px 5px 5px 0;
  border-radius: 4px;
  background: #7EAF40;
  color: #fff; }

.tags-header {
  margin-top: 30px; }

.form-actions {
  display: flex;
  justify-content: flex-end; }
  .form-actions-top {
    margin-bottom: 30px; }
  .form-actions-bottom {
    margin-top: 30px; }

.radioboxes {
  list-style: none;
  padding: 0; }
  .radioboxes label {
    display: inline-block;
    cursor: pointer;
    position: relative;
    padding-left: 28px;
    margin-right: 20px;
    margin-bottom: 0;
    line-height: 24px;
    font-size: 16px; }
    .radioboxes label span {
      color: #909090; }
    .radioboxes label:before {
      content: "";
      display: inline-block;
      width: 19px;
      height: 19px;
      margin-right: 10px;
      position: absolute;
      left: 0;
      top: 3px;
      background-color: #fff;
      border: 2px solid #d0d0d0;
      border-radius: 50%;
      box-sizing: border-box;
      transition: all 0.25s;
      font-family: FontAwesome;
      font-size: 10px;
      color: #fff;
      text-align: center;
      line-height: 16px; }
  .radioboxes input[type=radio] {
    display: none; }
    .radioboxes input[type=radio]:checked + label:before {
      content: "\f111";
      background-color: #7EAF40;
      border: 2px solid #7EAF40; }
  @media (max-width: 767px) {
    .radioboxes label {
      width: 100%; } }

.user-profile-container {
  max-width: 1000px;
  padding: 40px;
  border-radius: 4px;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.06); }

.user-profile-container,
.user-detail-container {
  position: relative;
  background-color: #fff;
  margin-bottom: 40px; }
  .user-profile-container .subheader,
  .user-detail-container .subheader {
    margin: 0 -40px;
    padding: 40px 40px;
    background: #FCFCFC;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea; }
    .user-profile-container .subheader h3,
    .user-detail-container .subheader h3 {
      margin: 0;
      font-weight: bold;
      color: #444; }
    @media (max-width: 768px) {
      .user-profile-container .subheader,
      .user-detail-container .subheader {
        margin: 0;
        padding: 20px 40px; } }
  .user-profile-container .row,
  .user-detail-container .row {
    margin-top: 30px;
    margin-bottom: 30px; }
  .user-profile-container .label-field,
  .user-detail-container .label-field {
    display: block;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px; }
  .user-profile-container .form-control,
  .user-detail-container .form-control {
    margin-bottom: 30px; }
  .user-profile-container .checkboxes,
  .user-profile-container .radioboxes,
  .user-detail-container .checkboxes,
  .user-detail-container .radioboxes {
    margin-bottom: 20px; }
  .user-profile-container .field-notes,
  .user-detail-container .field-notes {
    font-size: 14px;
    margin-bottom: 15px;
    display: block; }
  .user-profile-container .table input, .user-profile-container .table select, .user-profile-container .table textarea,
  .user-detail-container .table input,
  .user-detail-container .table select,
  .user-detail-container .table textarea {
    margin-bottom: 0; }
  .user-profile-container .table.table-striped > tbody > tr:nth-of-type(odd),
  .user-detail-container .table.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: #ebf4e1; }
  .user-profile-container .table thead td,
  .user-detail-container .table thead td {
    border-top: 0;
    font-size: 18px;
    padding: 15px 8px;
    font-weight: bold;
    border-bottom: 1px solid #dddddd; }
  @media (max-width: 768px) {
    .user-profile-container .table thead,
    .user-detail-container .table thead {
      display: none; } }
  .user-profile-container .table tr:first-child td,
  .user-detail-container .table tr:first-child td {
    border-top-color: transparent; }
  .user-profile-container .table tr td,
  .user-detail-container .table tr td {
    padding: 12px; }
    @media (max-width: 768px) {
      .user-profile-container .table tr td,
      .user-detail-container .table tr td {
        text-align: left;
        width: 100% !important; } }
    .user-profile-container .table tr td .field-notes,
    .user-detail-container .table tr td .field-notes {
      color: #aaa;
      margin-top: 5px;
      font-size: 12px; }
  .user-profile-container .table td:first-child,
  .user-detail-container .table td:first-child {
    vertical-align: middle !important;
    font-weight: bold; }

.user-detail-container {
  padding-top: 40px; }
  .user-detail-container .subheader {
    margin: 0 -40px;
    padding: 0 40px 20px;
    background: #fff;
    border-top: 0;
    border-bottom: 1px solid #eaeaea; }
    .user-detail-container .subheader h2 {
      color: #7EAF40;
      font-weight: bold; }
    @media (max-width: 768px) {
      .user-detail-container .subheader {
        margin: 0;
        padding: 10px 0; } }
  .user-detail-container .row {
    margin-top: 20px;
    margin-bottom: 30px; }
  .user-detail-container .embed-responsive {
    padding-top: 30px; }
  .user-detail-container .check-values {
    display: flex;
    padding-top: 20px; }
    @media (max-width: 768px) {
      .user-detail-container .check-values {
        flex-wrap: wrap; } }
    .user-detail-container .check-values .check-value {
      font-size: 14px;
      margin-right: 20px; }
      .user-detail-container .check-values .check-value i {
        color: #7EAF40;
        font-size: 18px; }
      .user-detail-container .check-values .check-value span {
        font-size: 18px; }

.small-modal-panel {
  z-index: 2005;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border: 0;
  margin: 0;
  transform: translateX(-50%) translateY(-50%);
  width: 30%;
  height: 70vh; }
  @media (max-width: 768px) {
    .small-modal-panel {
      width: 90%; } }
  .small-modal-panel h3 {
    margin-bottom: 30px; }

/*# sourceMappingURL=new.styles.css.map */
