/*LOGOUT-POPUP*/
.clearfix::after {
    content: "";
}

.logout-in {
    width: 100%;
    height: 100%;
    text-align: center;
}

.logout-in i {
    font-size: 70px;
    color: #171748;
}

/*LOGOUT-POPUP*/

/* SIDEBAR */
#sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 270px;
    height: 100%;
    z-index: 999;
    transition: 0.3s ease;
    overflow-x: hidden;
    background-color: var(--white);
    scrollbar-width: none;
    padding: 25px 15px;
}

#sidebar form {
    padding: 20px 10px;
}

#sidebar::-webkit-scrollbar {
    display: none;
}

#sidebar.hide {
    width: 80px;
}

#sidebar .brand {
    height: auto;
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    padding: 0px 0px;
    box-sizing: content-box;
    transition: 0.5s;
    justify-content: flex-start;
    margin-bottom: 30px;
}

#sidebar .brand img {
    width: 100px;
    display: flex;
    justify-content: center;
}

#sidebar.hide .brand img {
    width: 50px;
}

#sidebar .brand .bx {
    min-width: 60px;
    display: flex;
    justify-content: center;
}

#sidebar .side-menu {
    width: 100%;
    padding: 0;
    margin: 0;
}

#sidebar .side-menu h2 {
    font-weight: 500;
    font-size: 14px;
    color: var(--primary-color);
    letter-spacing: 0.6px;
    margin-bottom: 15px;
}

#sidebar .side-menu li {
    height: auto;
    background: transparent;
    margin-bottom: 10px;
    list-style: none;
    position: relative;
    transition: 0.5s;
    display: flex;
    align-items: center;
}

.sidebar-dropdown-list {
    padding: 0px 10px 8px 50px;
    display: flex;
    flex-direction: column;
    gap: 8px;

    a {
        font-size: 14px;
        font-weight: 400;
        color: var(--white);

        &:hover,
        &.active {
            color: #c0c0c0;
        }
    }
}

#sidebar .side-menu li a img.sidebar-dropdown-icon {
    width: 12px;
    height: 12px;
    margin-right: 0;
    margin-left: auto;
    filter: brightness(0) invert(1);
    transform: rotate(0);
    transition: 0.5s;
}

#sidebar .side-menu li a img.sidebar-dropdown-icon.active {
    transform: rotate(180deg);
    transition: 0.5s;
}

#sidebar .side-menu li p {
    position: fixed;
    margin: 0;
    background: #000;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 12px;
    color: var(--white);
    font-weight: 400;
    display: none;
    transition: 0.5s;
    left: 80px;
}

#sidebar .side-menu li p:before {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    background: #000;
    transition: 0.5s;
    left: -5px;
    top: 15px;
    border-radius: 0px;
    transform: rotate(45deg);
}

#sidebar.hide .side-menu li:hover p {
    display: block;
    transition: 0.5s;
}

#sidebar .side-menu li a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    border-radius: 5px;
    font-size: 14px;
    padding: 8px 10px;
    font-weight: 500;
    color: #000;
    gap: 10px;
    position: relative;
    z-index: 9999;
    white-space: nowrap;
    overflow-x: hidden;
}

#sidebar .side-menu li a img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

#sidebar.hide .side-menu h2 {
    display: none;
}

#sidebar.hide .side-menu li a {
    justify-content: center;
}

#sidebar.hide .side-menu li a span {
    display: none;
}

#sidebar.hide form .influ-search label input {
    padding: 0;
    background-position: center;
    text-align: center;
}

#sidebar.hide form .influ-search label input::placeholder {
    opacity: 0;
}

#sidebar .brand img.collapsed {
    display: none;
}

#sidebar.hide .brand img.collapsed {
    display: block;
}

#sidebar.hide .brand img {
    display: none;
}

#sidebar .side-menu li.active a {
    background: var(--primary-color);
    box-shadow: 0px 4px 10.1px 0px #0000004f;
}

#sidebar .side-menu li.active a span {
    color: var(--white);
}

#sidebar .side-menu li.active a img {
    filter: invert(1);
}

#sidebar .side-menu li:hover a {
    background: var(--primary-color);
    box-shadow: 0px 4px 10.1px 0px #0000004f;
}

