﻿
.form-control-cell label, .picklist-cell label,.boolean-radio-cell label, .checkbox-cell label{
font-size: 1.2rem;
font-weight: normal;
}
.form-control {
  display: block;
  width: 100%;
  height: calc(2.25rem + 2px);
  padding: 0.375rem 0;
  font-size: 1.4rem;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: transparent;
  background-clip: padding-box;
  border: 1px solid #eceff1;
  border-radius: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
.form-control:before{
content: "";
position:absolute;
pointer-events: none;
z-index: 1;
right: 0;
bottom: 5px;
width: 0;
height: 0;
border-style: solid;
border-width: 0 0 8px 8px;
border-color: transparent transparent #d1d1d1;
}

  @media screen and (prefers-reduced-motion: reduce) {
    .form-control {
      transition: none; } }
  .form-control::-ms-expand {
    background-color: transparent;
    border: 0; }
  .form-control:focus {
    color: #495057;
    background-color: transparent;
    border-color: #eceff1;
    outline: 0;
    box-shadow: none; }
  .form-control::-webkit-input-placeholder {
    color: #868e96;
    opacity: 1; }
  .form-control:-ms-input-placeholder {
    color: #868e96;
    opacity: 1; }
  .form-control::placeholder {
    color: #868e96;
    opacity: 1; }
  .form-control:disabled, .form-control[readonly] {
    background-color: transparent;
    opacity: 1; }

select.form-control:focus::-ms-value {
  color: #495057;
  background-color: transparent; }

.form-control-file,
.form-control-range {
  display: block;
  width: 100%; }

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5; }

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
  line-height: 1.5; }

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
  line-height: 1.5; }

.form-control-plaintext {
  display: block;
  width: 100%;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  margin-bottom: 0;
  line-height: 1.5;
  color: #747a80;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0; }
  .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
    padding-right: 0;
    padding-left: 0; }

.form-control-sm {
  height: calc(1.8125rem + 2px);
  padding: 0.25rem 0;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0; }

.form-control-lg {
  height: calc(2.875rem + 2px);
  padding: 0.5rem 0;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0; }

select.form-control[size], select.form-control[multiple] {
  height: auto; }

textarea.form-control {
  height: auto; }

.form-group {
  margin-bottom: 2rem; }

.form-text {
  display: block;
  margin-top: 0.25rem; }

.form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px; }
  .form-row > .col,
  .form-row > [class*="col-"] {
    padding-right: 5px;
    padding-left: 5px; }

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem; }

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem; }
  .form-check-input:disabled ~ .form-check-label {
    color: #9c9c9c; }

.form-check-label {
  margin-bottom: 0; }

.form-check-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 0;
  margin-right: 0.75rem; }
  .form-check-inline .form-check-input {
    position: static;
    margin-top: 0;
    margin-right: 0.3125rem;
    margin-left: 0; }

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #32c787; }

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.7rem 1.1rem;
  margin-top: .1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #FFFFFF;
  background-color: #32c787;
  border-radius: 2px; }

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #32c787;
  padding-right: 2.25rem;
  background-repeat: no-repeat;
  background-position: center right calc(2.25rem / 4);
  background-size: calc(2.25rem / 2) calc(2.25rem / 2);
  background-image: url(../img/forms/form-validation-valid.svg); }
  .was-validated .form-control:valid:focus, .form-control.is-valid:focus {
    border-color: #32c787;
    box-shadow: 0 0 0 0.2rem rgba(50, 199, 135, 0.25); }
  .was-validated .form-control:valid ~ .valid-feedback,
  .was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback,
  .form-control.is-valid ~ .valid-tooltip {
    display: block; }

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: 2.25rem;
  background-position: top calc(2.25rem / 4) right calc(2.25rem / 4); }

.was-validated .custom-select:valid, .custom-select.is-valid {
  border-color: #32c787;
  padding-right: 3.4375rem;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url(../img/forms/form-validation-valid.svg) no-repeat center right 1.75rem/1.125rem 1.125rem; }
  .was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
    border-color: #32c787;
    box-shadow: 0 0 0 0.2rem rgba(50, 199, 135, 0.25); }
  .was-validated .custom-select:valid ~ .valid-feedback,
  .was-validated .custom-select:valid ~ .valid-tooltip, .custom-select.is-valid ~ .valid-feedback,
  .custom-select.is-valid ~ .valid-tooltip {
    display: block; }

