:root {
  --color-hblue: #00a0df !important;
  --color-ablue: #00adee !important;
  --color-dblue: #0f4262 !important;
  --color-hyelow: #f0b43e;
  --color-orange: #fb8c00;
  --color-yellow: #ffbc34;
  --color-light-1: #fff;
  --color-grey-1: #f7f7f7;
  --color-grey-12: #f2f2f2;
  --color-grey-2: #ddd;
  --color-grey-3: #ccc;
  --color-grey-22: #eaeaea;
  --color-greyed: #919191;
  --color-dark-3: #333333;
  --color-dark-35: #3f3f3f;
  --color-dark-2: #2b2b2b;
  --default-boxshadow: 0 3px 10px rgb(62 57 107 / 10%);
  --hover-boxshadow: 0 14px 24px rgb(62 57 107 / 10%);
  --color-primary: var(--color-hblue);
  --color-secondary: var(--color-dblue) !important;
  --color-accent: var(--color-hyelow);
  --color-accent-secondary: var(--color-orange);
  --color-text: var(--color-dark-3);
  --color-body: var(--color-dark-3);
  --color-text-accent: var(--color-dark-35);
  --color-d5: #555;
}

.btn-primary {
  background-color: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  color: var(--color-light-1) !important;
}

.btn.btn-accentblue {
  background-color: var(--color-ablue) !important;
  border-color: var(--color-ablue) !important;
  color: var(--color-light-1) !important;
}

.text-secondary {
  color: var(--color-secondary) !important;
}
.text-primary {
  color: var(--color-primary) !important;
}

.text-light {
  color: var(--color-light-1) !important;
}

.text-dblue,
.bg-dblue {
  color: var(--color-dblue) !important;
}

.text-orange {
  color: var(--color-orange) !important;
}

.bg-orange {
  background-color: var(--color-orange) !important;
}

.text-yellow {
  color: var(--color-yellow) !important;
}

.bg-yellow {
  background-color: var(--color-yellow) !important;
}

.navbar-header .nav-toggler {
  color: #333333 !important;
}

.navbar-header .topbartoggler {
  color: #333333 !important;
}

.navbar-header .topbartoggler[aria-expanded="true"] .ti-more-alt:before {
  content: "\e646" !important;
}

.application-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  margin-bottom: 80px;
}

.application-cards * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.application-cards .application-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-shadow: var(--default-boxshadow);
  box-shadow: var(--default-boxshadow);
  -webkit-transition: -webkit-box-shadow 0.4s ease-out;
  transition: -webkit-box-shadow 0.4s ease-out;
  transition: box-shadow 0.4s ease-out;
  transition: box-shadow 0.4s ease-out, -webkit-box-shadow 0.4s ease-out;
  margin-bottom: 2rem;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  position: relative;
  background: var(--color-light-1);
  padding-bottom: 10px;
}

.application-cards .application-card:before {
  content: "";
  height: 10px;
  background: var(--color-primary);
  display: block;
  width: 100%;
  border-radius: 5px 5px 0 0;
}

.application-cards .application-card:hover {
  -webkit-box-shadow: var(--hover-boxshadow);
  box-shadow: var(--hover-boxshadow);
  -webkit-transition: -webkit-box-shadow 0.4s ease-out;
  transition: -webkit-box-shadow 0.4s ease-out;
  transition: box-shadow 0.4s ease-out;
  transition: box-shadow 0.4s ease-out, -webkit-box-shadow 0.4s ease-out;
}

.application-cards .ap-col {
  padding: 15px;
}

.application-cards .ap-col .ap-icontext {
  font-size: 1rem;
  min-width: 70px;
  display: inline-block;
  padding-right: 10px;
  border-right: 1px dotted rgba(100, 100, 100, 0.2);
  margin-right: 20px;
}

.application-cards .ap-col .ap-icontext > i {
  display: inline-block;
  margin-right: 7px;
}

.application-cards .ap-col .ap-coltext {
  text-transform: uppercase;
  font-size: 0.7rem;
  line-height: 110% !important;
}

.application-cards .ap-col.ap-title {
  padding: 15px;
  background: var(--color-grey-1);
  font-size: 1rem;
  font-weight: 500;
  line-height: 100%;
  padding-right: 70px;
}

.application-cards .ap-col.ap-mcta {
  position: absolute;
  top: 10px;
  right: 0;
  padding: 10px !important;
}

/* Please use this for global more dots option */
.btn-group.more-optn-group > .btn {
  background: transparent !important;
  color: var(--color-body) !important;
}

.btn-group.more-optn-group > .btn:hover {
  color: var(--color-primary) !important;
}

.btn-group.more-optn-group.show > .btn {
  color: var(--color-primary) !important;
}

.btn-group.more-optn-group.show .btn {
  background: transparent;
  color: var(--color-primary);
}

.btn-group.more-optn-group > .btn:active {
  background: transparent !important;
  color: var(--color-primary) !important;
}

.btn-group.more-optn-group .dropdown-menu {
  background: var(--color-grey-1);
  -webkit-box-shadow: var(--default-boxshadow);
  box-shadow: var(--default-boxshadow);
}

/* .btn-group.more-optn-group .dropdown-menu.show {
  top: 30px !important;
  right: -20px !important;
  min-width: 140px !important;
  padding: 0 !important;
  padding: 5px !important;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: var(--color-text-accent);
  border-radius: 4px;
  left: auto !important;
  -webkit-transform: none !important;
  transform: none !important;
} */

/* .btn-group.more-optn-group .dropdown-menu.show::before {
  content: "";
  display: block;
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background: var(--color-text-accent);
  height: 10px;
  position: absolute;
  top: -9px;
  width: 16px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
} */

.btn-group.more-optn-group .dropdown-menu.show .dropdown-item {
  border: none;
  padding: 0.5rem 0.75rem;
  font-size: 0.65rem;
  background: var(--color-dark-35);
  color: var(--color-grey-3) !important;
  border-radius: 5px;
  line-height: 0.65rem;
  position: relative;
  letter-spacing: 1.5px;
  font-weight: 300;
}

.btn-group.more-optn-group .dropdown-menu.show .dropdown-item:last-child {
  border: none !important;
}

.btn-group.more-optn-group .dropdown-menu.show .dropdown-item .icon-text {
  padding: 0;
  text-align: left;
}

.btn-group.more-optn-group .dropdown-menu.show .dropdown-item i {
  font-size: 0.75rem;
}

.btn-group.more-optn-group .dropdown-menu.show .dropdown-item:hover {
  color: var(--color-light-1) !important;
  background: var(--color-dark-2);
}

