@import url(./theme.css);
@import url(./fonts.css);
/************home page***************/

button:focus {
  outline: 0;
  box-shadow: unset !important;
}
button {
  cursor: pointer;
}
/* fonts */
h6 {
  font-size: 0.9rem;
  font-weight: 400;
}
h5 {
  font-size: 1rem;
  font-weight: 400;
}
h4 {
  font-size: 1.2rem;
  font-weight: 400;
}
h3 {
  font-size: 1.6rem;
  font-weight: 700;
}
h1 {
  font-size: 3.6rem;
  font-weight: 900;
}
.fs-12 {
  font-size: 12px;
}
.fs-14 {
  font-size: 14px;
}
.fs-16 {
  font-size: 16px;
}
.fs-20 {
  font-size: 20px;
}

.fs-24 {
  font-size: 24px;
}
.fs-48 {
  font-size: 48px;
}
/* font-weight */
.fw-700 {
  font-weight: 700;
}
.fw-500 {
  font-weight: 500;
}
.fw-400 {
  font-weight: 400;
}
/* colors */
.primary {
  color: var(--primary);
}
.secondary {
  color: var(--secondary) !important;
}
.third-color {
  color: var(--third-color);
}
.danger {
  color: var(--danger);
}
.danger,
a.danger:hover {
  color: var(--danger);
}
.warning {
  color: var(--warning-color);
}
.black {
  color: var(--black);
}
.gray-color {
  color: var(--dark-gray-text);
}
.light-gray {
  color: #e6e6e6f2;
}
.bg-primary {
  background-color: var(--primary) !important;
}
.bg-secondary {
  background-color: var(--secondary) !important;
}
button.bg-secondary:hover {
  background-color: var(--secondary) !important;
}

.bg-default {
  background-color: #fcfcfd;
}
/* buttons */
.btn {
  padding: 8px 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn:hover {
  opacity: 0.9;
}
.btn-border-secondary {
  border: 1px solid var(--secondary);
  background-color: #fff;
  color: var(--secondary) !important;
}
.btn-border-secondary:hover {
  background-color: var(--secondary);
  color: #fff !important;
}
.btn-border-danger {
  border: 1px solid var(--danger);
  background-color: #fff;
  color: var(--danger) !important;
}
.btn-border-danger:hover {
  background-color: var(--danger);
  color: #fff !important;
}
.btn-gradient {
  background: var(--gradient-primary);
  border: 0px;
  color: #fff;
}
.btn-primary {
  background-color: var(--primary);
  color: #fff !important;
  border: 1px solid var(--primary);
}
.btn-primary:hover {
  background-color: var(--primary) !important;
  opacity: 0.8 !important;
  border: 1px solid var(--primary);
}
.btn-primary:focus,
.btn-primary:active {
  background-color: var(--primary) !important;
  color: #fff !important;
  border: 1px solid var(--primary);
}
.primary-btn {
  background-color: var(--primary);
  color: #fff !important;
  border: 1px solid var(--primary);
}
.btn-primary.disabled,
.btn-primary:disabled {
  background-color: var(--primary) !important;
  color: #fff !important;
  border: 1px solid var(--primary) !important;
  opacity: 0.7 !important;
}
/* main style */
.card {
  border-radius: 21px;
  background: #fff;
  border: 0px;
  text-align: start;
}
.custom_card {
  background: #fff;
  padding: 16px;
  border-radius: var(--border-raduis);
}
.card_status {
  border-radius: 50px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 24px;
}
.dashboard-cards select,
header select {
  border: 1px solid rgba(1, 107, 133, 0.262);
  height: var(--input-height);
  border-radius: 12px;
  padding-inline: 8px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("../images/icons/chevron_down.svg");
  background-repeat: no-repeat;
  background-position: left 8px center;
  padding-inline-end: 30px !important;
  font-family: "Tajawal", sans-serif !important;
}
.dashboard-cards select,
header select {
  border: 1px solid rgba(1, 107, 133, 0.262);
  height: var(--input-height) !important;
  border-radius: 12px !important;
  padding-inline: 8px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("./assets/images/Chevron_down.svg");
  background-repeat: no-repeat;
  background-position: left 8px center;
  padding-inline-end: 30px !important;
  font-family: "Tajawal", sans-serif !important;
}

.dashboard-cards select,
.dashboard-cards select option,
header select,
header select option {
  color: var(--primary);
  font-family: Cairo;
  font-size: 0.9rem;
  font-weight: 400;
}
.active-year {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 400;
  border: 1px solid rgba(1, 107, 133, 0.262);
  border-radius: 12px;
  height: 40px;
  display: flex;
  align-items: center;
  padding: 5px 25px;
  margin-inline-end: auto;
}
.notification,
.chat {
  padding: 24px 12px 12px 12px !important;
  width: clamp(300px, 25vw, 500px);
}
.notification_img {
  width: 30px;
  height: auto;
}
.chat_img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}
.notification .custom-ul,
.chat .custom-ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.notification .custom-ul li,
.chat .custom-ul li {
  padding: 12px;
}
.notification .custom-ul li {
  background: #fbfbfb;
}
.notification_list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.notification_item {
  width: 100%;
  position: relative;
  padding-inline-start: 20px;
}
.notification_item::before {
  position: absolute;
  content: " ";
  background-color: var(--secondary);
  border-radius: 50%;
  width: 10px;
  height: 10px;
  inset-inline-start: 0px;
  inset-block-start: 5px;
}
.notification_item:not(:last-of-type)::after {
  position: absolute;
  content: " ";
  border: 1px dashed var(--secondary);
  height: 110%;
  inset-inline-start: 4px;
  inset-block-start: 5px;
}
.notification_item .date_title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
}
.notification_item .notification_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  padding: 12px;
  border-radius: 12px;
  background: #fbfbfb;
}
.notification_item .notification_msg {
  font-size: 16px;
  font-weight: 400;
}
.notification_item .date {
  color: #828487;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0px;
}
.chat .custom-ul li {
  background: #f4fbfb;
}
.dropdown_header {
  font-weight: 800;
  margin-bottom: 24px;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.custom-select {
  border: 1px solid rgba(1, 107, 133, 0.262);
  height: var(--input-height);
  border-radius: 10px;
  padding-inline: 10px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("../../portals/images/icons/chevron_down.svg");
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: left 8px center;
  padding-inline-end: 30px !important;
  font-family: "Tajawal", sans-serif !important;
}
.custom-select:focus {
  box-shadow: unset;
}
.custom-select,
.custom-select option {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 400;
}
.dropdown-menu {
  border-radius: 12px;
  background: #fff;
  padding: 8px 0px;
  text-align: start;
  border: 0px;
  z-index: 2;
  box-shadow: var(--box-shadow);
}
.dropdown-menu::before {
  content: "";
  position: absolute;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 16px solid #fff;
  filter: drop-shadow(3px 0px 5px rgba(0, 0, 0, 0.068));
  bottom: 99%;
  left: 10px;
}
.dropdown-item {
  padding: 6px 8px;
  font-weight: 500 !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.dropdown-item:not(:first-child) {
  border-top: 2px solid #f9f9f9ec;
}
.dropdown-item.active,
.dropdown-item:active {
  color: var(--dark-gray-text);
  text-decoration: none;
  background-color: #fff !important;
}
/* custom classes */
.main-padding {
  padding-inline: var(--main-padding-inline);
}
.gap-1 {
  gap: clamp(4px, 0.5vw, 12px);
}
.gap-2 {
  gap: clamp(10px, 1vw, 28px);
}
.gap-3 {
  gap: clamp(15px, 1.4vw, 40px);
}
.gap-5 {
  gap: clamp(20px, 3vw, 70px);
}
.title {
  text-transform: capitalize;
}
.img {
  width: 100%;
}
.img-height {
  height: 100%;
}
.w-200 {
  width: 200px;
}
.min-content {
  min-width: max-content;
}
.img-height {
  height: 100%;
}
.icon {
  cursor: pointer;
}
.icon-sm {
  width: 24px;
  height: 24px;
}
.icon-lg {
  width: 30px;
  height: 30px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(32%, 1fr));
  gap: 10px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(23%, 1fr));
  gap: 10px;
}
.full-width {
  grid-column: 1 / -1;
}
.custom-admin-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 15px;
}

