*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: clamp(0.875rem, 0.8333rem + 0.1778vw, 1rem);
    
}
:root {
    --purple-100: #eff0f5;
    --purpule-700: #667bd9;

    --blue-700: #418bca;
    --blue-600: #179cf1;
    --blue-300: #a4c4dd;

    --orange-400: #fb9118;

    --gray-100: #dddddd;

    --white: #fff;

    --black: #000;
}

a,
a:visited,
a:active {
    text-decoration: none;
}

button {
    border: none;
    outline: none;
    background-color: transparent;
}
/* *******************universal classes start********************/
body{
    font-family: "Open Sans";
}
.button {
    background-color: var(--blue-700);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
}
.input-fields {
    border: none;
    outline: none;
    background-color: transparent;
    border: 1px solid lightgray;
    padding: 0.25rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.25s;
    width:100%;
}

.input-fields:disabled {
    background-color: var(--purple-100);
    border: none;
}

.input-fields:focus {
    box-shadow: 0px 0px 1px 2px var(--blue-300);
}

.input-title {
    color: #344767;
    font-weight: 600;
    line-height: 1rem;
    font-size: 14px;
}

.dropdown-box-shadow.active {
    box-shadow: 0px 0px 1px 2px var(--blue-300);
}
/* *******************universal classes end********************/

#tabHeader {
    white-space: nowrap;
    padding-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    /* max-width: 1500px; */
    overflow-x: auto;
    margin: 0 auto;
    /* border-bottom: 1px solid lightgray; */
}

#tabHeader .tab-item {
    position: relative;
    height: 40px;
    background-color: var(--purpule-700);
    border: 1px solid var(--purpule-700);
    border-bottom: 0px;
    color: var(--white);
    font-weight: 500;
    font-family:"Open Sans";
    padding: 0.5rem 1rem;
    border-radius: 0.25rem 0.25rem 0 0;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    transition: all 0.25s;
}

#tabHeader .tab-item.active {
    background-color: var(--white);
    color: #344767;
    border-color: var(--gray-100);
}

#tabHeader .tab-item.active > i {
    color: var(--orange-400);
}

#selectedTabDetailsSection {
    /* max-width: 1500px; */
    margin: 0 auto;
}

/** ***************************details tab  content ***********************/
#detailsTabContent {
    /*  height: calc(
    100vh - 56px - 2vh
  );*/ /*** 56px is tab container height & 2vh is padding vertical*/
    padding: 2vh 1vw;
    border: 1px solid var(--gray-100);
}

#detailsTabContent #formInputsContainer {
    padding: 1vh 1vw;
    height: 90%;
    /* overflow-y: auto; */
    position: relative;
}

#detailsTabContent #formInputsContainer #left-column {
    border-right: 1px solid var(--gray-100);
}

/* #detailsTabContent .select2-container--default .select2-selection--single {
    background-color: var(--purple-100) !important;
    border: none !important;
    height: 33px !important;
} */
/* #detailsTabContent
    .select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    line-height: 33px !important;
}
#detailsTabContent
    .select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    top: 3px !important;
} */

.all-file{
    font-size:14px;
}