.btn-group.more-optn-group .dropdown-menu.show .dropdown-item:hover:active {
  color: var(--color-light-1) !important;
  background: var(--color-dark-2);
}

.btn-group.more-optn-group .dropdown-menu.show .dropdown-item:active {
  color: var(--color-light-1) !important;
  background: var(--color-dark-2);
}

.btn-group.more-optn-group .dropdown-toggle-split {
  width: 24px !important;
  height: 24px !important;
  border-radius: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 24px !important;
  padding: 0;
  font-size: 0.7rem;
  color: var(--color-text);
  border: none !important;
  background: transparent;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  text-align: center;
  position: relative;
}

.btn-group.more-optn-group .dropdown-toggle-split:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, -40%);
  transform: translate(-50%, -40%);
  top: 50%;
}

.btn-group.more-optn-group .dropdown-toggle-split::after {
  display: none !important;
  content: none !important;
}

.btn-group.more-optn-group .dropdown-toggle-split:hover {
  background: transparent;
  color: var(--color-primary);
}

.btn-group.more-optn-group .dropdown-menu.show.has-border .dropdown-item {
  position: relative;
}

.btn-group.more-optn-group
  .dropdown-menu.show.has-border:hover
  .dropdown-item:after {
  display: none;
}

.btn-group.more-optn-group .dropdown-menu.show.has-border .dropdown-item:after {
  position: absolute;
  border-bottom: 1px solid rgba(111, 111, 111, 0.3) !important;
  content: "";
  width: 100%;
  display: block;
  max-width: calc(100% - 20px) !important;
  left: 10px;
  bottom: -1px;
  z-index: 9999;
}

.btn-group.more-optn-group
  .dropdown-menu.show.has-border
  .dropdown-item:last-child:after {
  display: none !important;
}

.btn-group.more-optn-group .flat-cion:before {
  margin: 0 !important;
  font-size: 14px !important;
}

@media screen and (min-width: 1024px) {
  .application-cards .application-card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding-bottom: 0;
    margin-bottom: 1.15rem;
  }
  .application-cards .application-card::before {
    content: "";
    height: 100% !important;
    background: var(--color-primary);
    display: block;
    width: 10px !important;
    border-radius: 5px 0 0 5px;
    position: absolute;
  }
  .application-cards .application-card .ap-col {
    padding: 15px;
    -ms-flex-preferred-size: 15%;
    flex-basis: 10%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .application-cards .application-card .ap-col .ap-icontext {
    min-width: auto;
    display: inline-block;
    padding-bottom: 3px;
    padding-right: 10px;
    border-right: none;
    margin-right: 0;
  }
  .application-cards .application-card .ap-col .ap-icontext > i {
    display: inline-block;
    margin-right: 5px;
  }
  .application-cards .application-card .ap-col .ap-coltext {
    text-transform: uppercase;
    font-size: 0.7rem;
    line-height: 110% !important;
  }
  .application-cards .application-card .ap-col.ap-stotal {
    -ms-flex-preferred-size: 10%;
    flex-basis: 10%;
  }
  .application-cards .application-card .ap-col.ap-title {
    margin: 0;
    background: transparent;
    -ms-flex-preferred-size: calc(45% - 70px) !important;
    flex-basis: calc(45% - 70px) !important;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 2rem;
    font-size: 0.85rem;
    font-weight: 400;
    padding-right: 1.5rem;
  }
  .application-cards .application-card .ap-col.ap-mcta {
    position: relative;
    top: auto;
    right: auto;
    -ms-flex-preferred-size: 70px;
    flex-basis: 70px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 15px;
  }
}

.table.dataTable.new-table {
  border-spacing: 0 7px !important;
  margin-top: -7px !important;
  margin-bottom: -7px !important;
  background: var(--color-light-1);
  border-left: none !important;
  border-right: none !important;
}

.table.dataTable {
  width: 100% !important;
  max-width: 100% !important;
}

.table.dataTable.new-table tr {
  border: none;
}

.table.dataTable.new-table td {
  border: none !important;
  background: var(--color-grey-12);
  vertical-align: middle;
}

.table.dataTable.new-table small {
  font-size: 1rem;
}

.table.dataTable.new-table tbody tr {
  border-bottom: 7px solid var(--color-light-1);
}

.table.dataTable.new-table thead th {
  text-transform: uppercase !important;
  font-size: 1rem !important;
  line-height: 100% !important;
  /*border:none !important;*/
  border-right: none;
  border-left: none;
  border-bottom: 2px solid #dee2e6;
}

.btn-group.more-optn-group > .btn {
  background: transparent !important;
  color: var(--color-text) !important;
}

.btn-group.more-optn-group > .btn:active,
.btn-group.more-optn-group > .btn:hover {
  background: transparent !important;
  color: var(--color-primary) !important;
}

.btn-group.more-optn-group.show .btn {
  background: transparent;
  color: var(--color-primary);
}

.btn-group.more-optn-group .dropdown-menu {
  background: var(--color-grey-1);
  -webkit-box-shadow: var(--default-boxshadow);
  box-shadow: var(--default-boxshadow);
}

.btn-group.more-optn-group .dropdown-menu.show {
  top: 36px !important;
  /* right: -215% !important; */
  left: 85px !important;
  /* min-width: 140px !important; */
  padding: 0 !important;
  padding: 5px !important;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: var(--color-text-accent);
  -webkit-transform: none !important;
  transform: none !important;
}

.btn-group.more-optn-group .dropdown-menu.show.right-side {
  left: -165px !important;
}

.btn-group.more-optn-group .dropdown-menu.show.right-side-1 {
  left: 17px !important;
  right: 0 !important;
}

/* .btn-group.more-optn-group .dropdown-menu.show::before {
  content: "";
  display: block;
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background: var(--color-text-accent);
  height: 10px;
  position: absolute;
  top: -9px;
  width: 15px;
  right: 16px !important;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
} */

.btn-group.more-optn-group .dropdown-menu.show .dropdown-item {
  border: none;
  padding: 0.5rem 0.75rem;
  font-size: 0.65rem;
  background: var(--color-dark-35);
  color: var(--color-light-1) !important;
  line-height: 0.65rem;
  position: relative;
  letter-spacing: 1.5px;
  font-weight: 300;
}

.btn-group.more-optn-group .dropdown-menu.show .dropdown-item:last-child {
  border: none !important;
}

.btn-group.more-optn-group .dropdown-menu.show .dropdown-item .icon-text {
  padding: 0;
  text-align: left;
}

