/* Base css start */

/* google font cdn */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  /* font family */
  --satoshi: "Satoshi";

  /* colors */
  --orange: #ea624d;
  --light-orange: #f6bfb6;
  --light-gray: #e6e6e6;
  --light-gray2: #f5f6f7;
  --gray: #6b6b6b;
  --dark-gray: #2b2b2b;
  --red: #ff3b30;
  --yellow: #fb8c00;
  --green: #43a047;
  --blue: #007aff;
}
ol,
ul {
  margin: 0;
  padding: 0;
}
li {
  list-style-type: none;
}

a,
button {
  transition: all 0.3s;
}
a {
  text-decoration: none;
}
button {
  border: none;
}
select {
  -webkit-appearance: none;
  appearance: none;
}
.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  padding-inline: 20px;
}
body {
  /* font-family: var(--nevanta); */
  font-family: var(--satoshi);
  color: #000;
}
h1 {
  font-size: 28px;
  line-height: normal;
}
h2 {
  font-size: 24px;
  line-height: normal;
}
h3 {
  font-size: 20px;
  line-height: normal;
}
h4 {
  font-size: 18px;
  line-height: normal;
}
h5 {
  font-size: 16px;
  line-height: normal;
}
h6 {
  font-size: 14px;
  line-height: normal;
}
section {
  padding-inline: 20px;
}
.text-primary {
  color: var(--orange) !important;
}
.app {
  /* max-width: 768px; */
  width: 100%;
  min-height: 100vh;
}
.app__top-gradient-bg {
  height: 250px;
  background-image: linear-gradient(180deg, #fdefed 0%, #ffffff 100%);
}

.app__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  width: 100%;
  height: 52px;
  font-size: 15px;
  line-height: normal;
  color: #fff;
  font-weight: 700;
  border-radius: 8px;
  background-image: linear-gradient(90deg, #f2735f 0%, #e3523c 100%);
  border-radius: 8px;
}
.app__btn-icon {
  width: 20px;
}
.app__btn--secondary {
  background-image: unset;
  background-color: var(--light-gray2);
  border: 1px solid var(--light-gray);
  color: var(--dark-gray);
}
.app__btn--outline {
  background: transparent;
  color: var(--orange);
  border: 1px solid var(--orange);
}
.app__btn--red {
  background-color: rgba(255, 59, 48, 0.1);
  background-image: unset;
  color: var(--red);
}
.app__btn--sm {
  height: 40px;
  font-size: 14px;
}
.app__btn--sm .app__btn-icon {
  width: 17px;
}
.app__btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
.app__btn .spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.15em;
  border-color: currentColor;
  border-right-color: transparent;
}

.app__link {
  font-size: 14px;
  line-height: normal;
  color: var(--orange);
  gap: 6px;
}
.app__link img {
  width: 11px;
}
.app__link--gray {
  color: var(--gray);
}
.app__link--sm {
  font-size: 12px;
}

.app__link-divider {
  height: 19px;
  width: 1px;
  background-color: var(--light-gray);
}

.section__title {
  font-size: 18px;
  padding-bottom: 8px;
}
.section__title::after {
  content: "";
  width: 40px;
  height: 2px;
  background-color: var(--orange);
  position: absolute;
  bottom: 0;
  left: 0;
}

.divider {
  height: 1px;
  background-color: var(--light-gray);
}

.progress {
  height: 7px;
  width: 81px;
  background-color: var(--light-orange);
  --bs-progress-bar-bg: var(--orange);
  border-radius: 2px;
}
.progress-text {
  font-size: 14px;
  line-height: normal;
  color: var(--orange);
}

/* swiper pagination style start */
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.7);
  opacity: 1;
  margin: 0 !important;
  transition: all 0.3s;
}
.swiper-pagination-bullet-active {
  background-color: #fff;
  border-color: #fff;
}

.tag {
  font-size: 10px;
  line-height: normal;
  color: var(--gray);
  background-color: #f5f6f7;
  border: 1px solid var(--light-gray);
  padding: 1px 5px;
  border-radius: 2px;
}
/* swiper pagination style end */

/* custom class start */
.pointer-events-none {
  pointer-events: none;
}
.pt-40 {
  padding-top: 40px;
}
.text-gray {
  color: var(--gray) !important;
}
/* custom class end */

