.fw-100 {
    font-weight:100;
}
.fw-200 {
    font-weight:200;
}
.fw-300 {
    font-weight:300;
}
.fw-400 {
    font-weight:400;
}
.fw-500 {
    font-weight:500;
}
.fw-600 {
    font-weight:600;
}
.fw-700 {
    font-weight:700;
}

.apple-shadow {
                box-shadow:
                    0 1px 3px rgba(0, 0, 0, 0.12),
                    0 4px 12px rgba(0, 0, 0, 0.10),
                    0 20px 40px rgba(0, 0, 0, 0.08);
                border-radius: 16px;
                transition: box-shadow 0.3s ease, transform 0.3s ease;
                background: rgba(255, 255, 255, 0.04); /* optional for glass effect */
                backdrop-filter: blur(12px) saturate(180%);
                -webkit-backdrop-filter: blur(12px) saturate(180%);
}
.apple-shadow:hover {
    transform: translateY(-1px);
    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.14),
        0 8px 20px rgba(0, 0, 0, 0.12),
        0 24px 48px rgba(0, 0, 0, 0.10);
}


.framework-circle {
  width: 30px;
  height: 30px;
  background-color: #1a1f2a; /* dark grey-blue tone */
  border-radius: 50%;
  display: block;
}

.framework-modal-backdrop {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    
    /* Initial invisible state */
    opacity: 0;
    background-color: rgba(15, 15, 20, 0.25);
    backdrop-filter: blur(0px) saturate(100%);
    -webkit-backdrop-filter: blur(0px) saturate(100%);
    transition:
        opacity 0.4s ease,
        backdrop-filter 1.0s ease,
        -webkit-backdrop-filter 1.0s ease;

    z-index: 1040;
}
/* Activated (fade-in + blur) */
.framework-modal-backdrop.active {
    opacity: 1;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    background-color: rgba(15, 15, 20, 0.35);
}



.framework-modal-form-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* Optional aesthetic touches (won’t affect layout sizing) */
.framework-modal-form-wrapper form {
    width: 100%;
}

.framework-modal-form-wrapper .framework-modal-header,
.framework-modal-form-wrapper .framework-modal-content,
.framework-modal-form-wrapper .framework-modal-footer {
    width: 100%;
}

.framework-modal-drawer {
    position: fixed;
    display: flex;
    flex-direction: column;
    top: 5%;
    right: 5%;
    width: 30%;
    min-width:300px;
    height: 90%;
    background: #fff;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(12px);
}

.framework-modal-center {
    position: fixed;
    display: flex;
    flex-direction: column;
    top: 5%;
    right: 25%;
    width: 50%;
    min-width:300px;
    height: 90%;
    background: #fff;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(12px);
}

/* Header */
.framework-modal-header {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(250, 250, 250, 0.9);
    backdrop-filter: blur(12px);
}

/* Show draggable affordance and avoid text selection while dragging */
/* While dragging: fully transparent and no blur */
/* While actively dragging (temporary state during drag) */
.framework-modal-backdrop.drag-transparent {
  background: rgba(0,0,0,0) !important;
  backdrop-filter: none !important;
}

/* After a drag ends: keep backdrop hidden until modal closes & reopens */
.framework-modal-backdrop.backdrop-hidden {
  background: rgba(0,0,0,0) !important;
  backdrop-filter: none !important;
}

/* Cursor affordance + avoid text selection during drag */
.framework-modal-header { cursor: move; }
.framework-modal-drawer.dragging { user-select: none; }

/* Content - fills remaining height */
.framework-modal-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 0;
    overflow-y: auto;
    padding: 1.25rem;
}