.custom_flat_picker {
  width: 115px;
  border: 0px !important;
  background: transparent !important;
  background-image: url(../images/arrow.svg) !important;
  background-repeat: no-repeat !important;
  background-size: 14px !important;
  background-position: top 50% left 15px !important;
  -webkit-text-fill-color: #303236;
  color: #303236;
  padding: 0px;
}
.input_flat_picker {
  border-radius: 12px !important;
  border: 1px solid #e4e4e4;
  background: #fff !important;
  height: max-content;
}
.flat_picker_img {
  position: absolute;
  bottom: 0px;
  left: 0px;
  transform: translate(12px, -50%);
}
/* flat picker style */
.flatpickr-day {
  border-radius: 0px !important;
  border: 0px !important;
  padding: 0px !important;
}
.flatpickr-day.selected {
  background-color: var(--primary) !important;
}
/* aside */
aside::-webkit-scrollbar-thumb {
  background: var(--primary) !important;
}
aside::-webkit-scrollbar {
  width: 0px !important;
}
aside {
  background-color: var(--primary);
  color: #fff;
  position: fixed;
  transition: width 0.4s ease-in-out;
  width: 105px;
  height: 100%;
  overflow: auto;
  z-index: 100;
  inset-block-start: 0px;
  text-align: center;
  inset-inline-start: 0px;
}
.aside_content {
  direction: rtl;
}
.aside_logo {
  width: 100%;
  height: auto;
  max-height: 120px;
  margin: 37px 0px 20px 0px;
  padding-inline: 0.6rem;
}
aside ul {
  display: flex;
  flex-direction: column;
}
ul.aside_menu,
ul.sub_category_list {
  gap: 0.5rem;
}
ul.accordion {
  gap: 1rem;
}
li.parent-nav-item {
  padding: 0.5rem;
  width: 100%;
  position: relative;
  border-radius: 0px 40px 40px 0px;
  cursor: pointer;
}
li.parent-nav-item a.stretched-link {
  color: #fff;
}
.item-parent-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.item-parent-nav-item i {
  height: 32px;
}
.parent-nav-item.aside_active {
  color: var(--secondary);
  background-color: #fff;
  padding-block: 0.5rem 0.9rem;
}
.parent-nav-item.aside_active a.stretched-link {
  color: var(--secondary);
}
aside .modal_title {
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-body {
  padding: 24px;
}
aside .close_modal_icon {
  background-color: var(--primary-light);
  border-radius: 50%;
  font-size: 14px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 23px;
  font-weight: 600;
}
.modal-footer {
  padding: 24px;
  padding-top: 16px;
}
/* custom modal */
#upload_attachment .modal-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#upload_attachment .modal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.upload_Att_list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.upload_Att_item {
  padding: 12px 8px;
  background: #f9f9fa;
  border-radius: 8px;
  margin-left: 0px;
}
.form-check-input {
  appearance: none;
  -webkit-appearance: none;
  border: 2px solid var(--secondary);
  width: 19px;
  height: 18px;
  border-radius: 5px;
  margin-inline-end: 0.75rem;
  cursor: pointer;
  position: relative;
}
.form-check-input:checked::after {
  content: "✔";
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -46%);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}
.form-check-input:checked {
  background-color: var(--secondary);
}
.form-check-inline .form-check-input:checked {
  background-color: #fff;
  border-color: var(--secondary);
}
.form-check-inline .form-check-input:checked::after {
  color: var(--secondary);
}
/* for top curve */
li.aside_active::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2rem;
  background-color: var(--primary);
  bottom: 100%;
  right: 0;
  border-bottom-left-radius: 2rem;
  z-index: -1;
}
li.aside_active::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2rem;
  background-color: #fff;
  bottom: 100%;
  right: 0;
  z-index: -2;
}
/* for bottom curve */
li.aside_active .title::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2rem;
  background-color: var(--primary);
  top: 100%;
  right: 0;
  border-top-left-radius: 2rem;
  z-index: -1;
}
li.aside_active .title::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2rem;
  background-color: #fff;
  top: 100%;
  right: 0;
  z-index: -2;
}

.child-nav-item {
  display: none;
  flex-direction: column;
  background: #fff;
  text-align: start;
  position: fixed;
  inset-inline-start: 105px;
  inset-block-start: 0px;
  height: 100%;
  padding: 12px 20px;
  color: var(--third-color);
  width: clamp(250px, 20%, 400px);
  gap: 16px;
  overflow: auto;
  filter: drop-shadow(-4px 7px 3px rgba(167, 167, 167, 0.258));
  min-width: 250px;
  z-index: 1000;
}
.aside_menu .card {
  border-radius: 20px !important;
  overflow: hidden;
  border: 1px solid #f3f8f9 !important;
}
aside li.parent-nav-item .card-header {
  padding: 0px;
  background-color: var(--primary-light);
  border: 0px;
}
.aside_menu .card-header button {
  border: 0px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--third-color) !important;
  text-decoration: none;
}
.aside_menu .card-body {
  color: var(--gray-text);
  padding: 8px 12px;
}
.aside_menu .card-body .child-item-title {
  color: var(--gray-text);
}