.was-validated .form-control-file:valid ~ .valid-feedback,
.was-validated .form-control-file:valid ~ .valid-tooltip, .form-control-file.is-valid ~ .valid-feedback,
.form-control-file.is-valid ~ .valid-tooltip {
  display: block; }

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #32c787; }

.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
  display: block; }

.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  color: #32c787; }
  .was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
    border-color: #32c787; }

.was-validated .custom-control-input:valid ~ .valid-feedback,
.was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback,
.custom-control-input.is-valid ~ .valid-tooltip {
  display: block; }

.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  border-color: #57d59f;
  background-color: #57d59f; }

.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(50, 199, 135, 0.25); }

.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #32c787; }

.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #32c787; }

.was-validated .custom-file-input:valid ~ .valid-feedback,
.was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback,
.custom-file-input.is-valid ~ .valid-tooltip {
  display: block; }

.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
  border-color: #32c787;
  box-shadow: 0 0 0 0.2rem rgba(50, 199, 135, 0.25); }

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #ff6b68; }

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.7rem 1.1rem;
  margin-top: .1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #FFFFFF;
  background-color: #ff6b68;
  border-radius: 2px; }

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #ff6b68;
  padding-right: 2.25rem;
  background-repeat: no-repeat;
  background-position: center right calc(2.25rem / 4);
  background-size: calc(2.25rem / 2) calc(2.25rem / 2);
  background-image: url(../img/forms/form-validation-invalid.svg); }
  .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
    border-color: #ff6b68;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 104, 0.25); }
  .was-validated .form-control:invalid ~ .invalid-feedback,
  .was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback,
  .form-control.is-invalid ~ .invalid-tooltip {
    display: block; }

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: 2.25rem;
  background-position: top calc(2.25rem / 4) right calc(2.25rem / 4); }

.was-validated .custom-select:invalid, .custom-select.is-invalid {
  border-color: #ff6b68;
  padding-right: 3.4375rem;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url(../img/forms/form-validation-invalid.svg) no-repeat center right 1.75rem/1.125rem 1.125rem; }
  .was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
    border-color: #ff6b68;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 104, 0.25); }
  .was-validated .custom-select:invalid ~ .invalid-feedback,
  .was-validated .custom-select:invalid ~ .invalid-tooltip, .custom-select.is-invalid ~ .invalid-feedback,
  .custom-select.is-invalid ~ .invalid-tooltip {
    display: block; }

.was-validated .form-control-file:invalid ~ .invalid-feedback,
.was-validated .form-control-file:invalid ~ .invalid-tooltip, .form-control-file.is-invalid ~ .invalid-feedback,
.form-control-file.is-invalid ~ .invalid-tooltip {
  display: block; }

.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #ff6b68; }

.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block; }

.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
  color: #ff6b68; }
  .was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
    border-color: #ff6b68; }

.was-validated .custom-control-input:invalid ~ .invalid-feedback,
.was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback,
.custom-control-input.is-invalid ~ .invalid-tooltip {
  display: block; }

.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  border-color: #ff9d9b;
  background-color: #ff9d9b; }

.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 104, 0.25); }

.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #ff6b68; }

.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #ff6b68; }

.was-validated .custom-file-input:invalid ~ .invalid-feedback,
.was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback,
.custom-file-input.is-invalid ~ .invalid-tooltip {
  display: block; }

.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
  border-color: #ff6b68;
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 104, 0.25); }