.btn-group.more-optn-group .dropdown-menu.show .dropdown-item:hover {
  color: var(--color-light-1);
  background: var(--color-dark-2);
}

.btn-group.more-optn-group .dropdown-menu.show .dropdown-item:hover:active {
  color: var(--color-light-1) !important;
  background: var(--color-dark-2);
}

.btn-group.more-optn-group .dropdown-menu.show .dropdown-item:active {
  color: var(--color-light-1) !important;
  background: var(--color-dark-2);
}

.btn-group.more-optn-group .dropdown-toggle-split {
  width: 24px !important;
  height: 24px !important;
  border-radius: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 24px !important;
  padding: 0;
  font-size: 0.7rem;
  color: var(--color-text);
  border: none !important;
  background: transparent;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  text-align: center;
  position: relative;
}

.btn-group.more-optn-group .dropdown-toggle-split::after {
  display: none !important;
  content: none !important;
}

.btn-group.more-optn-group .dropdown-toggle-split:hover {
  background: transparent;
  color: var(--color-primary);
}

.cta-column {
  width: 30px;
}

.min-column {
  width: 10%;
}

.min-column.norm-column {
  width: 12%;
}

.dataTables_wrapper .form-control {
  margin-bottom: 10px;
}

.data-right-filter {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.data-right-filter #reportrange {
  max-width: 220px;
  padding: 0.25rem 0.5rem;
  font-size: 0.76563rem;
  line-height: 1.5;
  border-radius: 1px;
  height: 28.37px;
  position: relative;
  margin-bottom: 10px !important;
}

.data-right-filter #reportrange .btn {
  position: absolute;
  right: -2px;
  top: 0;
  height: 100%;
  width: 26px;
  height: 27px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  font-size: 11px;
}

@media screen and (min-width: 768px) {
  .data-right-filter {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

@media screen and (min-width: 1024px) {
  .data-right-filter {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.dataTables_info,
.dataTables_paginate {
  margin-top: 3rem !important;
}

.custom-datatable .dataTables_wrapper {
  padding: 15px 0;
}

.custom-datatable .dataTables_wrapper > .row:first-child {
  margin-bottom: 10px !important;
}

.custom-datatable
  .dataTables_wrapper
  > .row:first-child
  > div[class^="col-"]:first-child,
.custom-datatable
  .dataTables_wrapper
  > .row:first-child
  > div[class^="col-"]:last-child {
  padding: 0 15px !important;
}

.custom-datatable
  .dataTables_wrapper
  > .row:last-child
  > div[class^="col-"]:first-child,
.custom-datatable
  .dataTables_wrapper
  > .row:last-child
  > div[class^="col-"]:last-child {
  padding: 0 15px !important;
}

@media screen and (min-width: 768px) {
  .custom-datatable
    .dataTables_wrapper
    > .row:first-child
    > div[class^="col-"]:first-child,
  .custom-datatable
    .dataTables_wrapper
    > .row:last-child
    > div[class^="col-"]:first-child {
    padding-left: 30px;
  }
  .custom-datatable
    .dataTables_wrapper
    > .row:first-child
    > div[class^="col-"]:last-child,
  .custom-datatable
    .dataTables_wrapper
    > .row:last-child
    > div[class^="col-"]:last-child {
    padding-right: 30px;
  }
}

.dataTables_info,
.page-item .page-link {
  font-size: 0.75rem !important;
  line-height: 100% !important;
  color: var(--color-primary);
}

.dataTables_info:visited,
.dataTables_info:hover {
  color: var(--color-primary) !important;
}

.page-item .page-link:visited,
.page-item .page-link:hover {
  color: var(--color-primary) !important;
}

.dataTables_length {
  margin-bottom: 0 !important;
}

.dataTables_length label,
.dataTables_length select {
  font-size: 0.75rem !important;
  line-height: 100% !important;
  margin-bottom: 10px !important;
}

#reportrange {
  margin-bottom: 0 !important;
}

#reportrange span {
  font-size: 0.75rem !important;
  line-height: 100% !important;
}

#ndt_filter {
  margin-bottom: 0 !important;
}

#ndt_filter label,
#ndt_filter input {
  font-size: 0.75rem !important;
  line-height: 100% !important;
  margin-bottom: 10px !important;
}

.table.dataTable.new-table td {
  font-size: 0.9rem;
}

.table.dataTable.new-table thead th {
  text-transform: uppercase !important;
  font-size: 0.9rem !important;
  line-height: 100% !important;
  vertical-align: middle !important;
  padding-left: 25px !important;
}

.table.dataTable.new-table tbody {
  margin-top: -20px;
}

.btn-group.more-optn-group .dropdown-menu.show.old-menu {
  right: auto !important;
}

.table.dataTable.new-table .btn-group.more-optn-group .dropdown-menu.show {
  right: -20px !important;
}

table.dataTable td,
table.dataTable th {
  white-space: normal !important;
}

@media screen and (max-width: 767px) {
  div.dataTables_wrapper div.dataTables_length,
  div.dataTables_wrapper div.dataTables_filter,
  div.dataTables_wrapper div.dataTables_info,
  div.dataTables_wrapper div.dataTables_paginate {
    text-align: left !important;
  }
}

@media screen and (max-width: 767px) {
  .custom-datatable .dataTables_wrapper {
    padding: 15px 0;
  }
  .custom-datatable .dataTables_wrapper > .row:first-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .custom-datatable .dataTables_wrapper > .row:first-child > .col-sm-4 {
    width: 30% !important;
  }
  .custom-datatable .dataTables_wrapper > .row:first-child > .col-sm-8 {
    width: 70% !important;
  }
}

@media screen and (max-width: 320px) {
  .data-right-filter #reportrange,
  #ndt_filter input {
    width: 150px !important;
    overflow-x: hidden;
  }
  div.dataTables_wrapper div.dataTables_length select {
    width: 40px;
    display: inline-block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

@media screen and (min-width: 321px) and (max-width: 767px) {
  .data-right-filter #reportrange,
  #ndt_filter input {
    width: 200px !important;
  }
  div.dataTables_wrapper div.dataTables_length select {
    width: 45px;
    display: inline-block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

.cta-column:before,
.cta-column:after {
  display: none !important;
}

#ndt thead tr > th:last-child:before,
#ndt thead tr > th:last-child:after {
  display: none;
}

.page-wrapper {
  background-image: url("https://webjqd.com/app-portal/assets/images/background/striped.png") !important;
  background-repeat: repeat;
}

#ndt {
  width: 100% !important;
  max-width: 100% !important;
}

