@import url(https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap);
@font-face {
    font-family: 'Poppins';
    src: url('/fonts/poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root{
    --app-primary: var(--bs-primary);
    --app-secondary: var(--bs-secondary);
    --app-success: var(--bs-success);
    --app-danger: var(--bs-danger);
    --app-warning: var(--bs-warning);

    --app-link-color: var(--bs-blue);
}

html{
    font-size: 16px;
    font-family: "Poppins";
}

body {
    font-family: "Poppins";
    font-size: 1rem;
}
p{
    font-size: 1rem;
}


/*************** ELEMENTS ****************/
.frosty{
    /* background-color: #fff; */
    background: rgba(255, 255, 255, .3); /* Semi-transparent white background */
    backdrop-filter: blur(20px); /* Apply Gaussian blur */
    -webkit-backdrop-filter: blur(10px); /* For Safari */
    border: 1px solid rgba(255, 255, 255, 0.4); /* Subtle white border */
    box-shadow: 0 4px 6px rgba(108 108 108 , 0.2); /* Slight shadow for depth */
    border-radius: 10px; /* Rounded corners for a softer look */
}
.gaussian-bg::after{

}
/*************** NAVIGATION *****************/
.navbar{
    z-index: 1;
}
.navbar-brand{
    font-family: "Poppins";
    font-weight: 600;
}
a.nav-link:hover, .navbar-nav .nav-link.active, .navbar-nav .nav-link.show{
    color:var(--app-primary);
}
.navbar-gradient {
    background: linear-gradient(180deg, white, transparent);
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);  */
}

.navbar-toggler{
    border: none;
}
.navbar-toggler:focus{
    border: none;
    box-shadow:none;
}

@media (max-width:992px) {
    .dropdown-menu {
        background-color: transparent;
    }
    .dropdown-menu.profile{
        background-color: #fff;
    }
}
.dropdown-menu {
    border: unset;
}
.dropdown-item:hover, .dropdown-item:focus{
    background-color: transparent;
    color: var(--app-primary);
}

.dropdown-menu.profile {
    background-color: #fff;
}

/*************** BUTTON ********************/
a.btn.btn-link{
    font-size: 1rem;
    text-decoration: none;
}

a.card-link{
    text-decoration: none;
    color: inherit;
}

.subtle-link {
  text-decoration: none;
}

