html body.navbar-sticky .app-content .content-wrapper {
  padding: 2.2rem;
  margin-top: 3.65rem;
}

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
  background-color: #c0c0c0;
  color: white;
}

/*Start wickedpicker*/
.wickedpicker {
  z-index: 999999;
  height: 150px !important;
}
/*End wickedpicker*/

/*Start Time Selection*/
.timepicker .title {
  display: none;
}
/*Start Time Selection*/

/*Start Modal Header*/
.modal .modal-header {
  border-radius: 0 !important;
}
/*End Modal Header*/

/*Start Modal Close btn*/
.modal .modal-header.bg-primary .close span {
  font-family: "Montserrat", Helvetica, Arial, serif !important;
}
/*End Modal Close btn*/

/* Start Modern Delete Modal styles */
.modal-modern .modal-content {
  border-radius: 1rem !important;
  background: linear-gradient(145deg, #ffffff, #f7f7f9);
}
.modal-modern .modal-icon-wrapper {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  height: 70px;
  width: 70px;
  border-radius: 9999px;
  background: #fff;
  box-shadow: 0 20px 30px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-modern .modal-icon-inner {
  height: 56px;
  width: 56px;
  border-radius: 9999px;
  background: #fee2e2; /* red-100 */
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-modern .btn.btn-danger {
  box-shadow: 0 8px 16px rgba(220,53,69,0.25);
}
.modal-modern .btn.btn-danger:hover {
  transform: translateY(-1px);
}
/* End Modern Delete Modal styles */

/* Custom Delete Modal - New Design */
.custom-delete-modal .modal-content {
  border: 1px solid #e9ecf3;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #fbfbfd);
  box-shadow: 0 22px 48px -16px rgba(31, 41, 55, 0.22);
  padding: 0;
  overflow: visible;
  max-width: 480px;
  margin: 0 auto;
}

.custom-delete-modal .modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  left: auto;
  background: #f5f5f7;
  border: none;
  border-radius: 10px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8e8e93;
  z-index: 10;
  transition: all 0.2s;
}

.custom-delete-modal .modal-close-btn:hover {
  background: #e5e5ea;
  color: #333;
}

.custom-delete-modal .modal-icon-circle {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(238, 90, 82, 0.28);
  animation: modalIconFloat 2.4s ease-in-out infinite;
}

.custom-delete-modal .modal-icon-circle::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  top: 0;
  left: 0;
}

.custom-delete-modal .modal-icon-circle i {
  color: white;
  font-size: 28px;
  z-index: 1;
}

.custom-delete-modal .modal-body {
  padding: 50px 30px 30px;
  text-align: center;
}

.custom-delete-modal .modal-title {
  font-size: 22px;
  font-weight: 700;
  color: #1c1c1e;
  margin-bottom: 12px;
  letter-spacing: .2px;
  position: relative;
}

.custom-delete-modal .modal-title::after {
  content: "";
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  bottom: -6px;
  width: 56px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg,#ffd0cc,#ffe2e0);
}

.custom-delete-modal .modal-description {
  font-size: 14px;
  color: #8e8e93;
  line-height: 1.5;
  margin-bottom: 20px;
}

.custom-delete-modal .modal-badge {
  background: linear-gradient(180deg,#fff1f1,#ffe6e6);
  color: #c52b2b;
  border: 1px solid #ffd4d4;
  border-radius: 12px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 16px;
  box-shadow: 0 1px 0 rgba(0,0,0,.03), 0 8px 18px -12px rgba(197,43,43,.4);
}

.custom-delete-modal .modal-note {
  background: #fff8e6;
  border: 1px solid #ffeaa7;
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 24px;
  display: block;
  text-align: right;
  position: relative;
  box-shadow: 0 6px 16px -12px rgba(217,119,6,.35);
  border-right: 4px solid #ffd48a; /* RTL accent */
}

/* Remove note icon globally */
.custom-delete-modal .note-icon { display:none !important; }
.custom-delete-modal .note-icon i { display:none !important; }

.custom-delete-modal .note-text {
  font-size: 13px;
  color: #b8860b;
  line-height: 1.4;
  flex: 1;
}

/* Inline name chip inside the warning note */
.custom-delete-modal .note-text .name-chip{
  display: inline-block;
  margin: 0 4px;
  padding: 3px 8px;
  border-radius: 10px;
  background: linear-gradient(180deg,#fff7e6,#fff3d6);
  border: 1px solid #ffe1a6;
  color: #ad5c00;
  font-weight: 700;
  font-size: 12px;
  box-shadow: 0 1px 0 rgba(0,0,0,.02);
  vertical-align: baseline;
}

.custom-delete-modal .modal-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-start; /* cluster to start of row */
  flex-direction: row-reverse; /* puts confirm on the right side in RTL */
}

.custom-delete-modal .btn-cancel {
  background: #f5f5f7;
  border: none;
  border-radius: 12px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #1c1c1e;
  cursor: pointer;
  transition: all 0.2s;
  flex: 1;
  box-shadow: 0 2px 8px rgba(0,0,0,.04) inset;
}

.custom-delete-modal .btn-cancel:hover {
  background: #e5e5ea;
  transform: translateY(-1px);
}

.custom-delete-modal .btn-confirm {
  background: linear-gradient(135deg,#ff574d,#ff3b30);
  border: none;
  border-radius: 12px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  flex: 1;
  box-shadow: 0 8px 20px -8px rgba(255, 59, 48, 0.45);
}

.custom-delete-modal .btn-confirm:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -8px rgba(255, 59, 48, 0.5);
}

.custom-delete-modal .btn-confirm i {
  font-size: 12px;
}

/* Dialog entrance micro-animation */
.custom-delete-modal.modal.fade .modal-dialog {
  transform: translateY(10px) scale(.98);
  transition: transform .25s cubic-bezier(.25,.1,.25,1), opacity .25s ease;
}
.custom-delete-modal.modal.fade.show .modal-dialog { transform: translateY(0) scale(1); }

/* Focus states accessibility */
.custom-delete-modal .btn-cancel:focus,
.custom-delete-modal .btn-confirm:focus,
.custom-delete-modal .modal-close-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(79,70,229,.25);
}

/* Subtle floating for the top icon */
@keyframes modalIconFloat {
  0%   { transform: translateX(-50%) translateY(0); }
  50%  { transform: translateX(-50%) translateY(-2px); }
  100% { transform: translateX(-50%) translateY(0); }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .custom-delete-modal .modal-icon-circle { animation: none; }
  .custom-delete-modal.modal.fade .modal-dialog { transition: none; transform:none; }
  .custom-delete-modal .btn-confirm, .custom-delete-modal .btn-cancel { transition: none; }
}

@media (max-width: 480px) {
  .custom-delete-modal .modal-content {
    margin: 0 15px;
  }
  
  .custom-delete-modal .modal-body {
    padding: 50px 20px 20px;
  }
  
  .custom-delete-modal .modal-actions {
    flex-direction: column-reverse;
    gap: 10px;
  }
  
  .custom-delete-modal .btn-cancel,
  .custom-delete-modal .btn-confirm {
    width: 100%;
  }
}

/* Start Multi select styles*/
.ms-options-wrap > button {
  text-align: right !important;
}
.ms-options-wrap, .ms-options-wrap {
  position: relative;
}

.ms-options-wrap .ms-options {
  min-height: 0 !important;
}
/* End Multi select styles*/

.selected {
  background-color: #7367f026 !important;
}
td .btn-group{
  float: right;
}
td .btn.btn-icon {
  padding: 3px;
}

.card .filters .dropdown-toggle{
  padding: 0.85rem 0.8rem;
}

/*Start Backgrounds*/
.bg-gray {
  background-color: #e9e9e9 !important;
}
.bg-blue {
  background-color: #2284FF !important;
}
/*End Backgrounds*/

 /*Start Action dropdown*/
.action-dropodown .dropdown .dropdown-menu,
.action-dropodown .dropup .dropdown-menu {
  top: 30px !important;
}

.action-dropodown .dropdown-toggle {
  width: 29px;
  background-color: white !important;
  /*color: #fe4e65 !important;*/

}

.action-dropodown .dropdown-toggle:hover {
  box-shadow: none;
}
.action-dropodown .dropdown-toggle .feather {
  font-size: 1.5rem !important;
  color: #626262 !important;
}

.action-dropodown .dropdown-toggle:hover .feather {
  color: #5E50EE !important;
}

 /*End Action dropdown*/

/*Start Sidebar Styles*/
.menu-content .fa {
  font-size: 17px!important;
}
/*End Sidebar Styles*/

.table .thead-primary th {
  color: #fff;
  background-color: #7367f0 !important;
  border-color: #5752ae;
}

.table .thead-success th {
  color: #fff;
  background-color: #28C76F !important;
  border-color: #28C76F;
}

.filters .dropdown .btn:not(.btn-sm):not(.btn-lg),
.filters .dropdown .btn:not(.btn-sm):not(.btn-lg).dropdown-toggle {
  padding: 0.5rem 0.5rem;
}

.filters .dropdown-toggle::after {
  right: 0px;
  left: 2px;
}

.action-btn {
  padding: 9px;
}



/* Start File Upload Styles */


.file-upload {
  background-color: #ffffff;
  margin: 0 auto;
}

.file-upload-btn {
  width: 100%;
  margin: 0;
  color: #fff;
  background: #7367f0;
  border: none;
  padding: 10px;
  border-radius: 4px;
  transition: all .2s ease;
  outline: none;
  text-transform: uppercase;
  font-weight: 700;
}

.file-upload-btn:hover {
  background: #7367f0c7;
  color: #ffffff;
  transition: all .2s ease;
  cursor: pointer;
}

.file-upload-btn:active {
  border: 0;
  transition: all .2s ease;
}

.file-upload-content , .file-upload-content2 {
  display: none;
  text-align: center;
}

.file-upload-input , .file-upload-input2{
  display: block;
  position: absolute;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  outline: none;
  opacity: 0;
  cursor: pointer;
}

.file-upload-inputcap {
  display: block;
  position: absolute;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  outline: none;
  opacity: 0;
  cursor: pointer;
}

.image-upload-wrap ,  .image-upload-wrap2{
  margin-top: 20px;
  border: 4px dashed #7367f0;
  position: relative;
}

.image-dropping,
.image-upload-wrap:hover ,  .image-upload-wrap2:hover {
  background-color: #7367f080;
  border: 4px dashed #ffffff;
}

.image-title-wrap {
  padding: 0 15px 15px 15px;
  color: #222;
}

.drag-text {
  text-align: center;
}

.drag-text h3 {
  font-weight: 100;
  text-transform: uppercase;
  padding: 60px 0;
}

.file-upload-image , .file-upload-image2 {
  max-height: 200px;
  max-width: 200px;
  margin: auto;
  padding: 20px;
}

.remove-image {
  width: 200px;
  margin: 0;
  color: #fff;
  background: #cd4535;
  border: none;
  padding: 10px;
  border-radius: 4px;
  border-bottom: 4px solid #b02818;
  transition: all .2s ease;
  outline: none;
  text-transform: uppercase;
  font-weight: 700;
}

.remove-image:hover {
  background: #c13b2a;
  color: #ffffff;
  transition: all .2s ease;
  cursor: pointer;
}

.remove-image:active {
  border: 0;
  transition: all .2s ease;
}

.file-upload2 {
  position: relative;
  display: inline-block;
}

.file-upload2__label {
  display: block;
  padding: 1em 2em;
  color: #fff;
  background: #7367f0;
  border-radius: .4em;
  transition: background .3s;
  font-size: large;
}

.file-upload2__label:hover {
  cursor: pointer;
  background: #000;
}

.file-upload2__input {
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
  width:0;
  height: 100%;
  opacity: 0;
}
/* End File Upload Styles */

.swal2-icon::before {
  font-size: 67px !important;
}

.delete-file {
  position: absolute;
  top: 3px;
  right: 18px;
  background-color: #ffffff;
  border: 1px rgb(0 0 0);
  display: inline-block;
  width: 17px;
  height: 17px;
  text-align: center;
  line-height: 20px;
  z-index: 9;
  font-weight: bold;
  border-radius: 50%;
}
/*.table-hover-animation2 {*/
  /*background-color: #f8f8f8;*/
/*}*/

/*.table-hover-animation2 thead th {*/
  /*border-top: 2px solid #f8f8f8;*/
  /*border-bottom: 0;*/
  /*background-color: #fff;*/
/*}*/

/*.table-hover-animation2 th,*/
/*.table-hover-animation2 td {*/
  /*border: 0;*/
/*}*/

/*.table-hover-animation2 tbody tr {*/
  /*transition: all 0.25s ease;*/
  /*background-color: #fff;*/
/*}*/

/*.table-hover-animation2 tbody tr:hover {*/
  /*transform: translateY(-4px);*/
/*}*/

.student-img {
  height: 220px;
  overflow: hidden;
}

.student-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.text-gold {
  color: #ffe800;
}

.hexagon-container {
  /*border: 1px solid black;*/
  width: 40px;
  height: 40px;
  /*background-color: #cc1a2b;*/
}
.hexagon {
  font-size: 40px;
  position: relative;
  width: 0.86602540378em;
  height: 0.5em;
  /*background-color: #64C7CC;*/
  margin: 0.25em 0.0669872981em;
}
.hexagon:before,
.hexagon:after {
  content: "";
  position: absolute;
  width: 0;
  border-left: 0.43301270189em solid transparent;
  border-right: 0.43301270189em solid transparent;
}
.hexagon:before {
  bottom: 100%;
  /*border-bottom: 0.25em solid #64C7CC;*/
}
.hexagon:after {
  top: 100%;
  /*border-top: 0.25em solid #64C7CC;*/
}

.hexagon img {
  width: 100%;
  height: 250%;
  object-fit: contain;
  position: absolute;
  top: 0;
}

div.dropdown-menu.show {
  overflow-y: auto !important;
  overflow-x: hidden !important;
}

div.right-drop-menu.show {
  left: 0px !important; 
  max-height: 300px !important;
}

.modal-body {
  max-height: 80vh;
  overflow-y: auto !important;
}

.modal-body.no-scroll {
  overflow: visible !important;
}

.pageLoader{
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9999999;
  background-color: #ffffff8c;

}

#bag ul {
  list-style: none;
}

#bag li {
  background-color: #fff;
color: #000;
border-radius: 15px;
padding: 5px;
margin-top: 5px;
}


.dropdown-menu {
  z-index: 999999999 !important;
}

@media (max-width: 991px) {
  .filters div, .filters .btn {
    width: 100% !important;
  }   
}