/* Base css end */

/* app nav start */
.app__nav {
  border-top: 1px solid var(--light-gray);
  box-shadow: 0px -7px 4px rgba(0, 0, 0, 0.01), 0px -3px 3px rgba(0, 0, 0, 0.01), 0px -1px 2px rgba(0, 0, 0, 0.01);
  border-radius: 12px 12px 0px 0px;
  padding-inline: 24px;
}
.app__nav-link {
  font-size: 12px;
  line-height: normal;
  color: var(--gray);
  gap: 6px;
  padding: 20px 3px;
  position: relative;
}
.app__nav-icon {
  width: 24px;
}
.app__nav-link::before {
  content: "";
  width: 100%;
  height: 4px;
  background-color: var(--orange);
  border-radius: 0px 0px 8px 8px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.3s;
}
.app__nav-link.active {
  color: var(--orange);
  font-weight: 700;
}
.app__nav-link.active::before {
  opacity: 1;
}
/* app nav end */

/* app menu start */
.app__menu {
  border: 0.5px solid var(--light-gray);
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.06);
}
.app__menu-wrapper {
  padding-inline: 20px;
}
.app__menu-link {
  font-size: 14px;
  line-height: normal;
  color: var(--gray);
  font-weight: 500;
  flex-shrink: 0;
  padding-block: 12px;
}
.app__menu-link::after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: var(--orange);
  border-radius: 8px 8px 0 0;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
}
.app__menu-link.active::after {
  opacity: 1;
}
.app__menu-link.active {
  font-weight: 700;
  color: var(--orange);
}
.app__menu.fixed-top {
  transition: all 0.3s ease;
}
.app__menu.fixed-top .app__menu-wrapper {
  padding-inline: 20px;
}
/* app menu end */

/* app header section start */
.app__header {
  padding: 12px 48px 20px;
  border-bottom: 1px solid var(--light-gray);
}
.app__back-btn {
  left: 20px;
  top: 12px;
}
.app__back-btn img {
  width: 24px;
}
.app__header-action-btn {
  top: 12px;
  right: 20px;
}
.app__header-action-btn img {
  width: 24px;
}
/* app header section end */

/* app preload start */
.app__preload {
  background-image: linear-gradient(180deg, #fdefed 0%, #ffffff 100%);
}
.app__logo {
  width: 151px;
}
.app__preload-text {
  color: var(--orange);
}
/* app preload end */

/* app table start */
.app__table {
  background-color: #f5f6f7;
}
.app__table th {
  font-size: 10px;
  line-height: normal;
  color: var(--gray);
  font-weight: 500;
  padding: 12px 12px 4px 12px;
}
.app__table td {
  font-size: 12px;
  line-height: normal;
  color: var(--dark-gray);
  padding: 0 12px 12px;
  font-weight: 500;
}
.app__table.style-2 {
  background-color: transparent;
}
.app__table.style-2 th {
  font-size: 12px;
  line-height: normal;
  color: var(--gray);
  padding: 0 8px 12px;
  border-bottom: 1px solid var(--light-gray);
}
.app__table.style-2 td {
  font-size: 13px;
  line-height: normal;
  padding: 14px 8px;
  border-bottom: 1px solid var(--light-gray);
}
.app__table.style-2 td:first-child {
  padding-left: 0;
}
.app__table.style-2 td:last-child {
  padding-right: 0;
}
.app__table .user-avatar {
  width: 22px;
  height: 22px;
}
.app__table .action-btn img {
  width: 20px;
}
.app__table .app__table-status--pending {
  color: var(--yellow);
}
.app__table .app__table-status--paid {
  color: var(--green);
}
.app__table .app__table-status--sent {
  color: var(--blue);
}
.app__table th.amount {
  min-width: 58px;
}
.app__table th.billed {
  min-width: 73px;
}
.app__table th.percentage {
  min-width: 80px;
}
.price-box {
  padding: 8px 16px 8px 12px;
  border: 1px solid var(--light-gray);
}
/* app table end */

/* app nav tabs start */
.app__nav-tabs {
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--light-gray);
}
.app__nav-tab {
  font-size: 13px;
  line-height: normal;
  color: var(--gray);
  font-weight: 500;
  padding: 7px;
  background-color: #f5f6f7;
}
.app__nav-tab.active {
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.06);
  background-color: #000;
  color: #fff;
  font-weight: 700;
}
/* app nav tabs end */