.btn {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

.btn-inline-middle {
  border-radius: 0 0 0 0 !important;
}
.btn-inline-end {
  border-radius: 0 0.5rem 0.5rem 0 !important;
}

.btn-icon{
  padding: 0rem 0.5rem !important;
  margin-right: 0.5rem;
}

/*************** FORM AND INPUT *************/
input.disabled, textarea.disabled{
    background-color: var(--bs-gray-200);
    color: var(--bs-gray-600);
}

.form-control.form-search{
  border-radius: 0.5rem 0 0 0.5rem !important;
}

:root{
    --input-padding-y: 0.75rem;
    --input-padding-x: 1rem;
    --input-padding-y-mob:0.75rem;
    --input-padding-x-mob:1rem;
  }
  .form-control{
    padding: var(--input-padding-y) var(--input-padding-x);
    font-size: 1rem;
    border-radius: 0.5rem !important;
  }
  .form-control:focus{
    color:#363636;
  }
  .form-label-group {
    position: relative;
    /* margin-bottom: 0.75rem; */
  }
  .form-label-group input:focus {
    outline: #1800e2 solid 2px !important;
    box-shadow: none !important;
  }
  .form-label-group input:not(:-moz-placeholder) {
    padding-top: calc(var(--input-padding-y) + var(--input-padding-y) / 2);
    padding-bottom: calc(var(--input-padding-y) / 2);
  }
  .form-label-group input:focus, .form-label-group input:not(:placeholder-shown), .form-label-group select.withfilledvalue {
    padding-top: calc(var(--input-padding-y) + var(--input-padding-y) / 2);
    padding-bottom: calc(var(--input-padding-y) / 2);
  }
  .form-label-group input, .form-label-group select {
    position: relative;
    /* font-weight: 700; */
  }
  .form-label-group > input, .form-label-group > label {
    padding: var(--input-padding-y-mob) var(--input-padding-x-mob);
    height: 100%;
    font-size: 1rem;
    border-radius: 0.5rem !important;
  }
  .form-label-group input, .form-label-group select {
    position: relative;
    /* font-weight: 700; */
  }
  .form-label-group > label {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    margin-bottom: 0;
    line-height: 1.2;
    color: #363636;
    cursor: text;
    border: 1px solid transparent;
    border-radius: 0.5rem;
    transition: 0.1s ease-in-out;
    /* font-weight: 700; */
    pointer-events: none;
  }
  .form-label-group input::-moz-placeholder {
    visibility: hidden;
    opacity: 0;
  }
  .form-label-group input::placeholder {
    visibility: hidden;
    opacity: 0;
  }
  .form-label-group input:focus::-moz-placeholder {
    visibility: visible;
    opacity: 1;
  }
  .form-label-group input:focus::placeholder {
    visibility: visible;
    opacity: 1;
  }
  .form-label-group input:not(:-moz-placeholder) ~ label  {
    padding-top: calc(var(--input-padding-y) / 3.5);
  }
  .form-label-group input:focus ~ label, .form-label-group input:not(:placeholder-shown) ~ label  {
    padding-top: calc(var(--input-padding-y) / 3.5);
  }
  .form-label-group input:not(:-moz-placeholder) ~ label {
    padding-top: calc(var(--input-padding-y) / 2);
    font-size: calc(0.78rem * var(--text-multiplier, 0.86));
    color: #8a8d8f;
    font-weight: 400;
  }
  .form-label-group input:focus ~ label, .form-label-group input:not(:placeholder-shown) ~ label, .form-label-group select.withfilledvalue ~ label {
    padding-top: calc(var(--input-padding-y) / 2);
    font-size: calc(0.78rem * var(--text-multiplier, 0.86));
    color: #8a8d8f;
    font-weight: 400;
  }
  .form-control:disabled{
    background-color: #e9ecef;
    opacity: 1;
  }
  @media (min-width:992px){
    .form-label-group > input, .form-label-group > label {
      font-size: 1rem;
      padding: var(--input-padding-y) var(--input-padding-x);
    }
    .form-label-group > label {
      line-height: 1.3;
    }
  }

  .form-select {
    display: block;
    width: 100%;
    padding: 0.375rem 2.25rem 0.375rem 0.75rem;
    -moz-padding-start: calc(0.75rem - 3px);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  @media (prefers-reduced-motion: reduce) {
    .form-select {
      transition: none;
    }
  }
  .form-select:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  }
  .form-label-group > select {
    padding: 20px 25px 10px 25px;
    height: 100%;
  }
  .form-label-group select:not(:-moz-placeholder) ~ label  {
    padding-top: calc(var(--input-padding-y) / 3.5);
  }
  .form-label-group select:focus ~ label, .form-label-group select:not(:placeholder-shown) ~ label  {
    padding-top: calc(var(--input-padding-y) / 3.5);
  }
  .form-label-group select:not(:-moz-placeholder) ~ label {
    padding-top: calc(var(--input-padding-y) / 2);
    font-size: calc(0.78rem * var(--text-multiplier, 0.86));
    color: #8a8d8f;
    font-weight: 400;
  }
  .form-label-group select:focus ~ label, .form-label-group select:not(:placeholder-shown) ~ label, .form-label-group select.withfilledvalue ~ label {
    padding-top: calc(var(--input-padding-y) / 2);
    font-size: calc(0.78rem * var(--text-multiplier, 0.86));
    color: #8a8d8f;
    font-weight: 400;
  }
  .form-select[multiple],
  .form-select[size]:not([size="1"]) {
    padding-right: 0.75rem;
    background-image: none;
  }
  .form-select:disabled {
    background-color: #e9ecef;
  }
  .form-select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #212529;
  }
  .form-select-sm {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    padding-left: 0.5rem;
    font-size: 0.875rem;
    border-radius: 0.2rem;
  }
  .form-select-lg {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
    font-size: 1.25rem;
    border-radius: 0.3rem;
  }
  .form-select .form-option {
    font-family: "Roboto";
    font-weight: bold;
    font-size: 16px;
    color: #2e2e2e;
    padding: 5px 16px;
  }
  .form-select .form-option:hover {
    background-color: #1800e1;
    fill-opacity: 0.05;
  }
  /*Custom dropdown - replacing select form*/
  .form-dropdown{
    display: block;
    width: 100%;
    padding: 0.375rem 2.25rem 0.375rem 0.75rem;
    -moz-padding-start: calc(0.75rem - 3px);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  @media (prefers-reduced-motion: reduce) {
    .form-dropdown {
      transition: none;
    }
  }
  .form-dropdown:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  }
  .form-label-group > .form-dropdown {
    padding: 20px 25px 10px 25px;
    height: 100%;
  }
  .form-label-group .form-dropdown:not(:-moz-placeholder) ~ label  {
    padding-top: calc(var(--input-padding-y) / 3.5);
  }
  .form-label-group .form-dropdown:focus ~ label, .form-label-group .form-dropdown:not(:placeholder-shown) ~ label  {
    padding-top: calc(var(--input-padding-y) / 3.5);
  }
  .form-label-group .form-dropdown:not(:-moz-placeholder) ~ label {
    padding-top: calc(var(--input-padding-y) / 2);
    font-size: calc(0.78rem * var(--text-multiplier, 0.86));
    color: #8a8d8f;
    font-weight: 400;
  }
  .form-label-group .form-dropdown:focus ~ label, .form-label-group .form-dropdown:not(:placeholder-shown) ~ label, .form-label-group .form-dropdown.withfilledvalue ~ label {
    padding-top: calc(var(--input-padding-y) / 2);
    font-size: calc(0.78rem * var(--text-multiplier, 0.86));
    color: #8a8d8f;
    font-weight: 400;
  }
  .form-dropdown[multiple],
  .form-dropdown[size]:not([size="1"]) {
    padding-right: 0.75rem;
    background-image: none;
  }
  .form-dropdown:disabled {
    background-color: #e9ecef;
  }
  .form-dropdown:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #212529;
  }
  .form-dropdown-sm {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    padding-left: 0.5rem;
    font-size: 0.875rem;
    border-radius: 0.2rem;
  }
  .form-dropdown-lg {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
    font-size: 1.25rem;
    border-radius: 0.3rem;
  }
  .selected-option{

  }
  .form-dropdown.open .dropdown-options{
    display:block;
  }
  .form-dropdown .dropdown-options{
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1 );
    list-style:none;
    display: none;
    position: absolute;
    padding:0;
  }
  .form-dropdown .form-dropdown-item {
    font-family: "Roboto";
    font-weight: bold;
    font-size: 16px;
    color: #2e2e2e;
    padding: 5px 16px;
    padding: 10px;
    cursor: pointer;
  }
  .form-dropdown .form-dropdown-item:hover {
    background-color: rgba(24, 0, 225, 0.05);
  }