#sidebar .side-menu li:hover a span {
    color: var(--white);
}

#sidebar .side-menu li:hover a img {
    filter: invert(1);
}

#sidebar .side-menu li.logout-menu {
    margin-top: 50px;
}

#sidebar .side-menu li.logout-menu a {
    color: var(--primary-color);
}

#sidebar .side-menu li.logout-menu:hover a {
    background-color: transparent;
    box-shadow: none;
}

#sidebar .side-menu li.logout-menu:hover a img {
    filter: invert(0);
}

#sidebar .side-menu li.logout-menu:hover a span {
    color: var(--primary-color);
}

/* CONTENT */
#content {
    position: relative;
    width: calc(100% - 270px);
    left: 270px;
    transition: 0.3s ease;
}

#sidebar.hide ~ #content {
    width: calc(100% - 80px);
    left: 80px;
}

/* NAVBAR */
#content nav {
    height: 70px;
    padding: 0 24px;
    background-color: var(--white);
    display: flex;
    align-items: center;
    gap: 20px;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 9;
}

.nav-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 14px;

    a,
    i {
        color: #9ca3af;
    }
}

#content nav .bx.bx-menu {
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#content nav .bx.bx-menu img {
    width: 100%;
    height: 100%;
}

/* NAVBAR */

/* MAIN */

#content main {
    width: 100%;
    height: 100%;
    padding: 25px;
    max-height: 100%;
}

/* MAIN */

/* SIDEBAR */

.table-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.table-toggle h4 {
    color: #454545;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
}

/* TOGGLE */

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 23px;
}

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

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #57c150;
    transition: 0.4s;
    border: 1px solid #dbdbdb;
}

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

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

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

.slider.round {
    border-radius: 30px;
}

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

/* TOGGLE */

/* FILTER-SECTION */

.head-src {
    width: 320px;
    margin-right: auto;
    display: flex;
    align-items: center;
    position: relative;
}

.head-src i {
    position: absolute;
    left: 10px;
    color: var(--black);
}

.head-src input[type="text"] {
    height: 40px;
    border: none;
    background: #f1f1f1;
    padding: 0 15px 0 40px;
    width: 100%;
    border-radius: 8px;
    color: #000000;
    outline: none;

    &::placeholder {
        color: #7d7d7d;
    }
}

/* FILTER-SECTION */

/* LOGIN-PAGE */

.sign-in-page-wrp {
    display: flex;
    width: 100%;
    height: 100vh;
    align-items: center;
    justify-content: center;
}

.sign-in {
    flex-direction: column;
    width: auto;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 40px;
    background-color: var(--white);
    border-radius: 5px;
    display: flex;
    position: relative;
}

.sign-in .image {
    position: relative;
    width: 170px;
    height: auto;
    object-fit: cover;
}

.sign-in .frame {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    flex: 0 0 auto;
}

.sign-in .text-wrapper {
    font-weight: 600;
    color: var(--text-color);
    font-size: 24px;
    line-height: normal;
    position: relative;
    width: fit-content;
    margin-top: -1px;

    letter-spacing: 0;
}

.sign-in .div {
    position: relative;
    width: fit-content;
    font-weight: 400;
    color: #1b2128;
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
    white-space: nowrap;
}

.sign-in .frame-2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    border: none;
    padding: 0;
    margin: 0;
    background: none;
}

.sign-in .frame-3 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 22px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    border: none;
    padding: 0;
    margin: 0;
}

.sign-in .frame-4 {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    display: flex;
    position: relative;
}

.sign-in .text-wrapper-2 {
    position: relative;
    width: fit-content;
    margin-top: -1px;
    font-weight: 400;
    color: var(--primary);
    font-size: 16px;
    letter-spacing: 0;
    line-height: 24px;
    white-space: nowrap;
}

.sign-in .email-placeholder-wrapper {
    display: flex;
    flex-direction: column;
    height: 48px;
    align-items: flex-start;
    justify-content: center;
    padding: 0px 17px;
    position: relative;
    align-self: stretch;
    width: 100%;
    background-color: #fbfbfb;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid;
    border-color: #d5d5d6;
}