.form-inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .form-inline .form-check {
    width: 100%; }
  @media (min-width: 576px) {
    .form-inline label {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      margin-bottom: 0; }
    .form-inline .form-group {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-flow: row wrap;
              flex-flow: row wrap;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      margin-bottom: 0; }
    .form-inline .form-control {
      display: inline-block;
      width: auto;
      vertical-align: middle; }
    .form-inline .form-control-plaintext {
      display: inline-block; }
    .form-inline .input-group,
    .form-inline .custom-select {
      width: auto; }
    .form-inline .form-check {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      width: auto;
      padding-left: 0; }
    .form-inline .form-check-input {
      position: relative;
      margin-top: 0;
      margin-right: 0.25rem;
      margin-left: 0; }
    .form-inline .custom-control {
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
    .form-inline .custom-control-label {
      margin-bottom: 0; } }

      .input-group {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-align: stretch;
            -ms-flex-align: stretch;
                align-items: stretch;
        width: 100%; }
        .input-group > .form-control,
        .input-group > .form-control-plaintext,
        .input-group > .custom-select,
        .input-group > .custom-file {
          position: relative;
          -webkit-box-flex: 1;
              -ms-flex: 1 1 auto;
                  flex: 1 1 auto;
          width: 1%;
          margin-bottom: 0; }
          .input-group > .form-control + .form-control,
          .input-group > .form-control + .custom-select,
          .input-group > .form-control + .custom-file,
          .input-group > .form-control-plaintext + .form-control,
          .input-group > .form-control-plaintext + .custom-select,
          .input-group > .form-control-plaintext + .custom-file,
          .input-group > .custom-select + .form-control,
          .input-group > .custom-select + .custom-select,
          .input-group > .custom-select + .custom-file,
          .input-group > .custom-file + .form-control,
          .input-group > .custom-file + .custom-select,
          .input-group > .custom-file + .custom-file {
            margin-left: -1px; }
        .input-group > .form-control:focus,
        .input-group > .custom-select:focus,
        .input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
          z-index: 3; }
        .input-group > .custom-file .custom-file-input:focus {
          z-index: 4; }
        .input-group > .form-control:not(:last-child),
        .input-group > .custom-select:not(:last-child) {
          border-top-right-radius: 0;
          border-bottom-right-radius: 0; }
        .input-group > .form-control:not(:first-child),
        .input-group > .custom-select:not(:first-child) {
          border-top-left-radius: 0;
          border-bottom-left-radius: 0; }
        .input-group > .custom-file {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center; }
          .input-group > .custom-file:not(:last-child) .custom-file-label,
          .input-group > .custom-file:not(:last-child) .custom-file-label::after {
            border-top-right-radius: 0;
            border-bottom-right-radius: 0; }
          .input-group > .custom-file:not(:first-child) .custom-file-label {
            border-top-left-radius: 0;
            border-bottom-left-radius: 0; }
      
      .input-group-prepend,
      .input-group-append {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
        .input-group-prepend .btn,
        .input-group-append .btn {
          position: relative;
          z-index: 2; }
          .input-group-prepend .btn:focus,
          .input-group-append .btn:focus {
            z-index: 3; }
        .input-group-prepend .btn + .btn,
        .input-group-prepend .btn + .input-group-text,
        .input-group-prepend .input-group-text + .input-group-text,
        .input-group-prepend .input-group-text + .btn,
        .input-group-append .btn + .btn,
        .input-group-append .btn + .input-group-text,
        .input-group-append .input-group-text + .input-group-text,
        .input-group-append .input-group-text + .btn {
          margin-left: -1px; }
      
      .input-group-prepend {
        margin-right: -1px; }
      
      .input-group-append {
        margin-left: -1px; }
      
      .input-group-text {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        padding: 0.375rem 0;
        margin-bottom: 0;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        color: #495057;
        text-align: center;
        white-space: nowrap;
        background-color: #FFFFFF;
        border: 1px solid #eceff1;
        border-radius: 0; }
        .input-group-text input[type="radio"],
        .input-group-text input[type="checkbox"] {
          margin-top: 0; }
      
      .input-group-lg > .form-control:not(textarea),
      .input-group-lg > .custom-select {
        height: calc(2.875rem + 2px); }
      
      .input-group-lg > .form-control,
      .input-group-lg > .custom-select,
      .input-group-lg > .input-group-prepend > .input-group-text,
      .input-group-lg > .input-group-append > .input-group-text,
      .input-group-lg > .input-group-prepend > .btn,
      .input-group-lg > .input-group-append > .btn {
        padding: 0.5rem 0;
        font-size: 1.25rem;
        line-height: 1.5;
        border-radius: 0; }
      
      .input-group-sm > .form-control:not(textarea),
      .input-group-sm > .custom-select {
        height: calc(1.8125rem + 2px); }
      
      .input-group-sm > .form-control,
      .input-group-sm > .custom-select,
      .input-group-sm > .input-group-prepend > .input-group-text,
      .input-group-sm > .input-group-append > .input-group-text,
      .input-group-sm > .input-group-prepend > .btn,
      .input-group-sm > .input-group-append > .btn {
        padding: 0.25rem 0;
        font-size: 0.875rem;
        line-height: 1.5;
        border-radius: 0; }
      
      .input-group-lg > .custom-select,
      .input-group-sm > .custom-select {
        padding-right: 1.75rem; }
      
      .input-group > .input-group-prepend > .btn,
      .input-group > .input-group-prepend > .input-group-text,
      .input-group > .input-group-append:not(:last-child) > .btn,
      .input-group > .input-group-append:not(:last-child) > .input-group-text,
      .input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
      .input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0; }
      
      .input-group > .input-group-append > .btn,
      .input-group > .input-group-append > .input-group-text,
      .input-group > .input-group-prepend:not(:first-child) > .btn,
      .input-group > .input-group-prepend:not(:first-child) > .input-group-text,
      .input-group > .input-group-prepend:first-child > .btn:not(:first-child),
      .input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0; }