/* login section start */

.logo__logo {
  width: 180px;
}
.login__header p {
  font-size: 15px;
  line-height: 20px;
  color: var(--gray);
  max-width: 300px;
}
.form__input-list {
  gap: 20px;
}
.form__input-label {
  font-size: 14px;
  line-height: normal;
  margin-bottom: 10px;
  color: var(--dark-gray);
}
.form__input-field {
  height: 52px;
  border: 1px solid var(--light-gray);
  padding-inline: 20px;
  color: #000;
  font-size: 15px;
  line-height: normal;
  transition: all 0.3s;
  font-weight: 500;
}
.form__input-field::placeholder {
  color: var(--gray);
  font-weight: 400;
}
.form__input-field.has-icon {
  padding-inline: 52px;
}
.form__input-icon {
  font-size: 20px;
}
.form__input-btn img {
  width: 18px;
}
.form__input-field:focus {
  outline: none;
  border-color: var(--orange);
}
.form__footer {
  gap: 40px;
}
.form__forgot-btn {
  color: #000;
}
.form__forgot-btn img {
  width: 22px;
}
.login__footer-text {
  color: var(--gray);
}
.login__footer-text a {
  color: var(--orange);
}
/* login section end */

/* jobs section start */
.jobs {
  padding-block: 16px 20px;
}
.app__search-field {
  height: 47px;
  border: 1px solid var(--light-orange);
  font-size: 14px;
  line-height: normal;
  color: var(--dark-gray);
}
.app__search-field::placeholder {
  color: var(--gray);
}
.app__search-field:focus {
  outline: none;
}
.app__filter-toggle {
  width: 47px;
  height: 47px;
  background-image: linear-gradient(90deg, #f2735f 0%, #e3523c 100%);
}
.app__filter-toggle img {
  width: 22px;
}
.app__tabs {
  gap: 13px;
}
.app__tab {
  height: 30px;
  background-color: transparent;
  border: 1px solid var(--orange);
  font-size: 13px;
  line-height: normal;
  color: var(--orange);
  gap: 6px;
  padding-inline: 8px;
}
.app__tab--new {
  background-color: rgba(251, 140, 0, 0.1);
  color: var(--yellow);
  border-color: var(--yellow);
}
.app__tab--inprogress {
  color: var(--blue);
  background-color: rgba(0, 122, 255, 0.1);
  border-color: var(--blue);
}
.app__tab--converted {
  background-color: rgba(67, 160, 71, 0.1);
  color: var(--green);
  border-color: var(--green);
}
.app__tab--rejected {
  background-color: rgba(255, 59, 48, 0.1);
  color: var(--red);
  border-color: var(--red);
}
.app__tab.active {
  background-image: linear-gradient(90deg, #f2735f 0%, #e3523c 100%);
  color: #fff;
}
.app__tab.active .app__tab-icon {
  filter: brightness(1000%);
}
.app__filter-btns {
  gap: 12px;
  margin-right: -20px;
  padding-right: 20px;
}
.app__filter-btn {
  height: 28px;
  background-color: transparent;
  border: 1px solid var(--gray);
  font-size: 12px;
  line-height: normal;
  color: var(--gray);
  padding-inline: 10px;
}
.app__filter-btn.active {
  color: #fff;
  background-color: var(--dark-gray);
  border: var(--dark-gray);
}
.app__filter-btn--blue {
  background-color: var(--blue);
  color: #fff;
  border: var(--blue);
}
.jobs__card {
  border: 1px solid var(--light-gray);
  box-shadow: 0px 7px 4px rgba(0, 0, 0, 0.02), 0px 3px 3px rgba(0, 0, 0, 0.03), 0px 1px 2px rgba(0, 0, 0, 0.03);
  padding: 16px 12px;
}
.jobs__type {
  font-size: 12px;
  line-height: normal;
  color: var(--gray);
}
.jobs__type span {
  color: var(--orange);
}
.jobs__tag {
  font-size: 10px;
  line-height: normal;
  color: var(--blue);
  background-color: rgba(0, 122, 255, 0.1);
  padding: 1px 5px;
  border: 1px solid var(--blue);
  border-radius: 2px;
}
.jobs__tag--pending {
  color: var(--yellow);
  border-color: var(--yellow);
  background-color: rgba(251, 140, 0, 0.1);
}
.jobs__tag--approved {
  background-color: rgba(67, 160, 71, 0.1);
  color: var(--green);
  border-color: var(--green);
}
.jobs__tag--inactive {
  color: var(--gray);
  border-color: var(--gray);
  background-color: rgba(107, 107, 107, 0.1);
}
.jobs__info-title {
  font-size: 10px;
  line-height: normal;
  color: var(--gray);
  margin-bottom: 6px;
}
.job__info-text {
  font-size: 12px;
  line-height: normal;
  color: var(--dark-gray);
}
.jobs__info-item .user-avatar {
  width: 18px;
  height: 18px;
}
/* jobs section end */

/* job-details section start */
.job-details {
  padding-block: 20px 28px;
}
.thumb img {
  min-height: 225px;
  aspect-ratio: 362 / 225;
  transition: all 1s ease-in-out;
}
.thumb {
  border-radius: 12px;
}
.thumb:hover img {
  transform: scale(1.1);
}
.job-details .thumb::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.16) 100%);
  position: absolute;
  top: 0;
  left: 0;
}
.thumb-slider__pagination {
  bottom: 12px !important;
}
.job-details__location {
  font-size: 14px;
  line-height: normal;
  color: var(--gray);
}
.job-details__location-icon {
  width: 20px;
}