.sign-in .email-placeholder {
    position: relative;
    width: 100%;
    font-weight: 400;
    color: var(--graynormal);
    font-size: 14px;
    letter-spacing: 0;
    line-height: 20px;
    white-space: nowrap;
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
}

.sign-in .email-placeholder::placeholder {
    color: var(--graynormal);
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 20px;
}

.sign-in .frame-5 {
    display: flex;
    height: 48px;
    align-items: center;
    justify-content: space-between;
    padding: 0px 17px;
    position: relative;
    align-self: stretch;
    width: 100%;
    background-color: #fbfbfb;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid;
    border-color: #d5d5d6;
}

.sign-in .phone-number {
    position: relative;
    width: 100%;
    font-weight: 400;
    color: var(--text-color);
    font-size: 14px;
    letter-spacing: 0;
    line-height: 20px;
    white-space: nowrap;
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.sign-in .phone-number::placeholder {
    color: var(--text-color);
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 20px;
}

.sign-in .toggle-password {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sign-in .mingcute-eye-line {
    position: relative;
    width: 24px;
    height: 24px;
}

.sign-in .frame-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    margin: 10px 0;
}

.sign-in .frame-6 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    flex: 0 0 auto;
}

.sign-in .stay-logged-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    position: relative;
    flex: 0 0 auto;
}

.sign-in .stay-logged-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    pointer-events: none;
}

.sign-in .custom-checkbox {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sign-in .custom-checkbox .check-icon,
.sign-in .custom-checkbox .uncheck-icon {
    position: absolute;
    width: 20px;
    height: 20px;
    transition: opacity 0.15s ease;
}

.sign-in .stay-logged-input ~ .custom-checkbox .check-icon {
    opacity: 0;
}

.sign-in .stay-logged-input ~ .custom-checkbox .uncheck-icon {
    opacity: 1;
}

.sign-in .stay-logged-input:checked ~ .custom-checkbox .check-icon {
    opacity: 1;
}

.sign-in .stay-logged-input:checked ~ .custom-checkbox .uncheck-icon {
    opacity: 0;
}

.sign-in .stay-logged-input:focus-visible ~ .custom-checkbox {
    outline: 2px solid #4a90e2;
    border-radius: 4px;
}

.sign-in .text-wrapper-3 {
    position: relative;
    display: flex;
    align-items: center;
    width: fit-content;
    margin-top: -1px;

    font-weight: 500;
    color: var(--graynormal);
    font-size: 16px;
    letter-spacing: 0;
    line-height: 24px;
    white-space: nowrap;
}

.sign-in .container {
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    display: flex;
    position: relative;
}

.sign-in .link {
    align-items: center;
    justify-content: center;
    padding: 14px 15px 15px;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    color: var(--white);
    background-color: var(--primary-color);
    border-radius: 5px;
    border: none;
    display: flex;
    position: relative;
    cursor: pointer;
}

.sign-in .container-wrapper {
    align-items: flex-start;
    justify-content: center;
    display: inline-flex;
    position: relative;
    flex: 0 0 auto;
}

.sign-in .div-wrapper {
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    display: inline-flex;
    position: relative;
    flex: 0 0 auto;
}

.sign-in .text-wrapper-4 {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    color: var(--previewthemeforestnetwhite);
    font-size: 15px;
    text-align: center;
    line-height: 16.5px;
    white-space: nowrap;
    position: relative;
    width: fit-content;
    margin-top: -1px;

    letter-spacing: 0;
}

.sign-in .contact-your {
    position: relative;
    width: fit-content;
    font-weight: 500;
    color: #1b212866;
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
    white-space: nowrap;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* LOGIN-PAGE */

/* LOGOUT-POPUP */

#logout .modal-dialog {
    max-width: 370px;
}

#logout .modal-body {
    padding: 0;
}

#logout .modal-body button.close {
    background-size: 14px;
    opacity: 1;
    outline: none;
    box-shadow: none;
}