.new-table.dtr-inline.collapsed .dtr-control {
  padding-left: 40px !important;
}

.new-table.dtr-inline.collapsed .dtr-control::before {
  top: 50% !important;
  left: 8px !important;
  height: 18px !important;
  width: 18px !important;
  display: block;
  font-size: 14px !important;
  border: 1px solid #777 !important;
  position: absolute;
  color: var(--color-text) !important;
  border-radius: 20px;
  text-align: center;
  line-height: 19px !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  content: "+";
  background-color: transparent !important;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  padding: 0 !important;
  padding: 2px !important;
  border-radius: 18px !important;
  padding: 0 !important;
}

.new-table.dtr-inline.collapsed .parent .dtr-control::before {
  line-height: 17px !important;
}

.new-table.dtr-inline.collapsed .dtr-control:hover:before {
  color: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
}

.new-table.dtr-inline.collapsed .dtr-control:before {
  top: 50% !important;
  left: 8px !important;
  height: 18px !important;
  width: 18px !important;
  display: block;
  font-size: 14px !important;
  border: 1px solid #777 !important;
  position: absolute;
  color: var(--color-text) !important;
  border-radius: 20px;
  text-align: center;
  line-height: 19px !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  content: "+";
  background-color: transparent !important;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  padding: 0 !important;
  padding: 2px !important;
  border-radius: 18px !important;
  padding: 0 !important;
}

.page-item.active .page-link {
  color: var(--color-light-1) !important;
}

.table.dataTable.new-table.collapsed tbody tr.parent {
  border-bottom: 1px solid #ccc !important;
}

.dataTables_info {
  color: var(--color-text) !important;
}

.btn-group.more-optn-group .dropdown-toggle-split:before {
  font-size: 0.75rem !important;
}

span.dtr-data {
  white-space: normal;
}

table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_desc:before,
table.dataTable thead .sorting:before {
  background-image: url(../img/arn.svg);
  max-width: 7px !important;
  display: block;
  width: 7px !important;
  height: 7px !important;
  content: "";
  background-position: center;
  background-size: 7px;
  background-repeat: no-repeat;
  /*right: 0.5em !important;*/
  left: 0.5em;
  top: calc(50% - 5px) !important;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting:after {
  background-image: url(../img/arnd.svg);
  max-width: 7px !important;
  display: block;
  width: 7px !important;
  height: 7px !important;
  content: "";
  background-position: center;
  background-size: 7px;
  left: 0.5em;
  background-repeat: no-repeat;
  top: calc(50% + 5px) !important;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.flat-cion:before {
  margin: 0 !important;
  font-size: 14px !important;
}

#table-card {
  padding: 1.25rem 0 !important;
}

#submissions_table_wrapper .row #submissions_table_length,
#submissions_table_wrapper .row #submissions_table_filter {
  padding: 0 1.125rem !important;
}

#accounting_student_table_wrapper {
  padding: 0 0 50px 0 !important;
}
.new-table .no-sort::before,
.new-table .no-sort::after {
  display: none !important;
}

#lenContainer {
  padding-left: 25px !important;
}

#lenContainer #submissions_table_length select.form-control,
#lenContainer #accounting_table_length select.form-control,
#lenContainer #accounting_student_table_length select.form-control {
  display: inline-block !important;
  width: 75px !important;
}

#filterContainer #submissions_table_filter input.form-control,
#filterContainer #accounting_table_filter input.form-control,
#filterContainer #accounting_student_table_filter input.form-control {
  display: inline-block !important;
  width: 70% !important;
  margin-left: 10px;
  height: 35px !important;
}

#filterContainer #submissions_table_filter label,
#filterContainer #accounting_table_filter label,
#filterContainer #accounting_student_table_filter label {
  font-weight: normal !important;
  font-size: 13px;
}

#datatableNewFilter {
  margin: 0 0 10px 0 !important;
}

.dataTables_info {
  padding-left: 10px !important;
}
.dataTables_paginate {
  padding-right: 10px !important;
}

@media (min-width: 320px) and (max-width: 767px) {
  #filterContainer #submissions_table_filter,
  #lenContainer #submissions_table_length,
  #filterContainer #accounting_table_filter,
  #lenContainer #accounting_table_length,
  #filterContainer #accounting_student_table_filter,
  #lenContainer #accounting_student_table_length,
  #calContainer {
    margin-top: 10px;
    text-align: center;
  }

  #filterContainer #accounting_table_filter input.form-control {
    width: 70% !important;
  }
}

.datepicker > div {
  display: inherit;
}