.nav-link {
  display: flex;
  padding: 0.6rem;
}
.nav-link svg {
  min-width: 24px;
  min-height: 24px;
}
.aside_active .nav-link::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2rem;
  background-color: var(--primary);
  top: 100%;
  right: 0;
  border-top-left-radius: 2rem;
  z-index: -1;
}
.aside_active .nav-link::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2rem;
  background-color: var(--gray-bg);
  top: 100%;
  right: 0;
  z-index: -2;
}
.aside_footer_img {
  flex-grow: 1;
  margin: 5px auto;
  gap: 12px;
}
.aside_footer_logo {
  width: 100%;
  max-width: 200px;
  max-height: 120px;
  margin-bottom: 25px;
}
.aside-divider {
  width: 80%;
  margin-inline: auto;
  height: 4px;
  border-top: 3px solid rgba(3, 49, 67, 0.76);
  background-color: rgba(47, 104, 128, 0.76);
}
/* aside dropdown */
.dropdown-toggle::after {
  display: none;
}
aside .dropdown-menu {
  position: static !important;
  transform: translate(0px, 0px) !important;
  max-width: 100% !important;
  min-width: unset;
  list-style: none;
  width: 100%;
  text-align: start;
  background: transparent;
  border: 0px;
  padding: 7px 10px;
}
aside .dropdown-item:hover,
aside .dropdown-item:focus,
aside .dropdown-item:active {
  background-color: transparent !important;
  color: #fff !important;
}
aside .dropdown-item {
  white-space: wrap !important;
  padding: 10px 0px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

aside .dropdown-item .aside_item,
aside .dropdown-item i::before {
  font-size: 14px !important;
  font-weight: 700;
  color: #fff;
}
.aside_item {
  white-space: break-spaces;
}
aside .aside_active .dropdown-item .aside_item {
  color: var(--third-color);
  font-size: 15px;
}
aside .aside_active .dropdown-item i {
  color: var(--third-color);
  font-size: 15px;
}
aside .aside_active .dropdown-item svg path {
  fill: var(--third-color);
}
aside .dropdown-item svg path {
  fill: #fff;
}
aside .dropdown-item.active,
aside .dropdown-item:active {
  color: unset;
}
aside .bi {
  vertical-align: -0.3em;
}
aside input[type="search"] {
  border-radius: 7px;
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  padding-inline-start: 35px;
}
.search-icon {
  inset-inline-start: 12px;
  inset-block-start: 25%;
}
.search-icon > img {
  filter: grayscale(1);
  opacity: 0.7;
}
#searchResults .dropdown-item {
  border: 0px;
  padding: 6px 0px;
}
.Grandchild_list {
  gap: 8px;
}
.Grandchild_list .card {
  border: 0px !important;
}
.Grandchild_list .card-header {
  background-color: transparent !important;
}
.Grandchild_list .card-body {
  border: 1px solid #f3f8f9 !important;
  border-radius: 20px;
}
.child_list svg {
  min-width: 22px;
  min-height: 23px;
}
/* child // grandchild hover */
.child_list  li:hover > .child-item-title ,
.Grandchild_list li:hover > .custom-h,
/* .child_list li:hover > svg path , */
.Grandchild_list li:hover > svg path {
  color: var(--secondary);
  fill: var(--secondary) !important;
}
.sub_category_list li.aside_active,
.child_list li.aside_active,
.Grandchild_list li.aside_active {
  background-color: var(--primary-light);
  border-radius: 8px;
  color: var(--secondary);
  padding: 6px 8px;
  gap: 5px;
}
/* to colored a tag */
.sub_category_list li.aside_active a,
.child_list li.aside_active a,
.Grandchild_list li.aside_active a {
  color: var(--secondary) !important;
}
.Grandchild_list li.aside_active path {
  fill: var(--secondary);
}
/* header */
.top-bar {
  background-color: #fff;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding-block: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(3px, 0.2vw, 10px);
  position: sticky;
  z-index: 40;
  top: 0;
  width: 100%;
}
.user-controls {
  display: flex;
  align-items: center;
  gap: clamp(5px, 2vw, 15px);
  padding-inline: clamp(3px, 1vw, 15px);
}
.header_icon {
  border: 0px;
  border-inline-end: 2px solid #e4e4e4;
  height: 100%;
  position: relative;
  background: transparent;
  padding: 0px;
  padding-inline-end: clamp(3px, 0.5vw, 10px);
}
.indicator {
  position: absolute;
  inset-block-start: -5px;
  inset-inline-start: -2px;
  padding: 2px;
  aspect-ratio: 1/1;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #e80000;
  border-radius: 50%;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
}
.relative-indicator {
  padding: 10px;
  max-height: 26px;
  font-size: 12px;
  aspect-ratio: 1/1;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #e80000;
  border-radius: 50%;
  color: #fff;
  font-weight: 600;
}
.explore-button .icon-lg {
  padding: 1.7px;
}
.fa-chevron-down {
  font-weight: 700 !important;
  font-size: 16px !important;
  color: #a8adb7;
  vertical-align: sub;
}
header select {
  min-width: 113px;
  width: 44%;
  max-width: 250px;
}
/* main */
main {
  width: calc(100% - 105px);
  margin-right: auto;
  height: 100vh;
  /* overflow-x: hidden; */
}
.main-content {
  padding-block: clamp(15px, 1vw, 50px);
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: clamp(20px, 1.5vw, 100px);
  flex-grow: 1;
}
.main_grid_cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.main_grid_cards > .card {
  position: relative;
  padding: 8px;
}
.main_grid_cards .card .card-img {
  position: absolute;
  bottom: -10%;
  inset-inline-end: clamp(10px, 1.5vw, 25px);
  height: 140%;
}
.main_grid_cards .card-img img {
  height: 100% !important;
}
.main_card_number {
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
}
.main_card_title {
  font-size: 14px;
  font-weight: 400;
  color: #4f5159;
}
.dashboard-cards > div {
  min-width: calc(50% - (clamp(15px, 1.4vw, 40px)));
}
.card-header {
  border-radius: 21px 21px 0px 0px !important;
  padding: 8px 20px;
  border: 0px;
  color: #fff;
  text-align: start;
}
.card-subject-list {
  color: var(--dark-gray-text);
}
.chart_parent {
  overflow: auto;
}
#register_student_for_each_stage {
  /* min-width: 600px; */
}
/* custom accordion */
.custom_accordion .card {
  border-radius: 12px !important;
  border-bottom: 1px solid #f5f5f5;
  border: 1px solid #f5f5f5 !important;
  overflow: hidden;
}
.custom_accordion .card-header {
  background: #eaf8f9;
  border-radius: 0px !important;
  padding: 12px;
}
.custom_accordion .card-header .btn {
  color: var(--primary) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  justify-content: space-between;
  padding: 0px;
}
.custom_accordion .card-body {
  padding: 12px;
  font-size: 14px;
  font-weight: 400;
}
/* calender */
.dashboard-cards .fc-media-screen {
  position: relative;
}
.dashboard-cards .fc-view-harness {
  height: 340px !important;
  max-height: unset;
}
.dashboard-cards .fc-scrollgrid-sync-table {
  height: 100% !important;
}
.dashboard-cards .fc-scroller {
  overflow: hidden !important;
}
.dashboard-cards .fc .fc-button-primary:disabled {
  display: none;
}
.dashboard-cards .fc-header-toolbar {
  position: absolute;
  width: 100%;
}
.dashboard-cards .fc-toolbar {
  display: inline;
}
.dashboard-cards .fc-toolbar-chunk:has(.fc-toolbar-title) {
  width: 100%;
}
.dashboard-cards .fc-toolbar-title {
  text-align: center;
  width: 100%;
  color: var(--gray-text);
  font-size: 20px !important;
  font-weight: 400 !important;
}
.dashboard-cards .fc .fc-view-harness {
  margin-top: 40px;
}
.dashboard-cards .fc-button-group {
  margin: 0px !important;
  position: absolute !important;
  width: 100%;
  height: 100%;
  left: 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: 0px;
}
.dashboard-cards .fc-button-group button {
  max-width: 35px;
  aspect-ratio: 1/1;
  padding: 0px !important;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  color: var(--secondary) !important;
  background-color: transparent !important;
  border: 1px solid var(--secondary) !important;
  border-radius: 10px !important;
}

/* table calender */
.dashboard-cards .fc .fc-scrollgrid-liquid,
.dashboard-cards .fc-scrollgrid th,
.dashboard-cards .fc-scrollgrid td {
  border: 0px;
  text-align: center;
  vertical-align: middle;
  z-index: 0;
  position: relative;
}
.dashboard-cards .fc-scrollgrid th {
  border-bottom: 1px solid #dfdfdf;
  padding: 7px 0px 0px 0px;
  margin-bottom: 7px;
  font-weight: 600;
  color: var(--dark-gray-text);
}
.dashboard-cards .fc-daygrid-day-frame {
  /* min-height: unset; */
  position: relative;
  border-radius: 30px;
  padding: 0px;
  margin-inline: auto;
  margin-block: 8px;
  width: 30px;
  font-weight: 700;
  aspect-ratio: 1/1;
}

.dashboard-cards .fc .fc-daygrid-day-top {
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}
.dashboard-cards .fc .fc-daygrid-day.fc-day-today .fc-daygrid-day-frame {
  color: #fff !important;
}
.dashboard-cards .fc .fc-daygrid-day.fc-day-today {
  background-color: unset;
}
.fc-scroller-harness {
  height: max-content;
}
.fc .fc-daygrid-day.fc-day-today {
  background-color: unset;
}
.dashboard-cards .fc .fc-daygrid-day.fc-day-today .fc-daygrid-day-frame {
  background-color: var(--primary-light);
  color: var(--primary);
}
.fc .fc-daygrid-day.fc-day-today .fc-daygrid-day-frame > .fc-daygrid-day-top {
  background-color: var(--secondary) !important;
  color: #fff !important;
}
.dashboard-cards .fc-today-button {
  display: none !important;
}
/* calender events colors */
.dashboard-cards .fc-daygrid-day.holiday-td > div,
.holiday-color {
  background-color: #c2c2c2 !important;
  color: #fff;
}
.dashboard-cards .fc-daygrid-day.absence-td > div,
.absence-color {
  background-color: #cc2073 !important;
  color: #fff;
}
.dashboard-cards .fc-daygrid-day.present-td > div,
.present-color {
  background-color: var(--secondary) !important;
  color: #fff;
}
.dashboard-cards .fc-daygrid-day.trips-td > div,
.trips-color {
  background-color: var(--primary) !important;
  color: #fff;
}
.fc-daygrid-day.event-td > div .fc-daygrid-day-top {
  position: relative;
  cursor: pointer;
}
.fc .fc-daygrid-day-frame:hover .fc-daygrid-day-top {
  background-color: var(--primary-light) !important;
  color: #181d27 !important;
}
.fc-daygrid-day.event-td > div .fc-daygrid-day-top:after {
  content: " ";
  position: absolute;
  background-color: var(--secondary);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  bottom: 8%;
  left: 50%;
  transform: translate(-50%, 0);
}
.fc-daygrid-day.event-td.active > div .fc-daygrid-day-top {
  border: 2px solid var(--secondary) !important;
  background-color: var(--primary-light) !important;
}
.dashboard-cards .calender_card .legend {
  border-radius: 50%;
  width: 27px;
  aspect-ratio: 1/1;
}