.form-control {
    border-left: 0 !important;
    border-right: 0 !important;
    border-top: 0 !important;
    border-color: rgb(105, 105, 105) !important;
    resize: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -ms-overflow-style: none;
}
            .form-control:not(:disabled):not([readonly]):focus ~ .form-group__bar:before, .form-control:not(:disabled):not([readonly]):focus ~ .form-group__bar:after {
              width: 50%; }
            .form-control:disabled, .form-control[readonly] {
              opacity: 0.6; }
            .form-control.is-valid:focus, .form-control.is-invalid:focus {
              box-shadow: none; }
          
          .form-group {
            position: relative; }
          
          .form-group__bar {
            position: absolute;
            left: 0;
            bottom: 0;
            z-index: 3;
            width: 100%; }
            .form-group__bar:before, .form-group__bar:after {
              content: '';
              position: absolute;
              height: 2px;
              width: 0;
              bottom: 0;
              transition: all 350ms;
              transition-timing-function: ease;
              background-color: #03A9F4; }
              @media screen and (prefers-reduced-motion: reduce) {
                .form-group__bar:before, .form-group__bar:after {
                  transition: none; } }
            .form-group__bar:before {
              left: 50%; }
            .form-group__bar:after {
              right: 50%; }
          
          select::-ms-expand {
            display: none; }
          
          .picklist-cell .control:before {
            content: "";
            position: absolute;
            pointer-events: none;
            z-index: 1;
            right: 0;
            bottom: 5px;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 0 0 8px 8px;
            border-color: transparent transparent #d1d1d1 transparent; }

	.picklist-cell .control{
		position: relative;
}
          
          select.form-control {
            padding-bottom: 0;
            padding-top: 0; 
            float:none !important;}
          
          .form-group--float {
            margin-top: 2.5rem; }
            .form-group--float .form-control:focus ~ label,
            .form-group--float .form-control.form-control--active ~ label {
              bottom: 2.25rem;
              font-size: 0.875rem; }
            .form-group--float .form-control ~ label {
              font-size: 1rem;
              bottom: 0.375rem;
              width: 100%; }
            .form-group--float .form-control:focus ~ label {
              color: #03A9F4; }
            .form-group--float .form-control-sm:focus ~ label,
            .form-group--float .form-control-sm.form-control--active ~ label {
              bottom: 1.75rem;
              font-size: 0.775rem; }
            .form-group--float .form-control-sm ~ label {
              font-size: 0.875rem;
              bottom: 0.5rem; }
            .form-group--float .form-control-lg:focus ~ label,
            .form-group--float .form-control-lg.form-control--active ~ label {
              bottom: 2.65rem;
              font-size: 1rem; }
            .form-group--float .form-control-lg ~ label {
              font-size: 1.25rem;
              bottom: 0.5rem; }
            .form-group--float > label {
              color: #868e96;
              pointer-events: none;
              left: 0;
              position: absolute;
              margin: 0;
              transition: bottom 200ms ease-out, color 200ms ease-out, font-size 200ms ease-out, color 300ms; }
          
          .form-group--centered,
          .form-group--centered .form-control {
            text-align: center; }
          
          .invalid-feedback,
          .valid-feedback {
            position: absolute;
            left: 0;
            bottom: -1.5rem; }
          
          .is-valid ~ .form-group__bar:before, .is-valid ~ .form-group__bar:after {
            background-color: #32c787; }
          
          .is-invalid ~ .form-group__bar:before, .is-invalid ~ .form-group__bar:after {
            background-color: #ff6b68; }
          
          .valid-tooltip,
          .invalid-tooltip {
            margin-top: 0;
            border-radius: 0;
            padding: 0.25rem 0.5rem 0.35rem; }
          
          .icon-toggle {
            position: relative;
            width: 2.5rem;
            height: 2.5rem;
            cursor: pointer;
            display: -webkit-inline-box;
            display: -ms-inline-flexbox;
            display: inline-flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            -webkit-box-pack: center;
                -ms-flex-pack: center;
                    justify-content: center; }
            .icon-toggle .zmdi {
              z-index: 2;
              font-size: 1.5rem;
              color: #ced4da;
              transition: color 300ms; }
            .icon-toggle input[type="checkbox"] {
              position: absolute;
              z-index: 3;
              top: 0;
              left: 0;
              height: 100%;
              width: 100%;
              cursor: pointer;
              opacity: 0; }
              .icon-toggle input[type="checkbox"]:checked ~ .zmdi {
                color: #39bbb0; }
            .icon-toggle:hover .zmdi {
              color: #adb5bd; }
          
          .icon-toggle--red input[type="checkbox"]:checked ~ .zmdi {
            color: #ff6b68; }
          
          .icon-toggle--blue input[type="checkbox"]:checked ~ .zmdi {
            color: #2196F3; }
          
          .icon-toggle--green input[type="checkbox"]:checked ~ .zmdi {
            color: #32c787; }
          
          .icon-toggle--amber input[type="checkbox"]:checked ~ .zmdi {
            color: #ffc721; }
          
          .icon-toggle--blue-grey input[type="checkbox"]:checked ~ .zmdi {
            color: #607D8B; }
          
          .input-group {
            margin-bottom: 2rem; }
            .input-group .form-control {
              padding-right: 1rem;
              padding-left: 1rem; }
          
          .input-group-text {
            padding-right: 1rem !important;
            padding-left: 1rem !important;
            line-height: 100%; }
            .input-group-text > .zmdi {
              position: relative;
              top: 1px; }
          
          .checkbox,
          .radio {
            position: relative;
            line-height: 1.5rem; }
            .checkbox + .checkbox,
            .checkbox + .radio,
            .radio + .checkbox,
            .radio + .radio {
              margin-top: 0.5rem; }
            .checkbox:not(.checkbox--inline):not(
            .radio--inline):not(.checkbox--inline):not(
            .radio--inline),
            .radio:not(.checkbox--inline):not(
            .radio--inline):not(.checkbox--inline):not(
            .radio--inline) {
              display: block; }
            .checkbox--inline,
            .radio--inline {
              display: inline-block; }
              .checkbox--inline:not(:last-child),
              .radio--inline:not(:last-child) {
                margin-right: 2rem; }
            .checkbox > input[type=checkbox],
            .checkbox > input[type=radio],
            .radio > input[type=checkbox],
            .radio > input[type=radio] {
              position: absolute;
              left: 0;
              top: 0;
              opacity: 0;
              pointer-events: none; }
              .checkbox > input[type=checkbox]:checked ~ .checkbox__label:before,
              .checkbox > input[type=radio]:checked ~ .checkbox__label:before,
              .radio > input[type=checkbox]:checked ~ .checkbox__label:before,
              .radio > input[type=radio]:checked ~ .checkbox__label:before {
                background-color: #39bbb0; }
              .checkbox > input[type=checkbox]:checked ~ .checkbox__label:before,
              .checkbox > input[type=checkbox]:checked ~ .radio__label:before,
              .checkbox > input[type=radio]:checked ~ .checkbox__label:before,
              .checkbox > input[type=radio]:checked ~ .radio__label:before,
              .radio > input[type=checkbox]:checked ~ .checkbox__label:before,
              .radio > input[type=checkbox]:checked ~ .radio__label:before,
              .radio > input[type=radio]:checked ~ .checkbox__label:before,
              .radio > input[type=radio]:checked ~ .radio__label:before {
                border-color: #39bbb0; }
              .checkbox > input[type=checkbox]:checked ~ .checkbox__label:after,
              .checkbox > input[type=checkbox]:checked ~ .radio__label:after,
              .checkbox > input[type=radio]:checked ~ .checkbox__label:after,
              .checkbox > input[type=radio]:checked ~ .radio__label:after,
              .radio > input[type=checkbox]:checked ~ .checkbox__label:after,
              .radio > input[type=checkbox]:checked ~ .radio__label:after,
              .radio > input[type=radio]:checked ~ .checkbox__label:after,
              .radio > input[type=radio]:checked ~ .radio__label:after {
                -webkit-transform: scale(1);
                        transform: scale(1);
                opacity: 1; }
              .checkbox > input[type=checkbox]:disabled ~ .checkbox__label,
              .checkbox > input[type=checkbox]:disabled ~ .radio__label,
              .checkbox > input[type=radio]:disabled ~ .checkbox__label,
              .checkbox > input[type=radio]:disabled ~ .radio__label,
              .radio > input[type=checkbox]:disabled ~ .checkbox__label,
              .radio > input[type=checkbox]:disabled ~ .radio__label,
              .radio > input[type=radio]:disabled ~ .checkbox__label,
              .radio > input[type=radio]:disabled ~ .radio__label {
                opacity: 0.5;
                -webkit-user-select: none;
                -moz-user-select: none;
                -ms-user-select: none;
                user-select: none; }
          
          .checkbox__label,
          .radio__label {
            position: relative;
            min-width: 18px;
            min-height: 18px;
            padding-left: 27px;
            text-align: left;
            margin: 0; }
            .checkbox__label:before, .checkbox__label:after,
            .radio__label:before,
            .radio__label:after {
              width: 18px;
              height: 18px;
              position: absolute;
              left: 0;
              top: 0; }
            .checkbox__label:before,
            .radio__label:before {
              content: '';
              border: 2px solid "#6e6e6e";
              background-color: transparent;
              transition: border-color 200ms, background-color 200ms; }
            .checkbox__label:after,
            .radio__label:after {
              opacity: 0;
              -webkit-transform: scale(0);
                      transform: scale(0);
              transition: opacity 150ms, -webkit-transform 150ms;
              transition: transform 150ms, opacity 150ms;
              transition: transform 150ms, opacity 150ms, -webkit-transform 150ms; }
          
          .checkbox__label:before {
            border-radius: 2px; }
          
          .checkbox__label:after {
            font-family: "Material-Design-Iconic-Font";
            content: "";
            font-size: 1.25rem;
            text-align: center;
            color: #FFFFFF;
            line-height: 18px; }
          
          .radio__label:before {
            border-radius: 50%; }
          
          .radio__label:after {
            content: '';
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: #39bbb0;
            top: 5px;
            left: 5px; }
          
          .checkbox--char > input[type=checkbox]:checked ~ .checkbox__char {
            font-size: 0;
            background-color: #adb5bd !important; }
            .checkbox--char > input[type=checkbox]:checked ~ .checkbox__char:after {
              -webkit-transform: scale3d(1, 1, 1);
                      transform: scale3d(1, 1, 1);
              opacity: 1; }
          
          .checkbox--char > input[type=checkbox]:not(:checked) ~ .checkbox__char:hover {
            font-size: 0; }
            .checkbox--char > input[type=checkbox]:not(:checked) ~ .checkbox__char:hover:before {
              -webkit-transform: scale3d(1, 1, 1);
                      transform: scale3d(1, 1, 1);
              opacity: 1; }
          
          .checkbox__char {
            border-radius: 50%;
            position: relative;
            height: 40px;
            width: 40px;
            color: #FFFFFF;
            display: -webkit-inline-box;
            display: -ms-inline-flexbox;
            display: inline-flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            -webkit-box-pack: center;
                -ms-flex-pack: center;
                    justify-content: center;
            font-size: 1.25rem;
            text-transform: uppercase;
            font-weight: 500;
            cursor: pointer;
            font-style: normal;
            transition: font-size 200ms ease, background-color 300ms; }
            .checkbox__char:before, .checkbox__char:after {
              position: absolute;
              left: 0;
              top: 0;
              width: 100%;
              height: 100%;
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-align: center;
                  -ms-flex-align: center;
                      align-items: center;
              -webkit-box-pack: center;
                  -ms-flex-pack: center;
                      justify-content: center;
              opacity: 0;
              transition: opacity 300ms ease, -webkit-transform 300ms ease;
              transition: transform 300ms ease, opacity 300ms ease;
              transition: transform 300ms ease, opacity 300ms ease, -webkit-transform 300ms ease;
              font-weight: normal; }
            .checkbox__char:before {
              font-family: "Material-Design-Iconic-Font";
              content: "";
              font-size: 1.35rem; }
            .checkbox__char:after {
              font-family: "Material-Design-Iconic-Font";
              content: "";
              font-size: 1.5rem;
              -webkit-transform: scale3d(0, 0, 0);
                      transform: scale3d(0, 0, 0); }
.form-control:focus{
border: 1px solid #a7e1ea;
border-left: 0;
border-right: 0;
border-top: 0;
}

.checkbox {
  display: inline-block;
  height: 34px;
  position: relative;
  width: 60px;
}

.checkbox input {
  display:none;
}

.slider {
  background-color: #ccc;
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: .4s;
}

.slider:before {
  background-color: #fff;
  bottom: 4px;
  content: "";
  height: 26px;
  left: 4px;
  position: absolute;
  transition: .4s;
  width: 26px;
}

input:checked + .slider {
  background-color: #66bb6a;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.datetimepicker input, .lookup input{
width: unset !important;
margin-top: 8px;
}

.datetimepicker .input-group-addon:last-child, .lookup .launchentitylookup{
width:34px;
height:33px;
border: none;
border-radius: 0;
background-color:white;
}

.lookup .launchentitylookup{
margin-left: -35px !important;
z-index: 5 !important;
}

.lookup .btn-default{
border: 0;
}

.control .input-group .form-control.lookup{
max-width:80%;
}

.lookup .text-muted{
display: none;
}

.crmEntityFormView .cell.checkbox-cell:first-child{
padding-bottom:4px;
}

/*subgrid design*/
.toolbar-actions .btn-primary{
  padding: 6px 12px;
  
}

.view-grid thead{
  background-color: #337ab7;
}

.view-grid .action button{
padding: 0;
}

.table-striped tr td a{
color: #337ab7;
}

/*override default btn on entity forms to match btn-blue*/
.entity-form .btn.btn-default.previous{
    border-radius: 1px;
    font-size: 14px;
    letter-spacing: .35px;
    font-family: "NewsGothicBT-Light", Helvetica, Arial, sans-serif;
    border: 0;
    cursor: pointer;
    display: inline-block;
    margin: 0 auto;
    text-align: center;
    text-transform: uppercase;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    background-color: #0074b3;
    color:white;
    width: 180px;
    height: 44px;
    padding: 0 7px;
    line-height: 44px;
margin-right:30px;
}

.entity-form .btn.btn-primary.next{
    border-radius: 1px;
    font-size: 14px;
    letter-spacing: .35px;
    font-family: "NewsGothicBT-Light", Helvetica, Arial, sans-serif;
    border: 0;
    cursor: pointer;
    display: inline-block;
    margin: 0 auto;
    text-align: center;
    text-transform: uppercase;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    background-color: #0074b3;
    color:white;
    width: 180px;
    height: 44px;
    padding: 0 7px;
    line-height: 44px;
}

#InsertButton{
    border-radius: 1px;
    font-size: 14px;
    letter-spacing: .35px;
    font-family: "NewsGothicBT-Light", Helvetica, Arial, sans-serif;
    border: 0;
    cursor: pointer;
    display: inline-block;
    margin: 0 auto;
    text-align: center;
    text-transform: uppercase;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    background-color: #0074b3;
    color:white;
    width: 180px;
    height: 44px;
    padding: 0 7px;
    line-height: 44px;
}

.details-link.launch-modal{
color: #337ab7 !important;
}

.table>thead>tr>th{
color:white;
}

/*product carousels*/
.carousel_section .btn {
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 5px 5px;
}
.carousel_section {
  background-color: #0074B3;
}

ul.justify-content-center{
  border-bottom:none;
  text-align:center;
}

ul.justify-content-center > li{
  float:none;
  display:inline-block;
  zoom:1;

}

ul.justify-content-center > li a{
    padding-bottom: 10px;
    border-bottom: 1px solid #fff;
    text-align: left;
    font-size: 16px;
        color: #fff;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: "NewsGothicBT-Roman", Helvetica, Arial, sans-serif;
    line-height: 1.6;
    font-style: normal;
    font-weight: normal;

}

ul.justify-content-center > li a:hover{
  background-color:white;
  color: #0074B3;
  font-weight:bold;
}

.carousel-content {
    padding-top: 80px;
    float: left;
    width: 50%;
}

.product-title{
  margin-bottom: 15px;
  font-size: 40px;
  color: #fff !important;
  text-align: center;
  font-family: "NewsGothicBT-Light", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: normal;
}

.carousel-content .carousel-indicators ol{
  text-align:center;
  margin-top:40px;
}

.carousel-content .carousel-indicators ol li{
  float:none;
  text-indent: 0;
}

.carousel-content p{
    color: #fff;
    max-width: 400px;
    border-top: 1px solid #33799d;
    padding-top: 30px;
    margin:0;
    font-size: 1.6rem;
    font-family: "NewsGothicBT-Roman", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: normal;
}

.page_section .carousel-content h2{
    font-size: 30px;
    color: #fff;
    text-transform: uppercase;
    padding-bottom: 30px;
    margin-bottom: 0;
    font-family: "NewsGothicBT-Light", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: normal;
    line-height: 1.2;
    letter-spacing: 1px;
    transition: font .15s ease-in-out;
    margin: 0 0 16px 0;
}
.carousel_section li{
  color:white;
  text-align: left;
}

.carousel_section ul:not(.carousel-indicators):not(.nav) > li:before {
    /*Using a Bootstrap glyphicon as the bullet point*/
    content: "\e080";
    font-family: 'Glyphicons Halflings';
    font-size: 9px;
    float: left;
    margin-top: 4px;
    margin-left: -17px;
    color: white;
}
.carousel-control.left, .carousel-control.right  {
  background-image: none;
  width:10%;
}

.carousel-control .glyphicon-chevron-right{
    right: -20%;
}
.carousel-control .glyphicon-chevron-left {
    left: -20%;
}

.modal-content {
  height:740px;
  overflow:auto;
}

.modal-body {
    max-height: calc(100vh - 212px);
    overflow-y: auto;
}

.modal-body h4{
  text-align:center;
  margin-bottom: 15px;
  font-size: 24px;
}

.modal-body table tr td, .modal-body table tr th{
  font-size:13px;
  color: dimgray;
}

.modal{
  z-index:20000;
}

.modal-dialog{
    box-shadow:  0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.carousel_section .nav .active {
  font-weight: bold;
}

.carousel_section .image-wrapper {
    position: relative;
    width: 50%;
    right: 0;
    margin-right: 0;
    float: right;
    padding-top: 65px;
}

.carousel_section .image-wrapper:before{
  position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    border-radius: 100%;
    content: "";
}

.carousel_section .image-wrapper img{
    margin: 35px auto 0;
    display: block;
    max-width: 100%;
    max-height:350px;
}

.carousel-inner{
      max-width: 806px;
    width: 80%;
    overflow: hidden;
    margin: 0 auto;
    padding-bottom:45px;
    height: 690px;

}

.mobile{
 display: none; 
}

.mobile img{
  width: auto;
  margin: 0 auto;
  display: block;
  max-height:250px;
}

.modal .col-md-7, .modal .col-lg-7{
  width: 58% !important;
}

.modal .col-md-4, .modal .col-lg-4{
  width: 33% !important;
}

@media only screen and (max-width: 991px){
  .mobile {
    display: block;
  }
}

.desktop{
 display: block; 
}

.desktop img{
  width: auto;
  margin: 0 auto;
  display: block;
  max-height:250px;
}

@media only screen and (max-width: 991px){
  .desktop {
    display: none;
  }
}

.scrollable{
  overflow-y: auto;
  height: 300px;
}