.job-details__block .section__title::after {
  background-color: var(--gray);
}
.job-details__info-item {
  font-size: 14px;
  line-height: normal;
}
.job-details__block {
  color: var(--dark-gray);
}
.job-details__info-item span:first-child {
  color: var(--gray);
}
.job-details__info-item .user-avatar {
  width: 23px;
  height: 23px;
}
.job-details__edit-btn img {
  width: 20px;
}
.job-details__desc {
  font-size: 14px;
  line-height: 22px;
}
.job-details__action-btn {
  font-size: 12px;
  line-height: normal;
  color: var(--orange);
}
.job-details__action-btn img {
  width: 16px;
}
.app__collapse-btn {
  padding-block: 11px;
}
.app__collapse-btn[aria-expanded="true"] .app__collapse-icon {
  transform: rotate(180deg);
}
.app__collapse:not(:last-child) {
  border-bottom: 1px solid var(--light-gray);
}
.app__collapse-icon {
  width: 24px;
  height: 24px;
  background-color: #f5f6f7;
  transition: all 0.3s;
}
.app__collapse-icon img {
  width: 20px;
}
.app__collapse.style-2 {
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--light-gray);
}
.app__collapse.style-2 .app__collapse-btn {
  padding: 16px;
}
.job-details__table {
  min-width: 370px;
}
.form__avatar {
  width: 22px;
  height: 22px;
}
.form__tag-avatar {
  width: 23px;
  height: 23px;
}

.attachments {
  gap: 12px;
}
.attachment {
  width: 72px;
  height: 72px;
}
.attachment::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
}
.attachment__action-btn {
  top: 6px;
  right: 6px;
  width: 16px;
  height: 16px;
  background-color: var(--orange);
}
.attachment__action-btn img {
  width: 12px;
}
/* job-details section end */

/* customer-details section start */

.customer-details__container {
  padding-block: 28px 24px;
}
.customer-details__wrapper {
  gap: 20px;
}
.customer-details__icon {
  width: 40px;
  height: 40px;
  background-color: #fdefed;
}
.customer-details__icon img {
  width: 20px;
}
.customer-details__title {
  color: var(--gray);
}
.customer-details__avatar {
  width: 23px;
  height: 23px;
}
.customer-details__item p {
  font-size: 14px;
  line-height: normal;
}
.customer-details__item p a {
  color: inherit;
}
/* customer-details section end */

/* create-job section start */