/* Editor section grows to fill remaining modal body */
.modal-editor-section {
    flex: 1 1 0;
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.modal-editor-section .tox-tinymce {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    height: 100% !important;
}

.modal-editor-section .tox-editor-header,
.modal-editor-section .tox-statusbar {
    flex: 0 0 auto;
}

.modal-editor-section .tox-edit-area {
    flex: 1 1 0;
}

.modal-editor-section .tox-edit-area iframe {
    height: 100% !important;
}

/* Footer */
.framework-modal-footer {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(250, 250, 250, 0.9);
    backdrop-filter: blur(12px);
}




.framework-modal-title {
    padding-top:10px;
    padding-left:7px;
}

.framework-modal-close-btn {
  position: absolute;         /* Usually placed top-right of modal */
  top: 12px;
  right: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;
  border-radius: 50%;

  cursor: pointer;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);

  color: rgba(0,0,0,0.25);
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    color 0.25s ease;
}

/* Centered Font Awesome icon styling */
.framework-modal-close-btn i {
  font-size: 16px;
  transition: transform 0.25s ease;
}

/* Hover / active states */
.framework-modal-close-btn:hover {
  background-color: #FFF;
  border-color: rgba(0,0,0, 0.10);
  color: rgba(255, 0, 0, 0.75);
}

.framework-modal-close-btn:hover i {
  transform: scale(1);
}

/* Optional: Glass-style blur if you want Apple consistency */
.framework-modal-close-btn {
  backdrop-filter: blur(8px) saturate(150%);
  -webkit-backdrop-filter: blur(8px) saturate(150%);
}

.app-sidebar-with-quicklinks {
    --app-quicklinks-width: 72px;
    --app-sidebar-main-width: 265px;
    --bs-app-sidebar-width: calc(var(--app-sidebar-main-width) + var(--app-quicklinks-width));
    --bs-app-sidebar-width-actual: calc(var(--app-sidebar-main-width) + var(--app-quicklinks-width));
    display: flex;
    width: calc(var(--app-sidebar-main-width) + var(--app-quicklinks-width));
}

.app-sidebar-with-quicklinks .app-sidebar-quicklinks {
    flex: 0 0 var(--app-quicklinks-width);
    padding: 1.5rem 0.75rem;
    border-right: 1px solid rgba(0, 0, 0, 0.04);
    background-color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    min-height: 100%;
}

.app-sidebar-with-quicklinks .app-sidebar-main {
    flex: 0 0 var(--app-sidebar-main-width);
    max-width: var(--app-sidebar-main-width);
}

.app-sidebar-with-quicklinks .app-sidebar-logo,
.app-sidebar-with-quicklinks .app-sidebar-footer,
.app-sidebar-with-quicklinks .app-sidebar-menu,
.app-sidebar-with-quicklinks .app-sidebar-wrapper {
    padding-left: clamp(1.5rem, 1.5rem + 0.2vw, 1.75rem);
}

[data-kt-app-sidebar-minimize=on] .app-sidebar-with-quicklinks {
    --app-sidebar-main-width: 75px;
}

@media (max-width: 991.98px) {
    .app-sidebar-with-quicklinks {
        width: var(--app-sidebar-main-width);
        --bs-app-sidebar-width: var(--app-sidebar-main-width);
        --bs-app-sidebar-width-actual: var(--app-sidebar-main-width);
    }

    .app-sidebar-with-quicklinks .app-sidebar-quicklinks {
        display: none !important;
    }

    .app-sidebar-with-quicklinks .app-sidebar-main {
        flex: 1 1 auto;
    }

    .app-sidebar-with-quicklinks .app-sidebar-logo,
    .app-sidebar-with-quicklinks .app-sidebar-footer,
    .app-sidebar-with-quicklinks .app-sidebar-menu,
    .app-sidebar-with-quicklinks .app-sidebar-wrapper {
        padding-left: initial;
    }
}



.framework-select2 {
    border-radius: 0.475rem;
}

.menu-item .menu-link {
    border:1px solid transparent !important;
    border-radius:0.5rem;
}
.menu-item .menu-link:hover {
    border:1px solid rgba(224, 224, 224, 0.5) !important;
    border-radius:0.5rem;
}
.menu-sub-indention .menu-item .menu-item .menu-link.active {
    margin-right: 0px;
}