/* calendar details */
#event-details {
  border-inline-start: 1px solid var(--secondary);
  background: var(--primary-light);
  color: var(--secondary);
  padding: 25px 12px;
  font-size: 15px;
  font-weight: 700;
  margin-top: 25px;
  display: none;
}
.fc-daygrid-day-events {
  position: absolute !important;
  top: 6px !important;
  left: 50% !important;
  transform: translate(-50%, 0px) !important;
  z-index: 111;
  opacity: 0;
  cursor: pointer;
}
.fc .fc-daygrid-event {
  height: 40px;
  width: 40px;
}

/* full calendar style */
.full_Calendar {
  min-height: max-content;
  overflow: auto;
}
/* prev / next bts style */
.page_filter .fc-header-toolbar {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.page_filter .fc-button-group {
  display: flex;
  gap: 10px;
  align-items: center;
}
.page_filter .fc-toolbar-title {
  font-size: 16px;
  font-weight: 500;
  margin: 0px;
  white-space: nowrap;
}
.page_filter .fc-prev-button,
.page_filter .fc-next-button {
  background: transparent;
  border: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 20px;
  color: var(--secondary);
  font-weight: 900;
  padding-inline: 0px;
}
.page_filter .fc-today-button {
  display: none;
}
/* end btns style */
.full_Calendar .presentation {
  padding: 0px;
}
.full_Calendar .fc-theme-standard .fc-scrollgrid {
  border: 0px;
}

.full_Calendar table.fc-col-header th,
.full_Calendar table.fc-col-header td,
.full_Calendar table.fc-scrollgrid-sync-table th,
.full_Calendar table.fc-scrollgrid-sync-table td {
  background-color: #fff;
  border: 0px;
  border-radius: 8px;
  padding: 8px;
}
.full_Calendar .fc .fc-scroller {
  width: 100%;
}

.full_Calendar table.fc-col-header,
.full_Calendar table.fc-scrollgrid-sync-table {
  border-collapse: separate;
  border-spacing: 10px;
  background-color: var(--body-bg);
}
.full_Calendar table.fc-col-header {
  border-collapse: separate;
  border-spacing: 10px 0px;
  background-color: var(--body-bg);
}
.full_Calendar .fc-col-header,
.full_Calendar .fc-scrollgrid-sync-table {
  min-width: 600px;
}
.full_Calendar .fc-col-header-cell-cushion {
  font-size: 14px;
  font-weight: 400;
}
.full_Calendar .fc-daygrid-day-number {
  color: #848a9c !important;
  font-size: 14px;
  font-weight: 400;
}
.full_Calendar .fc-theme-standard td,
.full_Calendar .fc-theme-standard th {
  border: 0px;
}
.full_Calendar .fc-daygrid-day-events::after,
.full_Calendar .fc-daygrid-day-events::before,
.full_Calendar .fc-daygrid-day-frame::after,
.full_Calendar .fc-daygrid-day-frame::before,
.full_Calendar.fc-daygrid-event-harness::after,
.fc-daygrid-event-harness::before {
  content: none;
}
.full_Calendar .fc .fc-daygrid-day-frame {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.full_Calendar .fc-daygrid-day-bottom {
  display: none;
}

.full_Calendar .fc .fc-daygrid-day.fc-day-today {
  background-color: #fff;
}
.full_Calendar .fc-day-today .fc-daygrid-day-number {
  color: var(--secondary) !important;
  background-color: var(--secondary-light) !important;
}
.full_Calendar .fc .fc-daygrid-day-number {
  max-height: max-content;
}
.full_Calendar .fc .fc-scroller {
  overflow: auto !important;
}
.fc-view-harness {
  height: max-content;
  min-height: 340px;
}
/* events style */
.full_Calendar .fc-daygrid-event-harness::after {
  content: none;
}
.full_Calendar .fc .fc-daygrid-day-top {
  flex-direction: row;
  flex-grow: 1;
}
.full_Calendar .special-event {
  padding: 8px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  border: 0px;
  position: relative;
}
.upcoming {
  background-color: var(--secondary);
  color: #fff;
}
.ended {
  background-color: #f0f1f3;
  color: #303236 !important;
}
.ended .fc-event-title {
  color: #303236 !important;
}
.fc-h-event .fc-event-title {
  white-space: break-spaces;
}
.event-tooltip {
  z-index: 9999;
  min-width: 180px;
  direction: rtl;
  text-align: right;
  color: #333;
  font-size: 14px;
  background-color: #fff;
  border-radius: 12px;
  padding: 12px;
  width: 20vw;
  box-shadow: 0px 0px 12px -2px rgba(16, 24, 40, 0.12);
}
.event-tooltip h4 {
  margin: 0 0 5px 0;
  font-size: 16px;
  color: #000;
}
.event-tooltip p {
  margin: 0;
  font-size: 14px;
  color: #666;
}

.tooltip-title {
  font-weight: 500;
  font-size: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f0f1f3;
}
/*******************add new form**************/
.content {
  padding: 20px 0px;
}
.heading {
  background-color: var(--white);
  border-radius: var(--border-raduis);
  margin-bottom: 16px;
}
.heading .title {
  font-size: 20px;
  font-weight: 500;
  color: var(--black);
  border-bottom: 1px solid var(--border-color);
}
.stepsTabs,
.customTabs {
  border: none;
  gap: 12px;
}
.stepsTabs .nav-item:not(:last-child) .nav-link:after {
  content: "\f060";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 14px;
  margin-inline-start: 8px;
}
.stepsTabs .nav-link,
.customTabs .nav-link {
  border: none;
  padding: 0;
  color: #939393;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}
.stepsTabs .nav-link.active {
  color: var(--green-color);
}
.stepsTabs .nav-link.completed {
  color: var(--primary);
}
.step-icon {
  font-size: 24px;
  background-color: #f8f9fc;
  width: 36px;
  height: 36px;
  border-radius: 50%;
}
.nav-link.completed .step-icon > i {
  font-size: 16px;
  font-weight: 900;
}
.nav-link.completed .step-icon > i:before {
  content: "\f00c";
}
.accordion-item {
  background-color: var(--white);
  border-radius: var(--border-raduis);
  margin-bottom: 16px;
}
.accordion-title > button {
  font-size: 20px;
  font-weight: 500;
  position: relative;
  width: 100%;
  color: var(--black);
  padding: 20px;
  justify-content: space-between;
}
.accordion-title > button::after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 11px;
  background-color: rgba(110, 120, 135, 0.05);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #6e7887;
  transition: 0.5s ease;
}
.accordion-title > button[aria-expanded="true"]::after {
  transform: rotate(180deg);
}
.required::after {
  content: "*";
  color: red;
  font-size: 14px;
  padding-inline-start: 2px;
}
.accordion-body {
  border-top: 1px solid var(--border-color);
  padding: 20px;
}
/************form**********/
.form-label {
  font-size: 14px;
  color: var(--black);
  display: block;
}
.dashboard-cards .form-control {
  height: 44px;
  border-radius: var(--border-raduis);
  font-size: 14px;
  border: 1px solid var(--border-color);
  padding: 10px 14px;
}
select.form-control {
  appearance: none;
  min-width: 85px;
  background-image: url("../../assets/images/arrow-down.svg");
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: top 50% right 15px;
}
html[dir="rtl"] select.form-control {
  background-position: top 50% left 15px;
}
.datepicker.form-control,
.timepicker.form-control {
  background-color: transparent;
}
.form-control:focus {
  box-shadow: none;
  border-color: var(--secondary);
}
.custom-radio {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: calc(2.25rem + 2px);
  border-radius: 5px;
  font-size: 14px;
  border: 1px solid var(--border-color);
  padding: 10px 14px;
}
.custom-upload-area {
  border: 1px dashed var(--border-color);
  border-radius: var(--border-raduis);
  padding: 20px;
  gap: 10px;
  cursor: pointer;
  flex-direction: column;
}
.upload-icon {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: #f8f9fc;
  font-size: 20px;
  color: var(--secondary);
}
.custom-upload-area .desc {
  color: var(--black);
  font-size: 14px;
  gap: 10px;
}
.custom-upload-area .desc {
  flex-direction: column;
}
.custom-upload-area .desc mark {
  color: var(--secondary);
  background-color: transparent;
}
.upload-note {
  color: #939393;
  text-align: center;
}
.form-check-label {
  font-size: 14px;
}
.form-check-input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  min-width: 16px;
  min-height: 16px;
  border: 1px solid #9da4b0;
  border-radius: 50%;
  outline: none;
}
.form-check-input[type="radio"]:checked {
  border-color: var(--green-color);
  background: radial-gradient(#7cc242 0%, #7cc242 40%, transparent 50%);
}
.step-btns {
  background-color: var(--white);
  justify-content: space-between;
  padding: 20px;
  border-radius: var(--border-raduis);
}
.step-btns .btn-group {
  gap: 12px;
  margin-inline-start: auto;
}
.step-btns button {
  height: 44px;
  border-radius: var(--border-raduis);
  font-size: 14px;
  font-weight: 700;
  border: 1px solid var(--primary);
  padding: 10px 28px;
}
.with-transparnt {
  color: var(--primary);
  background-color: transparent;
}
.with-background {
  background-color: var(--primary);
  color: var(--white);
}
/**************parent forms***************/
.name-inputs {
  gap: 8px;
}
.add-new-school {
  text-align: end;
}
.add-new-btn {
  background-color: var(--green-color);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--border-raduis);
  padding: 10px 20px;
}
.add-new-btn > i {
  font-size: 12px;
  margin-inline-end: 5px;
}
.add-new-btn:hover {
  background-color: var(--primary) !important;
  color: var(--white);
}
.aside_open_icon {
  position: fixed;
  top: 10%;
  right: 0px;
  transform: translate(0%, -50%);
  background-color: var(--primary);
  color: #fff;
  width: 50px;
  z-index: 5;
  border-radius: 12px 0px 0px 12px;
  height: 38px;
  display: none;
  align-items: center;
  justify-content: center;
  transition: right 0.4s ease-in-out;
}
.links_card {
  background-color: #fff;
  padding: var(--main-padding-inline);
  border-radius: var(--border-raduis);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px 5px;
}
.links_card .title {
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}
.links_card_btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: end;
}
.link_card_btn {
  border-radius: 8px;
  border: 1px solid #f3f4f6;
  background: #fcfcfd;
  padding: 9px 16px;
  display: flex;
  gap: 8px;
  align-items: center;
  color: #565656;
}
.link_card_btn:hover {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}
.chart_card {
  padding: 16px;
  border-radius: var(--border-raduis);
  background-color: #fff;
}
.main-header-title {
  font-size: 18px;
  font-weight: 700;
}