.create-job {
  padding-block: 20px;
}
.form__input--sm .form__input-label {
  font-size: 12px;
}
.form__input--sm .form__input-field {
  height: 48px;
}
.form__tags {
  gap: 12px;
}
.form__tag {
  padding: 5px 10px;
  background-color: #f5f6f7;
  gap: 2px;
  border: 1px solid var(--light-gray);
  font-size: 13px;
  line-height: normal;
  color: var(--dark-gray);
}
.form__tag-close {
  display: flex;
  cursor: pointer;
}
.form__tag-close img {
  width: 16px;
}
.form__radio-list {
  gap: 20px;
}
.form__radio {
  font-size: 15px;
  line-height: normal;
  color: var(--dark-gray);
  cursor: pointer;
}
.form__radio-icon {
  width: 16px;
  height: 16px;
  border: 1px solid var(--gray);
  transition: all 0.3s;
}
.form__radio-icon::after {
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--orange);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s;
}
.form__radio-input:checked ~ .form__radio-icon {
  border-color: var(--orange);
}
.form__radio-input:checked ~ .form__radio-icon::after {
  opacity: 1;
}
.form__checkbox-list {
  gap: 20px;
}
.form__checkbox {
  font-size: 14px;
  line-height: normal;
  color: var(--dark-gray);
  cursor: pointer;
}
.form__checkbox-icon {
  width: 15px;
  height: 15px;
  border: 1px solid #969696;
  border-radius: 2px;
  transition: all 0.3s;
}
.form__checkbox-icon img {
  width: 12px;
  opacity: 0;
  transition: all 0.3s;
}
.form__checkbox-input:checked ~ .form__checkbox-icon {
  background-color: var(--orange);
  border-color: var(--orange);
}
.form__checkbox-input:checked ~ .form__checkbox-icon img {
  opacity: 1;
}
.form__info-text {
  font-size: 12px;
  line-height: normal;
  color: var(--gray);
}
.form__attachments {
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.upload-title {
  height: 81px;
  background-color: #fdefed;
  border: 1px dashed var(--orange);
  gap: 6px;
  padding: 4px;
  font-size: 11px;
  line-height: normal;
  color: var(--orange);
  cursor: pointer;
}
.upload-title__icon {
  width: 20px;
}
.upload-box--style-2 .upload-title__icon {
  width: 32px;
}
.upload-btn {
  font-size: 14px;
  line-height: normal;
  background-color: #fff;
  padding: 5px 15px;
  border: 1px solid var(--orange);
}
.file-preview {
  height: 81px;
  background-color: #f5f6f7;
  padding: 6px;
  border: 1px solid var(--light-gray);
}
.file-preview__label {
  font-size: 8px;
  line-height: normal;
  color: #fff;
  background-color: var(--orange);
  padding: 1px 4px;
  border-radius: 2px;
  font-weight: 700;
}
.file-preview__name {
  font-size: 12px;
  line-height: normal;
  color: var(--dark-gray);
}
.file-preview__action-btn {
  width: 20px;
  height: 20px;
  background-color: #fff;
}
.file-preview__action-btn img {
  width: 14px;
}
.file-preview--img .file-preview__label {
  background-color: rgba(0, 0, 0, 0.3);
}
.file-preview--img {
  border: 0;
}
.file-preview--img::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.form__attachments--lg .file-preview {
  width: 123px;
  height: 123px;
  flex-shrink: 0;
}
.form__attachments--lg {
  margin-right: -20px;
  padding-right: 20px;
}
.form__attachments--lg .file-preview__label {
  font-size: 10px;
}
.form__attachments--lg .file-preview__name {
  font-size: 14px;
}

.form__input-field--textarea {
  padding-block: 14px;
  min-height: 68px;
  resize: none;
}
.form__input-wrap {
  gap: 12px;
}
/* create-job section end */

/* invoice-management section start */
.invoice-management {
  padding-block: 20px;
}
.invoice-management .app__search-field {
  border-color: var(--light-gray);
}
.invoice-summary {
  margin-top: 32px;
  border: 1px solid var(--light-gray);
  background-color: var(--light-gray2);
  border-radius: 12px;
  padding: 16px;
}
.invoice-summary__title {
  font-size: 15px;
}
.invoice-summary__items {
  gap: 14px;
}
.invoice-summary__item {
  grid-template-columns: 1fr auto 1fr;
  font-size: 14px;
  line-height: normal;
  color: var(--dark-gray);
}
.invoice-summary__item span:last-child {
  color: #000;
}
.invoice-management__action-btn {
  width: calc(50% - 8px);
}
/* invoice-management section end */

/* job-files section start */
.documents__icon {
  width: 48px;
  height: 48px;
  background-color: #fdefed;
}
.documents__icon img {
  width: 32px;
}
/* job-files section end */


/* more section start */
.more {
  min-height: calc(100vh - 88px);
}
.profile-card {
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.03), 0px 1px 2px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--light-gray);
  padding: 20px;
}
.profile-card__img {
  width: 58px;
  height: 58px;
  background-color: #fff;
  padding: 2px;
}
.profile-card__info {
  font-size: 14px;
  line-height: normal;
  color: var(--gray);
}
.profile-card__info img {
  width: 15px;
}
.more__nav {
  border: 0.5px solid #FDEFED;
  box-shadow: 0px 10px 6px rgba(0, 0, 0, 0.01), 0px 4px 4px rgba(0, 0, 0, 0.02), 0px 1px 2px rgba(0, 0, 0, 0.02);
  border-radius: 12px;
  gap: 12px;
  margin-top: 20px;
}
.more__nav-link {
  font-size: 15px;
  line-height: normal;
  color: var(--dark-gray);
}
.more__nav-icon {
  width: 32px;
  height: 32px;
  background-color: #FDEFED;
  border-radius: 50%;
}
.more__nav-icon img {
  width: 16px;
}
.more__nav-arrow-icon {
  width: 18px;
}
.more__nav-divider {
  width: calc(100% - 48px);
  height: 1px;
  background-color: var(--light-gray);
}
/* more section end */






