body {
  background: var(--body-bgcolor);
  font-family: var(--regular-font);
}
.wrapper {
  padding: 2rem 1.5rem;
}
.app-content-header {
  padding: 0 0.5rem 1rem 0.5rem;
}
.app-content-header .row {
  display: flex;
  align-items: center;
}
.app-content-header .heading {
  font-weight: 600;
  font-size: 1.1rem;
}
.btn {
  border-width: 2px;
  font-size: 0.9rem;
  font-weight: 600;
}
.btn-primary {
  background: var(--btn-primary-bgcolor);
  color: var(--btn-primary-color);
  border: 2px solid var(--btn-primary-bordercolor);
}
.btn-success {
  background: var(--btn-success-bgcolor);
  color: var(--btn-success-color);
  border: 2px solid var(--btn-success-bordercolor);
}
.btn.btn-icon {
  border-width: 2px;
  font-size: 1.3rem;
  border-radius: 50px;
  padding: 0rem 0.6rem;
}
.btn-danger {
  background: var(--btn-danger-bgcolor);
  color: var(--btn-danger-color);
  border: 2px solid var(--btn-danger-bordercolor);
}
.app-content .card {
    background: var(--datatable-bgcolor);
    /* border: 1px solid gainsboro; */
    padding: 1rem;
    border: none;
    box-shadow: var(--default-boxshadow);
}
.input-group-text {
  font-weight: 600;
  font-size: 0.9rem;
  background: var(--input-group-text-bgcolor);
}
form .form-control {
  font-size: 1rem;
  background: transparent;
}
.form-control:focus {
  box-shadow: none;
  outline: none;
  border-color: #ced4da;
  background: transparent;
}
input[type="file"]::file-selector-button{
    display:none;
}
.error {
  color: red;
  font-size: 0.9rem;
  margin-top: 0.25rem;
}
.form-check-label {
  display: inline-flex;
  align-items:center;
  width: fit-content;
  margin-right: 1rem;
}
.form-check-input {
  position: relative;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0.25rem;
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.select2-container .select2-selection--single,
.select2-container .select2-selection--multiple {
    height: calc(2.25rem + 2px);
    border: 1px solid #ced4da;
    border-radius: .25rem;
    font-size: 1rem;
    padding: .375rem .75rem;
    display: flex;
    align-items: center;
    background: transparent;
}

/* Multiple select height auto */
.select2-container .select2-selection--multiple {
    min-height: calc(2.25rem + 2px);
    padding: .25rem .5rem;
    background: transparent;
}

/* Remove default focus blue outline */
.select2-container--default.select2-container--focus
.select2-selection--single,
.select2-container--default.select2-container--focus
.select2-selection--multiple {
    border-color: #ced4da !important;
    box-shadow: none !important;
    outline: none !important;
    background: transparent;
}

/* Match input-group prepend styling */
.input-group .select2-container {
    flex: 1 1 auto;
    width: 1% !important;
    background: transparent;
}

/* Fix left border radius when used with input-group-prepend */
.input-group .select2-selection {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

fieldset {
    margin: 2%;
    position: relative;
}
fieldset.border {
    box-shadow: var(--fieldset-boxshadow);
    border: none !important;
}
legend {
    font-size: 1.2rem;
    color: var(--legend-color);
    background:  var(--datatable-bgcolor);
}
.choose_file_btn {
    cursor:pointer;
}
.choose_file_btn:hover {
    color: cornflowerblue;
}
.files_container {
    margin-top: 1rem;
}
.files_container .file_item {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem;
    margin: 0.5rem;
    color: cornflowerblue;
    font-size: 0.9rem;
    background: #f2f2f2;
    border: 1px solid gainsboro;
    width: fit-content;
}
.files_container .file_item .fa-paperclip {
    margin-right: 5px;
    color: gray;
    font-size: 1.1rem;
}
.files_container .file_item .fa-times {
    cursor: pointer;
    color: red;
    font-size: 1.1rem;
}
input[readonly],
textarea[readonly] {
    background-color: #fff !important;
    color: #000;
}

.note-editor.note-frame {
    width: 100% !important;
    box-shadow: none !important;
    border: 1px solid #ced4da !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

/* .note-editor table,
table {
    width: 100%;
    border-collapse: collapse;
}

table, th, td {
    border: 1px solid #ddd;
    padding: 8px;
} */