/* Update style for Dashboard Student */
/* Please add the global colors css */
.btn-outline-primary {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline-primary:hover,
.btn-outline-primary:active {
  background-color: var(--color-primary) !important;
  color: var(--color-light-1) !important;
  border-color: var(--color-primary) !important;
}

.btn-primary {
  color: var(--color-light-1);
  border-color: var(--color-primary);
  background: var(--color-primary);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-danger {
  color: #fff !important;
  background-color: #e60a31 !important;
  border-color: #da092f !important;
  /*color: var(--color-light-1);
  border-color: var(--color-danger);
  background: var(--color-danger);*/
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.btn-danger:hover {
  opacity: 0.9;
}

.btn-accent {
  color: var(--color-light-1);
  border-color: var(--color-accent);
  background: var(--color-accent);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.btn-accent:hover {
  opacity: 0.9;
}

.text-primary {
  color: var(--color-primary) !important;
}

.text-danger {
  color: var(--color-danger) !important;
}

.text-accent {
  color: var(--color-accent) !important;
}

.is-uppercase {
  text-transform: uppercase;
}

.sec-app-dashboard {
  position: relative;
  background: var(--color-light-1);
}

.sec-app-dashboard:before {
  content: "";
  background: var(--color-primary);
  display: block;
  width: 100% !important;
  height: 10px !important;
  border-radius: 5px 5px 0 0;
  position: absolute;
}

.app-row {
  position: relative;
  background: var(--color-grey-1);
}

.app-row:last-child {
  margin-bottom: 0 !important;
}

.app-row:before {
  content: "";
  background: var(--color-primary);
  display: block;
  width: 100% !important;
  height: 10px !important;
  border-radius: 5px 5px 0 0;
  position: absolute;
}

@media screen and (min-width: 768px) {
  .app-row:before {
    width: 10px !important;
    height: 100% !important;
    border-radius: 5px 0 0 5px;
  }
}

.app-row .app-col-header {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;
  letter-spacing: 1px;
  opacity: 0.7;
}

.app-row > div[class*="app"]:not(:last-child) {
  position: relative;
}

@media screen and (max-width: 767px) {
  .app-row > div[class*="app"]:not(:last-child):after {
    content: "";
    width: calc(100% - 2rem);
    height: 1px;
    border-bottom: 1px solid var(--color-grey-3);
    display: block;
    position: absolute;
    bottom: 0;
  }
}

.app-row .content-app .app-col-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 3px;
}

.app-row .content-app .ap-col-desc {
  font-size: 0.75rem;
}

.app-row .status-app-text {
  font-weight: 600;
}

h3.app-col-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.applicant-main-info small {
  text-transform: uppercase;
  letter-spacing: 0.75px;
}

@media screen and (max-width: 767px) {
  .applicant-main-info h4 {
    font-size: 1rem;
  }
}

.applicant-adrs span {
  font-size: 0.75rem;
  line-height: 100%;
  display: inline-block;
}

.avatar-upload {
  position: relative;
  max-width: 100px;
  margin: 10px 10px 20px 0;
}

.avatar-upload .avatar-edit {
  position: absolute;
  /* left: 0; */
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.avatar-upload .avatar-edit input {
  display: none;
}

.avatar-upload .avatar-edit input + label {
  display: inline-block;
  width: 34px;
  height: 34px;
  margin-bottom: 0;
  border-radius: 100%;
  background: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid transparent;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  font-weight: normal;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.avatar-upload .avatar-edit input + label:hover {
  background: #f1f1f1;
  border-color: #d6d6d6;
}

.avatar-upload .avatar-preview {
  width: 100px;
  height: 100px;
  position: relative;
  border-radius: 100%;
  background-color: #eee;
}

@media screen and (max-width: 767px) {
  .avatar-upload .avatar-preview {
    width: 80px;
    height: 80px;
  }
}

.avatar-upload .avatar-preview > div {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.btn-sm.mbtn {
  text-transform: uppercase;
  font-size: 0.7rem;
  line-height: 1rem;
  padding: 5px 10px 3px;
  font-weight: 300;
  letter-spacing: 0.75px;
}

.btn-sm.mbtn i {
  padding-left: 4px;
}

.mbtn {
  outline: none !important;
}

.mbtn:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.card-title {
  font-size: 1rem;
}

.list-indicator {
  font-size: 10px;
}

.box-shadow {
  -webkit-box-shadow: 0 5px 14px rgba(62, 57, 107, 0.1);
  box-shadow: 0 5px 14px rgba(62, 57, 107, 0.1);
}

.box-grow {
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.box-grow:hover {
  -webkit-transform: translateY(-4px) scale(1.01);
  transform: translateY(-4px) scale(1.01);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.sec-app-dashboard.no-pseudo-border::before {
  display: none !important;
}

.font-small {
  font-size: 0.65rem;
}

.l-psuedu-border:before {
  width: 10px !important;
  height: 100% !important;
  border-radius: 5px 0 0 5px;
  content: "";
  background: var(--color-primary);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.btn-circle.small-btn {
  width: 26px !important;
  height: 26px !important;
  padding: 10px;
  display: inline-block;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.btn-circle.small-btn i {
  font-size: 0.75rem;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.btn-circle.small-btn i:before {
  font-size: 0.85rem;
  line-height: 100%;
}

.btn-circle.small-btn i:hover,
.btn-circle.small-btn i:focus,
.btn-circle.small-btn i.active {
  opacity: 0.9;
}

.compressed-table td {
  padding: 0.65rem 1.25rem 0.65rem 1.5rem;
  font-size: 0.85rem !important;
  line-height: 0.9rem !important;
}

.tab-accordion .card-header {
  border-bottom: 2px solid #333;
}

.tab-accordion .card-header h4 {
  color: var(--color-primary);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 0.9rem;
  margin-bottom: 0;
  margin-top: 0;
}

.tab-accordion table td {
  width: auto;
}

.tab-accordion table td.title {
  width: 30%;
  font-weight: 700;
}
table td.title {
  width: 20%;
  font-weight: 700;
}

.nav-tabs.inline-tabs {
  border: none !important;
}

.nav-tabs .nav-link {
  font-size: 0.75rem;
  background: var(--color-grey-1);
}

.nav-tabs .nav-link.active {
  border-color: var(--color-grey-1);
  background: var(--color-grey-1);
}

.nav-tabs .nav-link:hover {
  border-color: var(--color-grey-1);
  background: var(--color-grey-1);
}

.nav-tabs a {
  color: var(--color-primary);
  position: relative;
}

@media screen and (max-width: 767px) {
  .nav-tabs a {
    width: 100%;
  }
}

.nav-tabs a:after {
  content: "";
  height: 2px;
  position: absolute;
  bottom: 6px;
  left: 1rem;
  display: block;
  background: var(--color-text);
  width: 0;
  -webkit-transition: width 0.25s cubic-bezier(0.15, 0.62, 0.67, 0.85);
  transition: width 0.25s cubic-bezier(0.15, 0.62, 0.67, 0.85);
}

.nav-tabs a:hover {
  color: var(--color-primary) !important;
}

.nav-tabs a.active {
  color: var(--color-primary) !important;
}

.nav-tabs a.active:after,
.nav-tabs a:hover:after {
  width: calc(100% - 2rem);
  -webkit-transition: width 0.25s cubic-bezier(0.15, 0.62, 0.67, 0.85);
  transition: width 0.25s cubic-bezier(0.15, 0.62, 0.67, 0.85);
}

/*
.accordion-toggler{

    &:after{
      content: "";
      position: relative;
      top: 1px;
      display: inline-block;
     // font-family: 'Glyphicons Halflings';
      font-style: normal;
      font-weight: 700;
      line-height: 1;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      float:right;
      transition: transform .25s linear;
      -webkit-transition: -webkit-transform .25s linear;
      color:var(--color-primary);
      font-size: 1.15rem;
    }

}
.accordion-toggler[aria-expanded="true"] {

}

.accordion-toggler[aria-expanded="true"]:after {
  content: "\2212";
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  top: -8px;
    right: -12px;

}

.accordion-toggler[aria-expanded="false"]:after {
  content: "\002b";
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}


*/
.no-pseudo-border:before {
  display: none !important;
}

.student-record-content .tab-content {
  position: relative;
}

.card-header .card-toggler .accordion-icon-closed {
  display: block;
}

.card-header .card-toggler .accordion-icon-opened {
  display: none;
}

.card-header .card-toggler.collapsed .accordion-icon-closed {
  display: none;
}

.card-header .card-toggler.collapsed .accordion-icon-opened {
  display: block;
}

.controlled-column .min-w120 {
  min-width: 120px;
  -ms-flex-preferred-size: 120px;
  flex-basis: 120px;
}

.controlled-column .min-w140 {
  min-width: 140px;
  -ms-flex-preferred-size: 140px;
  flex-basis: 140px;
}

.controlled-column .min-w100 {
  min-width: 100px;
  -ms-flex-preferred-size: 100px;
  flex-basis: 100px;
}

/* temporary added pelase remove this */
.table.dataTable.new-table thead th {
  text-transform: uppercase !important;
  font-size: 0.7rem !important;
  line-height: 100% !important;
  vertical-align: middle !important;
  padding-left: 25px !important;
}

.bg-grey-1 {
  background-color: #f9f9f9;
}

.nav-application {
  margin-bottom: 30px;
  position: relative;
  padding: 20px 10px 20px 0;
}

#spline-chart,
#spline-chart svg {
  width: 100% !important;
  max-width: 100%;
}

.btn-secondary {
  color: #fff;
  background-color: #00adee;
  border-color: #00adee;
}

.sortable .sortable-item,
#name-column {
  background-color: #e7e8e8;
  height: 41px;
  list-style: none;
  margin-bottom: 9px;
  font-size: 14px;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 4px;
  cursor: grab;
}

#name-column {
  padding-left: 32px;
}

.sortable {
  padding: 0;
}

.sortable .sortable-item img {
  margin-left: 10px;
  margin-right: 13px;
}

.sortable .sortable-item .close {
  font-size: 13px;
  color: #333;
  margin-right: 8px;
}

#reorder-columns .modal-dialog {
  max-width: max-content;
}

.sortable-options input[type="checkbox"] {
  display: block !important;
}

.sortable-options {
  border: solid #cdcdcd 1px;
  border-radius: 4px;
  padding: 16px;
  width: 100%;
}

.sortable-options div {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.sortable-options div label {
  margin: 0;
  margin-left: 13px;
}

.custom-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  margin: 0 5px;
}

.vertical-center {
  display: flex;
  align-items: center;
}

.custom-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #2196f3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.cround {
  border-radius: 34px;
}

.slider.cround:before {
  border-radius: 50%;
}

.tb-white {
  background-color: white !important;
  border-top: 3px solid black;
}

.details {
  display: flex;
  flex-direction: column;
  -moz-transition: max-height 0.5s;
  -ms-transition: max-height 0.5s;
  -o-transition: max-height 0.5s;
  -webkit-transition: max-height 0.5s;
  transition: max-height 0.5s;
  max-height: 0;
  overflow: hidden;
}

.details div {
  border-bottom: 1px solid #dee2e6;
  color: #333;
  padding: 5px 0;
}

.details div span {
  font-family: "Nunito Sans";
  font-size: 12.4px;
  color: #434343;
}

.details div span:first-child {
  font-weight: bold;
  margin-right: 5px;
  font-family: "Nunito Sans";
  font-size: 12.4px;
}

.details div:last-child {
  border-bottom: none !important;
}

.title {
  white-space: nowrap !important;
}

.tb-white .title {
  font-size: 13px;
  color: #333;
  font-family: "Nunito Sans";
  height: 18px;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.nsb {
  font-family: "Nunito Sans, sans-serif";
  font-weight: 700;
  color: #434343;
  font-size: 12.4px;
}

.nl {
  font-family: "Nunito Sans, sans-serif";
  color: #434343;
  font-size: 12.4px;
}

#student_academics_table th {
  padding-left: 22px;
}

#submissions_table tr td:first-child {
  padding: 0.5rem !important;
}

#submissions_table tr th:first-child {
  padding: 0 !important;
  width: 0;
}

.custom-icon {
  margin-right: 5px;
}
/* New Application */
#ApplicationBuilder {
  overflow-y: auto; /* Enable scrolling */
  height: 100vh; /* Full height of the viewport */
  padding-left: 16px; /* Add some space from the sticky element */

  background-color: #fff;
  padding: 2em;
  width: 68%;
  border-radius: 10px;
}
.drag-drop-container {
  /* padding:10px; */
  border: 2px solid transparent;
  border-radius: 5px;
  /* margin-bottom:15px; */
  transition: all 0.15s ease-in-out;
}

.drop-container,
.drop-container {
  border-radius: 5px;
  width: 100%;
  height: 10px;
  margin-bottom: 5px;
}

.drag-drop-before-container.draggeStarted,
.drag-drop-after-container.draggeStarted {
  background-color: #3697d434;
  border: 1px dashed #fff;
  opacity: 0.5;
  cursor: grabbing;
}
.drag-drop-before-container.draggedOver,
.drag-drop-after-container.draggedOver {
  background-color: #1e40af;
  border: 1px solid #fff;
  opacity: 0.5;
}

.drag-drop-after-container {
  margin-top: 5px;
}

.drag-drop-container.draggedOver {
  border: 2px solid #1d4ed8;
  background-color: rgba(255, 255, 255, 1);
}

.validation-container {
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 5px;
  position: relative;
  transition: all 0.15s ease-in-out;
  min-height: 115px;
  margin-bottom: 15px;
}

.field-container {
  border: 2px solid #ccc;
  padding: 10px;
  border-radius: 5px;
  position: relative;
  transition: all 0.15s ease-in-out;
  min-height: 115px;
}

.field-container.short {
  min-height: auto !important;
}

.isDragged {
  cursor: grabbing;
}
.field-container.isDragged {
  opacity: 0.15;
}

.field-container:hover {
  border: 2px solid #1d4ed8;
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.2);
  cursor: grab;
}

.field {
  padding: 10px;
  border: 1px solid #ccc;
  background-color: #ffffff;
  border-radius: 5px;
  margin-bottom: 5px;
  display: flex;
  justify-content: space-between;
}

.sub-field:hover {
  border: 1px solid #1d4ed8;
}
.sub-field {
  padding: 10px;
  border: 1px solid #ccc;
  background-color: #ffffff;
  border-radius: 5px;
  margin-bottom: 5px;
  display: flex;
  justify-content: space-between;
}

.container-controller {
  position: absolute;
  top: -17px;
  right: 20px;
  background-color: #fbfbfb;
  padding: 5px;
  display: none;
  z-index: 100;
}
.field-container:hover .container-controller {
  display: block;
}
.container-controller-icon {
  cursor: pointer;
  margin-left: 5px;
  display: inline-block;
  color: grey;
  min-width: 25px;
  text-align: center;
}
.validation-message,
.required-field {
  padding: 5px;
  color: red;
  font-size: 12px;
}
.field-wrapper {
  padding: 10px;
  border-radius: 5px;
  background-color: #fbfbfb;
  position: relative;
  cursor: grab;
}

.wrapper-controller {
  position: absolute;
  top: -17px;
  right: 20px;
  padding: 5px;
}

.field-label {
  font-weight: 700;
  margin-bottom: 2px;
  display: flex;
}

.field-placeholder {
  color: #b9b7b7;
}
.add-field {
  cursor: pointer;
  padding: 18px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.5);
}
.add-section {
  padding: 18px;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  border: 2px solid #b9b7b7;
  border-radius: 5px;
  margin-bottom: 15px;
  transition: all 0.15s ease-in-out;
}
.add-section:hover {
  border: 2px solid #1d4ed8;
  background-color: #dbeafe;
}

.add-section:hover .add-field-icon,
.add-section:hover .fas fa-plus-circle {
  color: #1d4ed8;
}

.new-field.draggedOver {
  color: #1d4ed8;
  border: 2px solid #1d4ed8;
  background-color: #dbeafe;
}
.new-field:hover {
  cursor: none;
  box-shadow: none;
}

.add-field-icon {
  font-size: 25px;
  color: #ccc;
  text-align: center;
  transition: all 0.15s ease-in-out;
}
.add-field-icon span {
  display: block;
  font-size: 16px;
}
.sectionContainer {
  flex: 1;
}
.sectionDragHandler {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 7px;
  background-color: #eeeeee;
  color: var(--color-grey-3);
  margin: 0 5px 0 0;
  border-radius: 5px;
}
.sectionDragHandler:hover {
  cursor: grab;
  color: #8d8d8d;
}
.section {
  background-color: #fbfbfb;
  border: 2px solid #ccc;
  border-radius: 5px;
  padding: 0 15px 15px 15px;
  transition: all 0.15s ease-in-out;
}
.section:hover {
  border: 2px solid #1d4ed8;
}

.section-header {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  border-bottom: 2px solid #ccc;
  margin-bottom: 15px;
}
.section-icon {
  transform: rotate(-90deg);
  transition: all 0.15s ease-in-out;
}
.section-icon.opened {
  transform: rotate(0deg);
}

.section-title {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 0;
}
.section-title-container {
  flex: 1;
  cursor: pointer;
}
.custom-field-title {
  font-size: 14px;
  margin-bottom: 0;
  font-weight: 600;
}
.label-container {
  display: flex;
  justify-content: space-between;
}
.field-type,
.field-peroperty {
  font-size: 12px;
  color: #b9b7b7;
  font-style: italic;
  transition: all 0.15s ease-in-out;
}

.field-container:hover .field-type,
.field-container:hover .field-peroperty {
  color: #1d4ed8;
}

.field-container:hover .field {
  border: 1px solid #1d4ed8;
}

#BuilderContainer {
  /* display: flex; */
  justify-content: space-between;
  /* position: relative; */
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 1px 1px 5px #ccc;
  border: 1px solid rgba(75, 94, 146, 0.25);
}
.NewBuilderLoader {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #eef5f9c6;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
}

