body {
  background: #f2f2f2;
  /* font-family: 'Montserrat', sans-serif; */
  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: rgb(226, 239, 249);
  color: rgb(110, 161, 200);
  border: 2px solid rgb(110, 161, 200);
}
.btn-success {
  background: rgb(226, 250, 237);
  color: mediumseagreen;
  border: 2px solid mediumseagreen;
}
.btn.btn-icon {
  border-width: 2px;
  font-size: 1.3rem;
  border-radius: 50px;
  padding: 0rem 0.6rem;
}
.btn-danger {
  background: rgb(250, 234, 228);
  color: orangered;
  border: 2px solid orangered;
  font-size: 1.1rem;
}
.app-content .card {
  padding: 2rem;
}
.input-group-text {
  font-weight: 600;
  font-size: 0.9rem;
}
form .form-control {
  font-size: 0.9rem;
}
.form-control:focus {
  box-shadow: none;
  outline: none;
  border-color: #ced4da;
}
.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: 0.9rem;
    padding: .375rem .75rem;
    display: flex;
    align-items: center;
}

/* Multiple select height auto */
.select2-container .select2-selection--multiple {
    min-height: calc(2.25rem + 2px);
    padding: .25rem .5rem;
}

/* 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;
}

/* Match input-group prepend styling */
.input-group .select2-container {
    flex: 1 1 auto;
    width: 1% !important;
}

/* 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: 0px 0px 5px 0px rgb(222, 226, 230);
}
legend {
    font-size: 1.2rem;
    color: cornflowerblue;
    background: white;
}
.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;
}