/* legend Financial_statistics chart */
.apexcharts-legend-series {
  /* direction: rtl; */
  gap: 6px;
  margin: 0px;
}
#Financial_statistics .apexcharts-legend,
#Weekly_attendance .apexcharts-legend {
  top: 0px !important;
  gap: 8px;
  padding: 0px;
}
#Financial_statistics .apexcharts-legend {
  display: none;
}
.Financial_chart .apexcharts-legend {
  position: relative !important;
  gap: 20%;
}
.Financial_chart .apexcharts-legend-series {
  gap: 8px;
}
.Financial_chart .filter-legend {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
#legend-section {
  position: relative;
  padding: 0px;
}
.chart_parent {
  overflow: auto;
}
#Financial_statistics {
  min-width: 700px;
}
#Weekly_attendance {
  max-width: 100%;
  overflow: hidden;
  min-width: 400px;
}
#Parent_Teacher_Meetings_Statistics {
  min-width: 500px;
}
#Student_submissions .apexcharts-legend,
#Students_registered_for_each_stage .apexcharts-legend {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 3px;
}
@media screen and (max-width: 1204px) and (min-width: 815px) {
  .custom-admin-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "first third"
      "second second";
  }

  .custom-admin-grid > .custom_card:first-child {
    grid-area: first;
  }

  .custom-admin-grid > .custom_card:nth-child(2) {
    grid-area: second;
  }

  .custom-admin-grid > .custom_card:last-child {
    grid-area: third;
  }
}
@media screen and (max-width: 767px) {
  .tabs-block {
    margin-bottom: 20px;
  }
  .financialTabs {
    justify-content: center;
    gap: 5px;
  }
  .financialTabs .nav-link {
    padding: 5px 15px;
  }
  .accordion-title > button {
    font-size: 16px;
  }
  .step-btns button {
    font-size: 12px;
    padding: 10px 17px;
  }
}
@media screen and (max-width: 815px) {
  .custom-admin-grid {
    grid-template-columns: unset !important;
    display: flex;
    flex-direction: column;
  }
  .custom_card {
    width: 100%;
  }
}
@media screen and (max-width: 667px) {
  .links_card {
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }
  .links_card_btns {
    justify-content: start;
  }
}

/* interior pages */
.page_header {
  border-radius: 16px;
  background: linear-gradient(90deg, #28b6be 0%, #28b6be 18.74%, #1d5166 100%);
  padding: 20px;
  color: #fff;
  width: 100%;
  position: relative;
  margin-top: 20px;
}
.page_header_Desc {
  margin: 0px;
  text-align: start;
}
.page_header_title {
  text-align: start;
  max-width: 55%;
}
.page_header_img {
  position: absolute;
  inset-inline-end: 25px;
  bottom: 0px;
  width: 18%;
  min-width: 150px;
}

/* tabs */
.page_filter {
  background-color: #fff;
  border-radius: 12px;
  padding: 12px;
}
.page_filter .form-select {
  border-radius: 8px;
  background: #f4f4f4;
  border: 0px;
  height: 40px !important;
  padding: 8px 10px;
  cursor: pointer;
}

.card hr {
  border-color: #f0efeff0;
}
/* card without header */
.card_without_header,
.card_with_header {
  border-radius: 12px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card_without_header {
  padding: 16px;
  border: 1px solid #f0f1f3;
}
.card_without_header hr {
  margin: 0px;
}
.card_without_header .date {
  padding: 8px;
  border-radius: 8px;
  background: var(--secondary-light);
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--secondary);
}

/* card with header */
.card_with_header {
  overflow: hidden;
}
.card_with_header .card_header,
.card_with_header .card_body {
  padding: 16px;
}
.card_with_header .card_header {
  background-color: var(--secondary);
  color: #fff;
  display: flex;
  justify-content: space-between;
  gap: 7px;
  align-items: center;
}
.card_with_header .card_body {
  display: flex;
  gap: 16px;
  flex-direction: column;
}
.card_body_list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card_body_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  flex-wrap: wrap;
}
.card_images_collection {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(23%, 23%));
  gap: 2%;
  justify-content: space-between;
}
.image_collection_item {
  border-radius: 8px;
  aspect-ratio: 1/1;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.gallery-cont {
  position: relative;
  background: #ebebebc7;
  border-radius: 8px; 
}
.play-icon {
  color: var(--white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
}
.card_Details_item {
  min-width: 45%;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}
.Details_item_icon {
  border-radius: 50%;
  padding: 7px;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary-light);
}
.details_item_video {
  position: relative;
  width: 100%;
  border-radius: 12px;
  height: 130px;
  background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    url(<path-to-image>) lightgray 50% / cover no-repeat;
}
.details_item_video .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  background-color: var(--secondary);
  border-radius: 50%;
  height: 15px;
  width: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 27px;
}
.details_item_video video {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}
.card_Details_item a:hover {
  text-decoration: none;
  color: var(--secondary);
}
.modal-header {
  padding: 24px;
  border: 0px;
  background-color: #fff;
}
.modal-title {
  font-size: 20px;
  font-weight: 700;
}
.modal button.close {
  background-color: var(--primary);
  color: #fff;
  border-radius: 8px;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-weight: 400;
  font-size: 24px;
  padding: 3px 11px 6px 11px;
}
.modal-footer {
  border: 0px;
}
/* chat page */
.chat_page {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 16px;
  overflow: hidden;
  max-height: 100%;
}
.messages_section,
.chat_section {
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}
.chat_section {
  padding: 0px;
}
.messages_section {
  padding-block: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.messages_section select.form-control {
  border-radius: 10px;
  background-color: #f4fbfb;
  border: 0px;
  color: #016b85;
  padding: fit-content;
}
.messages_section input.form-control {
  border-radius: 12px;
  border: 1px solid #cfd3d4;
  padding: 8px 12px;
}
.message_user {
  padding: 12px 24px;
  background: #f4fbfb;
}
.message_user.new_msg {
  border-inline-start: 4px solid var(--secondary);
}
.chat_section .header {
  padding: 24px 21px 19px 21px;
  border-bottom: 1px solid #e4e6ec;
}
.chat_status {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-inline-start: 18px;
  position: relative;
}
.chat_status::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  inset-block: 50%;
  right: 0px;
  border-radius: 50%;
  transform: translateY(-50%);
}
.chat_status.online {
  color: #00bf6c;
}
.chat_status.online::before {
  background-color: #00bf6c;
}
.chat-body {
  padding: 12px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-grow: 1;
  overflow: auto;
}
.chat_section .date {
  border-radius: 8px;
  background: #f4f5fa;
  padding: 8px 12px;
  width: max-content;
  margin: auto;
}
.messages {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.message {
  display: flex;
  gap: 8px;
}
.message_option {
  color: #848a9c;
}
.message_imgs {
  display: flex;
  gap: 10px;
}
.message_imgs .message_img_item {
  height: 120px !important;
  width: auto;
  border-radius: 8px;
}
.message-content .text {
  padding: 16px;
  border-radius: 12px 0px 12px 12px;
  background: #f5f7f8;
  max-width: 550px;
  display: flex;
  gap: 10px;
  margin-bottom: 0px;
  flex-direction: column;
}
.chat_footer {
  display: flex;
  border-radius: 12px;
  padding: 12px;
  margin: 24px;
  border: 1px solid #e1e2e9;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}
.send_btn {
  background-color: var(--secondary-light);
  color: var(--secondary);
}
.chat_footer textarea {
  border: 0px;
  resize: none;
}
.Complaints_form {
  min-width: max-content;
  width: 65%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: end;
}
.Complaints_form .form-group {
  width: 100%;
  margin: 0px;
}
.Complaints_form .form-control {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #e4e4e4;
  padding: 12px;
  height: max-content;
}
.Complaints_form textarea {
  resize: none;
}
.Complaints_section {
  background: #fff;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5vw;
}
.Complaints_img {
  width: 50%;
  min-width: 200px;
  height: auto;
  margin: auto;
}

/* media query */
@media screen and (min-width: 1337px) {
  .class-schedule .table-responsive {
    overflow: hidden;
  }
}
@media screen and (max-width: 767px) {
  .accordion-title > button {
    font-size: 16px;
  }
  .step-btns button {
    font-size: 12px;
    padding: 10px 17px;
  }
  /* .form-control {
    font-size: 9px;
  } */
  .form-check-label {
    font-size: 12px;
  }
  .grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(49%, 1fr));
  }
  .grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(32%, 1fr));
  }
}