.logout-card {
    background-color: var(--white);
    border-radius: 12px;
    border: 1px solid #e8e8e8;
    box-shadow: 0px 16px 100px 0px #48484829;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}

.logout-card .title {
    font-weight: 500;
    font-size: 18px;
    color: #050505;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logout-card.message {
    font-weight: 400;
    font-size: 16px;
    color: #050505;
    line-height: normal;
}

.logout-card .actions {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.logout-card .btn {
    height: 48px;
    border-radius: 5px;
    font-weight: 500;
    width: 126px;
    font-size: 16px;
    cursor: pointer;
    line-height: normal;
    white-space: nowrap;
    transition: opacity 0.2s ease;
    outline: none;
}

.logout-card .btn-outline {
    width: 126px;
    flex-shrink: 0;
    background-color: var(--white);
    border: 1px solid #3c3c3c;
    color: #040404;
    outline: none;
}

.logout-card .btn-outline:hover {
    background-color: #f5f5f5;
}

.logout-card .btn-danger {
    flex: 1;
    background-color: var(--primary-color);
    border: none;
    color: var(--white);
}

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

/* LOGOUT-POPUP */

/* CALENDER-VIEW-PAGE */

.calendar-page {
    margin-top: 20px;
    background-color: var(--white);
    border-radius: 10px;
    padding: 20px;
}

.calendar-page-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.calendar-page-top .top-head-filter select.filter-select {
    background-color: #f3f3f3;
    box-shadow: none;
    color: var(--black);
}

.calendar-month-arrow {
    display: flex;
    align-items: center;
    gap: 15px;
}

.calendar-month-arrow span {
    font-weight: 700;
    font-size: 16px;
    color: var(--black);
}

.calendar-month-arrow button.arrow-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--text-color);
    background-color: transparent;
    color: var(--text-color);

    &:hover {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
        color: var(--white);
    }
}

.calendar-page-inner {
    margin-top: 25px;
}

.calendar-wrapper {
    margin: 0 auto;
    border: 1px solid #e2e6ea;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0px 1px 2px 0px #0000000d;
}

/* DAY HEADERS */

.calendar-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: var(--black);
}

.day-label {
    padding: 15px 10px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
}

/* GRID */

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: #e2e6ea;
    gap: 1px;
}

.cell {
    background: #ffffff;
    min-height: 110px;
    padding: 10px 10px 8px;
    position: relative;
    transition: background 0.15s;
}

.cell:hover {
    background: #fafafa;
}

.cell.outside {
    background: #eeeeee;
}

.cell.outside .date-num {
    color: var(--black);
}

.date-num {
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 6px;
    display: inline-block;
    width: 26px;
    height: 26px;
    line-height: 26px;
    text-align: center;
    border-radius: 50%;
}

.cell.today .date-num {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 700;
}

/* EVENTS */

.events {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.event {
    font-size: 12px;
    font-weight: 600;
    padding: 3px 6px;
    border-radius: 4px;
    border-left: 2px solid transparent;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.event.green {
    background: #d1fae580;
    color: #10b981;
    border-color: #10b981;
}

.event.gray {
    background: #e3e3e380;
    color: #686868;
    border-color: #686868;
}

.event.red {
    background: #e0060a1a;
    color: #e0060a;
    border-color: #e0060a;
}

.event.orange {
    background: #ffecd280;
    color: #ff9300;
    border-color: #ff9300;
}

.more-link {
    font-size: 13px;
    font-weight: 600;
    color: #e0060a;
    margin-top: 2px;
    border: 1px solid #e0060a;
    background: none;
    display: flex;
    width: fit-content;
    padding: 0px 5px;
    border-radius: 6px;
    transition: color 0.15s;
}

.more-link:hover {
    background-color: #e0060a;
    color: var(--white);
}

/* EVENTS */

#all-events .notification-dropdown .notification-dropdown-body {
    max-height: 400px;
    padding-bottom: 15px;
}

/* CALENDER-VIEW-PAGE */
.read-more-container {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
}

.read-more-btn {
    border: none;
    background: transparent;
    color: #ed2227;
    font-size: 16px;
    padding: 0;
    font-weight: 500;
}

.read-arrow {
    font-size: 14px;
}

.more-text {
    display: inline;
}
.notification-dropdown-body-itm.is-unread {
    background-color: #eef4ff;    
    border-left: 3px solid #3b82f6; 
}

.notification-dropdown-body-itm.is-unread h3 {
    font-weight: 700;
}