/**************** TABLES *******************/
.table.q-edit .revised-cell{
    background-color: lightblue;
}



/****************** OVERRIDES ************/
.ion-icon.icon{
    display: inline-block;
    vertical-align: middle;
    color: inherit;
}
.ion-icon.md {
    font-size: 20px;
}
.ion-icon.xl{
    font-size: 40px;
}

/**********  UTILITIES   **********/
@media (max-width:992px) {
    .hide-mobile {
        display: none !important;
    }
}


/******* ICONS *************/
a .bi::before {
  color:black;
}

.icon.ms {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url('/images/ms-logo.svg') no-repeat center center;
  background-size: contain;
  vertical-align: middle;
  margin-right: 0.5rem;
}




.form-control {
  font-family: inherit;
  font-size: 1rem;
}

.form-control {
    font-family: "Poppins";
    font-size: 1rem;
    line-height: 1.5;
}

select.form-control,
.form-select,
.form-select option {
    font-family: "Poppins", sans-serif !important;
    font-size: 1rem;
    line-height: 1.5;
    color: #212529;
    padding: 0.375rem 2.25rem 0.375rem 0.75rem;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.5rem;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}

select.form-control:focus,
.form-select:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

select.form-control option,
.form-select option {
    font-family: "Poppins";
    font-size: 1rem;
    padding: 0.5rem;
}

.form-control[readonly],
input[readonly].form-control,
.mapped-name-field[readonly] {
    background-color: #f5f5f5 !important;
    color: #888 !important;
    border-color: #ced4da !important;
    opacity: 1 !important;
    cursor: not-allowed;
    transition: all 0.3s ease;
}