@media screen and (max-width: 454px) {
  aside {
    width: 0px;
  }
  aside.open {
    width: 105px;
  }
  .aside_open_icon {
    display: flex;
  }
  .aside_open_icon.open {
    right: 103px;
  }
  .aside_open_icon.open i::before {
    content: "\f101";
  }
  main {
    width: 100%;
  }
  .grid-3,
  .grid-4 {
    grid-template-columns: unset;
  }
}

/*************************families table ************/
.actions-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.actions-btns .action-btn {
  color: #8b8d98;
  font-size: 16px;
}
.families .dropdown {
  display: inline-block;
}
.families .dropdown-menu {
  min-width: 120px;
  left: -15px !important;
}
.families .dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 2px 15px;
}
.families .action-btn:hover,
.families .dropdown-menu .dropdown-item:hover {
  color: var(--primary);
}
.add-new-btn.add-secondery,
.families .add-new-btn {
  background-color: var(--secondary);
}
.families .heading .title {
  border: none;
}
.families .heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
}
.fltrs {
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.tabs-block {
  border: 1px solid var(--border-color);
  border-radius: var(--border-raduis);
  overflow: hidden;
}
.tabs-block .nav-tabs,
.tabs-block .nav-tabs .nav-link {
  border: none;
}
.tabs-block .nav-tabs .nav-link {
  padding: 11px 20px;
  background-color: var(--white);
  color: #414651;
  font-size: 14px;
}
.tabs-block .nav-tabs .nav-link.active {
  background-color: rgba(79, 113, 212, 0.1);
  color: var(--primary);
}
.fltrs .search {
  min-width: 242px;
  margin-inline-end: 12px;
}
.filter-btn {
  width: 84px;
  height: 44px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-raduis);
  background-color: var(--white);
  color: #414651;
}
.filter-btn > i {
  margin-inline-end: 5px;
}
.families .fltrs .dropdown-menu {
  left: 0 !important;
}
.pagination-block {
  margin: 20px 0;
}
.pagination {
  display: flex;
  padding: 0;
  margin: 0;
  gap: 8px;
}
.page-item .page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  text-decoration: none;
  background-color: transparent;
  color: var(--primary);
  border-radius: var(--border-raduis) !important;
  transition: 0.3s ease;
}
.page-item .page-link.next,
.page-item .page-link.previous {
  border: 1px solid var(--border-color);
}
.page-item .page-link:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.page-item.active .page-link {
  background-color: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}
.pagination .page-item.active .page-link {
  color: #fff !important;
}
.page-item .page-link.next > i:before {
  content: "\f100";
}
.page-item .page-link.previous > i:before {
  content: "\f101";
}
.page-link:focus {
  box-shadow: none;
}
.page-btn {
  border: 1px solid var(--border-color);
  border-radius: var(--border-raduis);
  background-color: var(--white);
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
  height: 40px;
  padding: 5px 15px;
  text-decoration: none;
  margin: 0 8px;
}
.page-btn > i {
  font-size: 12px;
  margin: 0 2px;
}
.page-btn:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  text-decoration: none;
}
.pages-number {
  font-size: 14px;
  color: var(--dark-gray-text);
  margin-bottom: 40px;
}
.pages-number > span {
  font-weight: 500;
  color: var(--black);
  margin: 0 2px;
}

/*************financial tabs************/
.customTabs {
  background-color: #f8f9fc;
  border-radius: var(--border-raduis);
}
.customTabs .nav-link {
  height: 40px;
  padding: 5px 20px;
  border-radius: var(--border-raduis);
}
.gradeBookTabs .nav-link {
  padding: 5px 50px;
}
.financialTabs .nav-link.active {
  background-color: var(--secondary);
  color: var(--white);
}
.financial-content .tab-content {
  background-color: var(--white);
  border-radius: var(--border-raduis);
}
.tab-buttons > li > a {
  background-color: var(--primary);
  border-radius: var(--border-raduis);
  color: var(--white);
  height: 40px;
  min-width: 129px;
}
.tab-buttons {
  gap: 10px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.financial-content .heading {
  margin-bottom: 0;
}
.search-filter .title {
  font-size: 20px;
  color: var(--black);
  border-bottom: 1px solid var(--border-color);
}
.fltr-btns {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}
.fltr-btns .fltr-btn {
  border-radius: var(--border-raduis);
  font-size: 14px;
  font-weight: 500;
  height: 40px;
  width: 136px;
}
.fltr-btns > button > i {
  font-size: 12px;
  margin-inline-end: 5px;
}
.reset-btn {
  color: #939393;
  background-color: transparent;
  border: 1px solid var(--border-color);
}
.search-btn {
  background-color: var(--secondary);
  color: var(--white);
}
.fltr-btns > button:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
}
.schedule-filter {
  padding: 12px;
}
.schedule-filter select.form-control {
  padding: 0px;
  width: max-content;
  height: 20px !important;
  padding-inline-end: 36px !important;
}
.total-absence {
  border-radius: var(--border-raduis);
  overflow: hidden;
}
.absence-info {
  height: 44px;
  border-radius: var(--border-raduis);
  padding: 12px;
}
.total-absence-count {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .tabs-block {
    margin-bottom: 20px;
  }
  .customTabs {
    justify-content: center;
    gap: 5px;
  }
  .customTabs .nav-link {
    padding: 5px 15px;
  }
}

/* remove  "style-en-css" */
.title {
  flex: unset !important;
}
.table-actions {
  flex-wrap: nowrap !important;
}
.table-actions .btn {
  min-width: fit-content !important;
}

/***************************students**********************/
.content-wrapper {
  background-color: var(--white);
  border-radius: var(--border-raduis);
  overflow: hidden;
}
.content-wrapper .table-heading {
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
}
.schedule-select {
  border: 0px;
}
.form-control.schedule-select {
  color: #303236;
  -webkit-text-fill-color: #303236;
}
.subject-select {
  max-width: 120px;
  background-color: #f4f4f4;
  height: 40px;
  border-radius: var(--border-raduis);
  border: none;
}
.subject-select:focus {
  background-color: #f4f4f4;
}
.table {
  min-width: 1099px;
}
.table.schedule-table {
  min-width: 1210px;
}
.table-btn {
  border: 1px solid var(--secondary);
  color: var(--secondary);
  border-radius: var(--border-raduis);
  padding: 8px 14px;
  font-size: 14px;
}
.table-btn > i {
  margin-inline-end: 5px;
}
.table-btn:hover {
  background-color: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}