#FieldProps {
  /* width: 45%; */
  position: sticky;
  top: 0;
  height: 100vh; /* Full height of the viewport */
  overflow-y: auto; /* Enable scrolling if content overflows */
  overflow-x: auto; /* Enable scrolling if content overflows */
  padding: 2em 2em 2em 0;
}
#NewFiled {
  background-color: #fff;
  position: sticky;
}

#sideMenu {
  background-color: #fff;
  position: sticky;
  min-height: 80vh;
  /* overflow-y: scroll; */
}
#sideMenuFooter {
  width: 100%;
  padding: 10px 0;
  text-align: right;
  display: flex;
  justify-content: end;
}

#PropSearch {
  border: 2px solid #ccc;
  border-radius: 5px;
  padding: 5px;
  width: 100%;
  font-size: 16px;
  line-height: 32px;
  display: flex;
  justify-content: space-between;
}

#PropSearch input[name="prop"] {
  border: none;
  flex: 1;
  padding: 5px;
}
#PropSearch button[name="searchButton"] {
  background-color: transparent;
  border: none;
  color: #1d4ed8;
}
.custom-prop {
  padding: 10px;
  background-color: #fbfbfb;
  border: 2px solid #ccc;
  border-radius: 4px;
  color: gray;
  margin-bottom: 4px;
  cursor: grab;
  display: flex;
  transition: all 0.15s ease-in-out;
  justify-content: space-between;
}

