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;
    /* background: #f1f1f1;
    padding: 0.5rem 1rem;
    box-shadow: var(--default-boxshadow);
    margin-bottom: 1rem; */
}
.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; */
    border-radius: 0;
    padding: 1rem;
    border: none;
    box-shadow: var(--default-boxshadow);
}
.input-group-prepend {
  display: block;
  width: 100%;
}
.input-group-text {
  font-weight: 600;
  font-size: 0.9rem;
  background: var(--input-group-text-bgcolor);
  border: none !important;
  padding: 0;
  margin-bottom: 0.25rem;
}
form .form-control {
  font-size: 1rem;
  background: transparent;
  border-radius: 0 !important;
}
.form-control:focus {
  box-shadow: none;
  outline: none;
  border-color: #ced4da;
  background: transparent;
  border-radius: 0 !important;
}
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-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-radius: 0 !important;
}

/* .note-editor table,
table {
    width: 100%;
    border-collapse: collapse;
}

table, th, td {
    border: 1px solid #ddd;
    padding: 8px;
} */

.tabContainer {
  display: flex;
  align-items: center;
  justify-content: start;
  background: white;
  margin: -0.5rem -1rem 1.5rem -1rem;
  padding: 0 0.5rem;
  border-bottom: 2px solid #e9eaf6;
}
.tabContainer .eachTab {
  cursor: pointer;
  position: relative;
  background: #eeeff6;
  color: #5b5d8b;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border: 2px solid transparent;
  border-bottom: none;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  margin-right: 0.5rem;
  transition: all 0.2s ease;
}
.tabContainer .eachTab.active {
  background: white;
  color: #414369;
  font-weight: 600;
  border: 2px solid #dfe0f4;
  border-bottom: none;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  box-shadow: 0px 0px 3px 0px #dfe0f4 inset;
  transform: scale(1.05);
  transition: all 0.2s ease;
}
.tabContainer .eachTab::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 5px;
  background: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.tabContainer .eachTab.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 5px;
  background: white; 
  opacity: 1;
}