.table td {
  vertical-align: middle;
}
.plan-table th,
.plan-table td {
  width: 20%;
}
.advertisement-image > img {
  display: inline-block;
  width: 191px;
  height: 100px;
  border-radius: var(--border-raduis);
}
.advertisement-description > span {
  color: var(--secondary);
}
.certificate-content .swiper-slide {
  border-radius: var(--border-raduis);
}
.certificate-content .swiper-pagination-bullet {
  background-color: var(--white);
  width: 6px;
  height: 6px;
  margin: 0 3px !important;
  background-color: #cfeff4;
  transition: 0.3s ease;
  opacity: 1;
}
.certificate-content .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--secondary);
  width: 36px;
  border-radius: var(--border-raduis);
}
.certificate-info > li {
  background-color: #fbfbfb;
  justify-content: space-between;
  border-radius: var(--border-raduis);
  padding: 11px 24px;
}
.item-name {
  color: #848a9c;
}
.trip-price {
  background-color: rgba(40, 182, 190, 0.05);
  border-radius: calc(var(--border-raduis) * 5);
  padding: 6px 12px;
  margin-inline-start: 8px;
}
.custom-modal .modal-header {
  padding: 15px 24px;
  align-items: center;
  border: none;
}
.modal-header .close {
  padding: 0;
  width: 28px;
  height: 28px;
  background-color: var(--secondary);
  font-size: 20px;
  font-weight: 300;
  opacity: 1;
  color: var(--white);
  border-radius: 4px;
  margin: -1rem auto -1rem 0;
}
.close:not(:disabled):not(.disabled):focus,
.close:not(:disabled):not(.disabled):hover {
  /* opacity: 1; */
  color: var(--white);
  /* background-color: var(--secondary); */
}
.info-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.trip-info {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #f5f5f5;
  padding-bottom: 12px;
}
.with-dots > li::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  background-color: var(--black);
  border-radius: 50%;
}
.trip-info .title {
  background-color: rgba(40, 182, 190, 0.05);
  padding: 12px;
  font-size: 14px;
}
.trip-info .icon {
  width: 35px;
  height: 35px;
  background-color: rgba(40, 182, 190, 0.05);
  border-radius: 50%;
}
.classes-period {
  color: #303236;
}
.class-schedule .content-wrapper {
  background-color: transparent;
}
.class-schedule .table-heading {
  background-color: var(--white);
  border: none;
  border-radius: var(--border-raduis);
}
.class-schedule .table-responsive {
  text-align: start;
}
.schedule-table.table {
  border-collapse: separate;
  border-spacing: 8px;
  width: calc(100% + 16px);
  margin-inline-start: -8px;
}
.schedule-table.table td,
.schedule-table.table th {
  border: none;
  background-color: var(--white);
  border-radius: var(--border-raduis);
}
.class-card {
  border-radius: var(--border-raduis);
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.schedule-table td > .form-check-input {
  position: relative;
  margin: 0 0 0 auto;
}
.class-card .card-head {
  background-color: #75797b;
  font-size: 14px;
  color: var(--white);
  text-align: center;
}
.class-card.absent .card-head {
  background-color: var(--danger);
}
.class-card.present .card-head {
  background-color: var(--secondary);
}
.class-card.late .card-head {
  background-color: #e19a32;
}
.class-card.coming .card-head {
  background: #28a745;
}
.class-card.absent i {
  color: var(--danger);
}
.class-card.present i {
  color: var(--secondary);
}
.class-card.late i {
  color: #e19a32;
}
.class-card.coming i {
  color: #28a745;
}
.class-card .card-body {
  background-color: #f0f1f3;
}
.class-card.absent .card-body {
  background-color: rgba(255, 80, 80, 0.05);
}
.class-card.present .card-body {
  background-color: rgba(40, 182, 190, 0.05);
}
.class-card.late .card-body {
  background-color: rgba(225, 154, 50, 0.05);
}
.class-card.coming .card-body {
  background: rgba(40, 167, 69, 0.05);
}
.class-card .card-body > ul > li {
  color: #575454;
  font-size: 14px;
  margin-bottom: 8px;
}
.class-card .card-body > ul > li > i {
  margin-inline-end: 5px;
}
.class-card .card-status {
  display: inline-flex;
  height: 29px;
  width: 100%;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border-radius: var(--border-raduis);
  background-color: #f0f1f3;
  margin-top: 10px;
}
.class-card.absent .card-status {
  background-color: var(--danger);
}
.class-card.present .card-status {
  background-color: var(--secondary);
}
.class-card.late .card-status {
  background-color: #e19a32;
}
@media screen and (max-width: 767px) {
  .page-btn {
    display: none;
  }
  .info-row {
    grid-template-columns: repeat(1, 1fr);
  }
}

/********************teachers**********************/
.date-input {
  position: relative;
}
.date-icon {
  position: absolute;
  bottom: 10px;
  inset-inline-end: 10px;
  color: var(--secondary);
  font-size: 14px;
}
.btn-submit {
  background-color: var(--secondary);
  border-radius: var(--border-raduis);
  color: var(--white);
  width: 154px;
  height: 44px;
}
.btn-submit:hover {
  background-color: var(--primary);
}
.confirm-btn {
  background-color: var(--secondary);
  color: var(--white);
  border-radius: var(--border-raduis);
  width: 154px;
  height: 44px;
}
.confirm-btn:hover {
  background-color: var(--primary);
}
#confirmPayment .cancel-btn {
  background-color: transparent;
  color: var(--danger);
  border: 1px solid var(--danger);
  border-radius: var(--border-raduis);
  width: 154px;
  height: 44px;
}
#confirmPayment .cancel-btn:hover,
.table-btn.not-paid:hover {
  background-color: var(--danger);
  color: var(--white);
}
.studentsTrips-table .table-btn {
  border-radius: 25px;
  width: 116px;
}
.table-btn.not-paid {
  border-color: var(--danger);
  color: var(--danger);
}
#viewRequest .txt .label {
  font-size: 14px;
}
#viewRequest .request-list > li {
  margin-bottom: 16px;
}
.flatpickr-wrapper {
  display: block;
}
.customTabs .nav-link.active {
  background-color: var(--primary);
  color: var(--white);
}
.add-homework .form-check-input[type="radio"]:checked,
.audience-table .form-check-input[type="radio"]:checked {
  border-color: var(--secondary);
  background: radial-gradient(#28b6be 0%, #28b6be 40%, transparent 50%);
}
.file-item {
  margin-inline-end: 10px;
  color: var(--gray-text);
}
.file-item span::after {
  content: "\f15b";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 16px;
  margin-inline-end: 8px;
}
.removeFile {
  color: var(--danger);
  border: 1px solid var(--danger);
  font-size: 12px;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin-inline-start: 8px;
}
.add-homework .custom-upload-area {
  color: #939393;
}
.skills-book-table .form-control {
  -webkit-text-fill-color: var(--black);
  color: var(--black);
}
.audience-table .form-check-input {
  position: static;
  margin: 0;
}
.meetings-content .metting-card {
  border: 1px solid #f5f5f5;
  border-radius: 12px;
  overflow: hidden;
}
.meetings-content .card-head {
  background-color: #eaf8f9;
}
.meetings-content .avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
  margin-inline-end: 8px;
}
.card-head .name {
  color: #121212;
}
.time-slot input[type="radio"] {
  display: none;
}
.time-slot label {
  border: 1px solid #f1f1f1;
  border-radius: var(--border-raduis);
  padding: 8px;
  cursor: pointer;
  min-width: 100px;
  text-align: center;
  transition: all 0.3s ease;
  color: #75797b;
  font-size: 14px;
}