.custom-prop-type {
  font-size: 12px;
  color: #b9b7b7;
  font-style: italic;
  transition: all 0.15s ease-in-out;
}

.custom-prop-type.icon {
  font-size: 12px;
  color: #b9b7b7;
  transition: all 0.15s ease-in-out;
  line-height: 20px;
  margin-right: 10px;
  margin-top: 2px;
}

.custom-prop:hover {
  background-color: #dbeafe;
  border: 2px solid #1d4ed8;
  color: #1d4ed8;
}

.custom-prop:hover .custom-prop-type.icon {
  color: #1d4ed8;
}

.custom-helper {
  padding: 10px;
  background-color: #fbfbfb;
  border: 2px solid #ccc;
  border-radius: 4px;
  color: gray;
  margin-bottom: 20px;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}
.custom-helper-icon {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 20px;
}
.custom-helper-title {
  display: block;
  width: 100%;
  font-size: 14px;
  text-align: center;
}
.custom-helper.active,
.custom-helper:hover {
  background-color: #dbeafe;
  border: 2px solid #1d4ed8;
  color: #1d4ed8;
}

.new-field input[type="text"],
.new-field select,
.new-field textarea,
.new-field input[type="email"],
.new-field input[type="number"],
.new-field input[type="password"] {
  border-radius: 5px;
  font-size: 0.875rem;
  padding: 10px;
  border: 1px solid #e9ecef;
  display: block;
  width: 100%;
}
.form-title {
  border-bottom: 2px solid #ccc;
  padding-bottom: 5px;
  margin-bottom: 5px;
}