/* Form Validation Error Styling */
.form__input strong.text-danger {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.875rem;
}
.form__input strong.text-danger small {
    color: var(--red);
    font-weight: 500;
}
.form__input .is-invalid,
.form__input input.is-invalid,
.form__input select.is-invalid,
.form__input textarea.is-invalid {
    border-color: var(--red) !important;
}
.form__radio-list.is-invalid {
    border: 1px solid var(--red);
    border-radius: 0.5rem;
    padding: 0.5rem;
}

/* Select 2 Styling */
.select2-container {
    min-height: 48px;
}

.select2-container--default .select2-selection--single {
    height: 48px;
    border: 1px solid var(--light-gray);
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.select2-container--default .select2-selection--multiple{
    min-height: 48px;
    border: 1px solid var(--light-gray);
    border-radius: 0.5rem;
    transition: all 0.3s;

    display: flex;
    align-items: center;
    width: 100%;
}


.select2-selection--multiple .select2-search.select2-search--inline {
    display: inline-flex;
    flex-grow: 1;
}

.select2-selection--multiple .select2-search--inline .select2-search__field {
    width: 100%;
    color: #000;
    font-size: 15px;
    font-weight: 500;
    font-family: var(--satoshi);
    margin: 0px !important;
    padding-inline: 20px;
}

.select2-selection--multiple .select2-search--inline .select2-search__field::placeholder {
    width: 100%;
    color: #000;
    font-size: 15px;
    font-weight: 500;
    font-family: var(--satoshi);
}

.select2-container--default.select2-container--open .select2-selection--single {
    outline: none;
    box-shadow: none;
    border-color: var(--orange);
    transition: all 0.3s;
}

.select2-container--open .select2-dropdown--below {
    border-color: var(--orange);
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-inline: 20px;
    color: #000;
    line-height: 48px;
    font-size: 15px;
    font-weight: 500;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px;
    right: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #000;
    font-size: 15px;
    font-weight: 500;
}

.select2-search--dropdown .select2-search__field:focus,
.select2-search--dropdown .select2-search__field:focus-visible,
.select2-search--dropdown .select2-search__field:focus-within,
.select2-search--dropdown .select2-search__field:active {
    outline: none;
    box-shadow: none;
    border-color: var(--orange);
}

.select2-results__option {
    font-size: 15px;
    font-weight: 500;
    color: #000;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
    height: auto;
}

.select2-selection__choice__display {
    font-size: 15px;
    font-weight: 500;
    color: #000;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    font-size: 15px;
    font-weight: 500;
    color: #000;
}

.stage__title {
    font-size: 11px;
}

.stage__value {
    font-size: 12px;
}

.stage__action-icon {
    font-size: 11px;
}



.file-tabs .nav-link {
    font-size: 12px;
    color: #000;
    padding-inline: 0.5rem;
    border: none;
    font-weight: 500;
}

.file-tabs .nav-link.active {
    color: var(--orange);
}