.time-slot input[type="radio"]:checked + label {
  border-color: var(--secondary);
  background-color: #f4fbfb;
  color: var(--secondary);
}
.time-slot input[type="radio"]:disabled + label {
  background-color: #f7f7f7;
  cursor: not-allowed;
  text-decoration: line-through;
}
.submit-time {
  height: 44px;
  border-radius: 25px;
}
.time-slot {
  padding: 8px 11px;
  border-radius: var(--border-raduis);
}
.time-reserved {
  background-color: #fff6f6;
  border: 1px solid rgba(255, 80, 80, 0.1);
}
.time-active-taken {
  background-color: #e9fce9;
  border: 1px solid rgba(7, 194, 7, 0.1);
}
.time-active-no-taken {
  border: 1px solid rgba(100, 100, 100, 0.1);
  background-color: #ffffff;
}
/****************latest update****************/
.request-info {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #f5f5f5;
}
.noResults-icon {
  max-width: 210px;
  max-height: 170px;
}
.alert-message {
  color: var(--white);
  border-radius: var(--border-raduis);
}
.message-danger {
  background-color: #dc3545;
}
.message-success {
  background-color: #28a745;
}
.request-head {
  background-color: rgba(40, 182, 190, 0.05);
  padding: 12px;
}
.request-info .icon {
  width: 35px;
  height: 35px;
  background-color: rgba(40, 182, 190, 0.05);
  border-radius: 50%;
  margin-inline-end: 5px;
}
.rquest-btns {
  margin-bottom: 24px;
}
.rquest-btns button {
  height: 44px;
  flex: 1;
  border-radius: var(--border-raduis);
}
.cost-box {
  border: 1px solid var(--secondary);
  border-radius: var(--border-raduis);
  padding: 9px 12px;
}
.pay-alert {
  background-color: rgba(255, 80, 80, 0.05);
  border: 0;
  border-radius: var(--border-raduis);
}
.total {
  background-color: var(--white);
  border-radius: var(--border-raduis);
}
.total-box {
  background-color: rgba(40, 182, 190, 0.05);
  border-radius: var(--border-raduis);
}
.total-list > li:not(:last-child) {
  margin-bottom: 12px;
}
.payment-message {
  margin-top: -24px;
}
.print-btn {
  margin-inline-start: auto;
  background-color: var(--secondary);
  color: var(--white);
  border-radius: var(--border-raduis);
}
.payment-info {
  background-color: rgba(40, 182, 190, 0.05);
  border-radius: var(--border-raduis);
}
.payment-info.main-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 5px;
  row-gap: 12px;
}
.info-icon {
  width: 35px;
  height: 35px;
  background-color: rgba(40, 182, 190, 0.05);
  border-radius: 50%;
  margin-inline-end: 8px;
  color: var(--secondary);
}
.user-profile .avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
}

/* input with checkbox */
.input-with-checkbox {
  position: relative;
}
.input-with-checkbox input[type="checkbox"] {
  position: absolute;
  inset-inline-end: 15px;
  top: 50%;
  transform: translateY(-2%);
  cursor: pointer;
}
.input-with-checkbox input[type="checkbox"]:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}
@media screen and (max-width: 991px) {
  .total .pay-btn {
    margin-top: 16px;
  }
  .payment-info.main-info {
    grid-template-columns: repeat(1, 1fr);
  }
  .fs-12 {
    font-size: 10px;
  }
  .fs-14 {
    font-size: 12px;
  }
  .fs-16 {
    font-size: 14px;
  }
  .fs-20 {
    font-size: 18px;
  }

  .fs-24 {
    font-size: 22px;
  }
  .fs-48 {
    font-size: 46px;
  }
}

/****************************chatbot style***********************/
/* Chatbot Fixed Icon */
.chatbot-icon {
  position: fixed;
  bottom: 0px;
  inset-inline-start: 85px;
  cursor: pointer;
  z-index: 999;
}
/* Chatbox Window */
.chatbox {
  position: fixed;
  bottom: 60px;
  inset-inline-start: 190px;
  width: 350px;
  background-color: #fff;
  border-radius: 25px;
  display: none;
  z-index: 1000;
  overflow: hidden;
}
.chatbox button {
  background-color: transparent;
}
/* Header */
.chatbox-header {
  background-color: #28b6be;
  color: #fff;
}
/* Rebot icon in header */
.chatbox-header .rebot-icon {
  width: 36px;
  height: 36px;
}
/* Body */
.chatbox-body {
  max-height: 300px;
  overflow-y: auto;
}
/* Message Blocks */
.chatbox-message .bot-image {
  width: 45px;
  height: 45px;
  background-color: #fff;
  border: 1px solid rgba(40, 182, 190, 0.3);
  border-radius: 50%;
  flex-shrink: 0;
}
.message-info {
  margin-inline-start: 8px;
}
.chatbox-message.user .message-txt {
  background: #e8f9fa;
  padding: 10px;
  border-radius: 10px;
}
.chatbox-message.bot .message-txt {
  background: #f5f7f8;
  padding: 10px;
  border-radius: 10px;
}
.audio {
  width: 100%;
}
/* Footer */
.chatbox-footer {
  border-top: 1px solid #f1f3f9;
}
.chat-input > .form-control {
  height: 32px;
}
button.send-btn {
  width: 32px;
  height: 32px;
  background-color: rgba(40, 182, 190, 0.05);
}

.chatbox-expanded .expanded-chatbox-body {
  height: calc(100vh - 290px);
  overflow-y: auto;
}
.chatbox-expanded .chatbox-header {
  background-color: transparent;
  color: #303236;
  border-bottom: 1px solid #f1f3f9;
}
.chatbox-expanded .send-btn {
  color: #28b6be;
  width: 118px;
  height: 45px;
}
.chatbox-footer-content {
  border-radius: 12px;
}
.chatbox-header .status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
  margin-inline-end: 2px;
}
.chatbox-header .status.success {
  color: #00bf6c;
}
.chatbox-header .status.success::before {
  background-color: #00bf6c;
}
/***********************expanded chat***********************/
.record audio {
  max-width: 250px;
}

.chatbox-message {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Add these styles for smooth animations */
.chatbox {
  transition: display 0.3s ease;
}

/* Optional: Add typing indicator animation */
.typing-indicator {
  display: flex;
  gap: 4px;
  padding: 8px;
}

.typing-indicator span {
  width: 8px;
  height: 8px;
  background: #90949c;
  border-radius: 50%;
  animation: typing 1s infinite ease-in-out;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.chatbox-message {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Add these styles for smooth animations */
.chatbox {
  transition: display 0.3s ease;
}

.message-content {
  word-wrap: break-word;
}

/* Optional: Add typing indicator animation */
.typing-indicator {
  display: flex;
  gap: 4px;
  padding: 8px;
}

.typing-indicator span {
  width: 8px;
  height: 8px;
  background: #90949c;
  border-radius: 50%;
  animation: typing 1s infinite ease-in-out;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/***********************expanded chat***********************/

@media screen and (max-width: 767px) {
  .chatbot-icon {
    inset-inline-start: 2px;
  }
  .chatbox {
    inset-inline-start: 100px;
    width: 275px;
  }
  .chat-name {
    font-size: 12px;
  }
  .message-info {
    font-size: 12px;
  }
  .chatbox-expanded .send-btn {
    width: 45px;
  }
  .chatbox-expanded .send-btn > span {
    display: none;
  }
}

.min-btn-width {
  min-width: 100px;
}

.father_code_section {
  background: var(--primary-light);
  padding: 5px 10px;
  border-radius: 11px;
  width: max-content;
  background: var(--primary-light);
  padding: 5px 20px;
  line-height: 28px;
  border-radius: 8px;
  width: max-content;
}

html[dir="ltr"] .fa-sign-out-alt {
  transform: rotateY(180deg);
}
.selected-chips {
  position: absolute;
  bottom: 2px;
  inset-inline-start: 5px;
  background: #fff;
}
.form-group {
  position: relative;
}
.selected-chip {
  background-color: #fff !important;
  display: flex;
  gap: 7px;
}
.selected-chip > span {
  background-color: var(--primary-light);
  color: var(--primary) !important;
  padding: 2px 5px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 500 !important;
  display: flex;
  align-items: center;
}
.lang_dropdown {
  position: fixed;
  inset-block-start: clamp(15px, 2vw, 70px);
  inset-inline-end: clamp(15px, 3vw, 70px);
  background: #fff;
  border-radius: 8px;
  z-index: 1;
}
.lang_dropdown .dropdown-toggle {
  color: var(--primary) !important;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lang_dropdown .dropdown-toggle i {
  font-weight: 600 !important;
  font-size: 13px !important;
}
.icon_btn {
  min-width: unset !important;
  border-radius: 4px !important;
  width: 30px !important;
  height: 30px !important;
}