.translation-label {
  display: flex;
  justify-content: space-between;
}
.has-translation {
  position: relative;
}
.translation-form {
  position: relative;
}
.tranlsations-list {
  display: flex;
}
.translation_input {
  position: absolute;
  top: -208px;
  padding: 20px;
  background-color: #fff;
  width: 360px;
  border: 1px solid #ccc;
  border-radius: 5px;
  text-align: right;
  box-shadow: 1px 1px 5px #ccc;
  z-index: 9999;
}
.translation_input.right {
  right: 0;
}
.translation_input.left {
  left: 0;
}
.translation_input.bottom {
  top: 70px !important;
}
.tr-lang {
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 10px;
  border: 1px solid #8d8d8d;
  text-align: center;
  font-size: 10px;
  margin-left: 3px;
  color: #8d8d8d;
  transition: all 0.15s ease-in-out;
  text-transform: uppercase;
  overflow: hidden;
}
.tr-lang:hover {
  cursor: pointer;
  color: #fff;
  border: 1px solid #fff;
  background-color: #8d8d8d;
}
.expand-inline {
  display: flex;
  align-items: flex-start;
}

.expand-inline img {
  margin-top: 5px;
  margin-right: 5px;
}

.pop-container {
  position: relative;
}

.pop-window {
  position: absolute;
  bottom: -170px;
  padding: 20px;
  background-color: #fff;
  width: 360px;
  right: 6px;
  right: 6px;
  border: 1px solid #ccc;
  border-radius: 5px;
  text-align: right;
  box-shadow: 1px 1px 5px #ccc;
  z-index: 1000;
}

#li2 a {
  background: #f6f6f6 !important;
  color: #2d5c7a !important;
  opacity: 1 !important;
}
#li2 a.active {
  background: #2d5c7a !important;
  color: #ffffff !important;
}
.nav li:not(#li2) a {
  display: block;
  background: #f6f6f6;
  text-decoration: none;
  color: #151515;
  padding: 10px 15px;

  /* box-shadow: rgb(15 15 15 / 5%) 0px 0px 5px 1px; */
}
.nav li:not(#li2) a.active {
  background: #ffffff !important;
  /* border-bottom: none!important; */
  color: #2d5c7a;
}
li:not(#li2):has(> a.active) {
  /* border-right:  1px solid #f6f6f6;
    border-left:   1px solid #f6f6f6;
    box-shadow: rgb(15 15 15 / 15%) 0px 0px 5px 1px; */
}
@-moz-document url-prefix() {
  ul#pills-tab li.nav-item a.active {
    border-right: 1px solid #f6f6f6;
    border-left: 1px solid #f6f6f6;
    box-shadow: rgb(15 15 15 / 15%) 0px 0px 5px 1px;
  }
}
.table-responsive {
  overflow-x: visible !important;
}
#due-balance {
  font-size: 20px;
}

.total-blue {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-hblue);
}

.greyed {
  color: var(--color-greyed) !important;
}

#accounting_student_table td {
  vertical-align: top;
}

/* #datatableNewFilter div {
  padding: 0 10px;
} */

#filters .date-row div {
  align-items: center;
}

#filters .date-row .action_wrapper div {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.search-input {
  padding: 15px 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 4px 8px 0 rgba(75, 94, 146, 0.14);
  margin-bottom: 7px;
}
.reg-field-input {
  padding: 15px 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 4px 8px 0 rgba(75, 94, 146, 0.14);
  margin-bottom: 7px;
  display: flex;
  justify-content: space-between;
}

#filters .date-row div {
  align-items: center;
}

.accordion-body-title {
  padding: 1rem;
  text-decoration: underline;
}

.assistant-info {
  color: var(--color-primary);
  font-weight: bold;
}

.assistant-info-separator {
  margin: 0 20px;
}

.assistant-info-row-title {
  color: var(--color-primary);
  font-weight: bold;
  text-transform: uppercase;
  font-size: 12.8px !important;
}

.isActiveIcone {
  position: absolute;
  right: 20px;
  top: 8px;
}
.icon-button {
  background: none;
  border: none;
}
.icon-button:hover {
  cursor: pointer;
}
.btn-xs {
  padding: 2px 10px;
}

#resubscribe-select {
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  font-size: 14px;
  height: 36px;
  padding: 6px 12px;
  width: 100%;
  -webkit-transition: border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
#resubscribe-form {
  display: block;
  position: absolute;
  top: 50px;
  left: 5px;
  z-index: 100;
  margin: 0;
  padding: 15px;
  width: 75%;
  backdrop-filter: blur(1px);
}

.date-block {
  /* border:1px solid #ccc;
  border-radius:10px;
  background-color:rgba(0, 0, 0, 0.01);
 */
  padding: 20px;
  margin-bottom: 10px;
  position: relative;
  width: 100%;
}
#replayContainer {
  /* padding: 20px; */
}

.mt2 {
  margin-top: 2rem;
}

.inLoop {
  /* Plugin Form Validation Improvements */
  .plugin-form .form-group {
    position: relative;
    margin-bottom: 1.5rem;
  }

  .plugin-form .form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
  }

  .plugin-form .form-control.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
  }

  .plugin-form .invalid-feedback {
    display: block !important;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
  }

  .plugin-form .form-control.is-valid {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
  }

  .plugin-form .form-control.is-valid:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
  }

  .plugin-form .valid-feedback {
    display: block !important;
    color: #28a745;
    font-size: 0.875rem;
    margin-top: 0.25rem;
  }

  /* Loading state for buttons */
  .btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
  }

  /* Toast notifications improvements */
  .toast-container {
    z-index: 9999;
  }

  .toast-success {
    background-color: #28a745 !important;
    color: white !important;
  }

  .toast-error {
    background-color: #dc3545 !important;
    color: white !important;
  }

  .toast-warning {
    background-color: #ffc107 !important;
    color: #212529 !important;
  }

  .toast-info {
    background-color: #17a2b8 !important;
    color: white !important;
  }

  /* Form helper text styling */
  .form-text {
    font-size: 0.875rem;
    color: #6c757d;
    margin-top: 0.25rem;
  }

  /* Required field indicator */
  .required-field::after {
    content: " *";
    color: #dc3545;
    font-weight: bold;
  }

  /* Optional field indicator */
  .optional-field::after {
    content: " (optional)";
    color: #6c757d;
    font-size: 0.875rem;
    font-weight: normal;
  }

  border: 2px solid red !important;
}

/* Mobile Table Scrolling Fix */
@media (max-width: 767px) {
  .table-responsive {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    display: block !important;
    width: 100% !important;
  }

  .card-body {
    overflow-x: visible !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .email-table {
    min-width: 600px;
  }

  /* Ensure tables don't break on mobile */
  table {
    width: 100%;
  }

  .popover .arrow {
    display: none !important;
  }

  .editable-container {
    transform: translate3d(20px, 92px, 0px) !important;
  }
}
