:root {
    --max-width: 1100px;
    --border-radius: 12px;
    --font-mono: ui-monospace, Menlo, Monaco, 'Cascadia Mono', 'Segoe UI Mono', 'Roboto Mono', 'Oxygen Mono', 'Ubuntu Monospace', 'Source Code Pro', 'Fira Mono', 'Droid Sans Mono',
        'Courier New', monospace;
    --fc-today-bg-color: rgba(var(--primary-color), 0.1);
    --foreground-rgb: 0, 0, 0;
    --background-start-rgb: 214, 219, 220;
    --background-end-rgb: 255, 255, 255;

    --primary-glow: conic-gradient(from 180deg at 50% 50%, #16abff33 0deg, #0885ff33 55deg, #54d6ff33 120deg, #0071ff33 160deg, transparent 360deg);
    --secondary-glow: radial-gradient(rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));

    --tile-start-rgb: 239, 245, 249;
    --tile-end-rgb: 228, 232, 233;
    --tile-border: conic-gradient(#00000080, #00000040, #00000030, #00000020, #00000010, #00000010, #00000080);

    --callout-rgb: 238, 240, 241;
    --callout-border-rgb: 172, 175, 176;
    --card-rgb: 180, 185, 188;
    --card-border-rgb: 131, 134, 135;
}

@media (prefers-color-scheme: dark) {
    :root {
        --foreground-rgb: 255, 255, 255;
        --background-start-rgb: 0, 0, 0;
        --background-end-rgb: 0, 0, 0;

        --primary-glow: radial-gradient(rgba(1, 65, 255, 0.4), rgba(1, 65, 255, 0));
        --secondary-glow: linear-gradient(to bottom right, rgba(1, 65, 255, 0), rgba(1, 65, 255, 0), rgba(1, 65, 255, 0.3));

        --tile-start-rgb: 2, 13, 46;
        --tile-end-rgb: 2, 5, 19;
        --tile-border: conic-gradient(#ffffff80, #ffffff40, #ffffff30, #ffffff20, #ffffff10, #ffffff10, #ffffff80);

        --callout-rgb: 20, 20, 20;
        --callout-border-rgb: 108, 108, 108;
        --card-rgb: 100, 100, 100;
        --card-border-rgb: 200, 200, 200;
    }
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html,
body {
    max-width: 100vw;
    scroll-behavior: smooth;
    /* overflow-x: hidden; */
}

body {
    color: rgb(var(--foreground-rgb));
    background: linear-gradient(to bottom, transparent, rgb(var(--background-end-rgb))) rgb(var(--background-start-rgb));
}

a {
    color: inherit;
    text-decoration: none;
}

@media (prefers-color-scheme: dark) {
    html {
        color-scheme: dark;
    }
}

/*
Theme Name: Sheikh
*/

:root {
    --font-family-GT-Eesti: 'GT Eesti Pro Txt Trial', sans-serif;
    --font-family-Cera: 'Cera Pro', sans-serif;
    --white: #fff;
    --black: #000;
    --theme-black: 22, 24, 31;
    --primary-color: 54, 97, 235;
    --sky-blue: #f8f9fa;
    --navy-blue: #1f2128;
    --theme-green: 110, 229, 180;
    --theme-green-dark: 88, 201, 114;
    --theme-red: 234, 109, 109;
    --body-bg: #f8f8fa;
    --text-color: #7d8391;
    --light-grey: #f5f5f7;
    --theme-grey: #dee1e8;
    --fs-11: 11px;
    --fs-12: 12px;
    --fs-13: 13px;
    --fs-14: 14px;
    --fs-15: 15px;
    --fs-16: 16px;
    --fs-18: 18px;
    --fs-20: 20px;
}

*,
*:active,
*:focus,
option:focus {
    outline: none !important;
    box-sizing: border-box;
}

button::-moz-focus-inner {
    border: 0;
}

img {
    border: none;
    max-width: 100%;
    display: block;
    height: auto;
}

html,
body {
    margin: 0;
    padding: 0;
    list-style-type: none;
    line-height: normal;
}

body {
    background: var(--body-bg);
    color: rgb(var(--theme-black));
    font-family: var(--font-family-GT-Eesti);
    font-weight: 300;
    font-size: var(--fs-12);
    margin: 0 auto;
    position: relative;
    /* overflow-x: hidden; */
}
p,
li {
    line-height: 20px;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0 0 10px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
}

h2 {
    font-size: 24px;
    font-weight: 400;
}
h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}
h4 {
    font-size: var(--fs-15);
    font-weight: 400;
}
h5 {
    font-size: var(--fs-15);
    font-weight: 600;
}
h6 {
    font-size: var(--fs-12);
    font-weight: 600;
}

a,
a:hover {
    color: rgb(var(--theme-black));
    text-decoration: none;
}
a {
    display: inline-block;
}

/*====== Theme Style ======*/
.theme-btn {
    text-align: center;
    font-family: var(--font-family-GT-Eesti);
    font-size: var(--fs-14);
    font-weight: 600;
    cursor: pointer;
    color: var(--white);
    background: rgb(var(--primary-color));
    border: 1px solid rgb(var(--primary-color));
    display: inline-block;
    padding: 13px 33px;
    transition: all 0.5s;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.16);
    position: relative;
}
.theme-btn:hover {
    opacity: 0.9;
    color: var(--white);
}
.theme-btn-sm {
    min-width: 90px;
    padding: 10px 5px;
}
.theme-btn-md {
    min-width: 180px;
}
.theme-btn-lg {
    min-width: 210px;
}
.theme-btn--secondary {
    background: var(--text-color);
    border-color: var(--text-color);
}
.theme-btn--transparent {
    color: var(--text-color);
    border: 1px solid var(--theme-grey);
    background: none;
    box-shadow: none;
}
.theme-btn--transparent:hover {
    border-color: rgb(var(--primary-color));
    background: rgb(var(--primary-color));
    color: var(--white);
}
.theme-btn--red {
    border-color: var(--theme-red);
    background: var(--theme-red);
    padding: 11px 25px !important;
}
.theme-btn--white {
    border-color: var(--white);
    background: var(--white);
    color: rgb(var(--theme-black));
}
.theme-btn--white:hover {
    border-color: rgb(var(--primary-color));
    background: rgb(var(--primary-color));
    color: var(--white);
}
.theme-btn--black {
    background: rgb(var(--theme-black));
    border-color: rgb(var(--theme-black));
}
.theme-btn--orange {
    background: #ff9800;
    border-color: #ff9800;
}
.theme-btn--orange:hover {
    background: #ff9800;
    border-color: #ff9800;
}
.th-textbox {
    display: block;
    width: 100%;
    font-family: var(--font-family-Cera);
    font-size: var(--fs-14);
    color: rgb(var(--theme-black));
    border: none;
    border-radius: 15px;
    padding: 14px 20px;
    letter-spacing: 0.5px;
}
.autoform-wrapper .react-datepicker-popper {
    z-index: 9999999999999 !important;
}

.autoform-wrapper .react-datepicker-wrapper {
    width: 100%;
}

.autoform-wrapper .react-datepicker-wrapper input {
    display: block;
    width: 100%;
    font-weight: 300;
    color: var(--black);
    background: white;
    border: none;
    border-radius: 6px;
    padding: 4px 11px;
    border: 1px solid #ddd;
}

.textfield,
.textfield,
.textbox {
    display: block;
    width: 100%;
    font-family: var(--font-family-GT-Eesti);
    font-size: var(--fs-12);
    font-weight: 300;
    background: var(--sky-blue);
    color: var(--black);
    border: none;
    border-radius: 10px;
    padding: 11px 15px;
}
.textfield::placeholder {
    font-style: italic;
}
.textfield::placeholder,
.textbox::placeholder {
    opacity: 1;
    color: rgba(0, 0, 0, 0.3);
}
.textfield:focus {
    box-shadow: 0 0 5px rgba(var(--primary-color), 0.3);
}
.textfield {
    font-size: var(--fs-14);
    background: var(--white);
    border: 1px solid rgb(var(--primary-color));
}
.th-textarea {
    resize: none;
    height: 130px;
    padding: 15px;
}
.field-icon-start,
.field-icon-end {
    position: relative;
}
.field-icon-end .textbox,
.field-icon-end .th-textbox {
    padding-right: 30px;
}
.field-icon-start .textbox,
.field-icon-start .th-textbox {
    padding-left: 30px;
}
.icon-end {
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
}
.icon-start {
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
}
.sm-icon {
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 17px;
    background-size: contain !important;
}
.sm-icon2 {
    display: inline-block;
    vertical-align: middle;
    width: 16px;
    height: 14px;
    background-size: contain !important;
}
.ms-office-icon {
    background: url(../images/ms-office-icon.svg) no-repeat center center;
}
.building-icon {
    background: url(../images/building-icon.svg) no-repeat center center;
    width: 30px;
    height: 30px;
}
.tick-icon {
    background: url(../images/check-green-icon.svg) no-repeat center center;
    height: 14px;
}
.eye-crossed-icon {
    background: url(../images/eye-crossed-icon.svg) no-repeat center center;
    height: 14px;
}

.disabled-datepicker {
    background-color: #f5f5f5 !important;
    color: #999 !important;
    cursor: not-allowed !important;
    border-color: #d9d9d9 !important;
}

.disabled-datepicker input {
    background-color: #f5f5f5 !important;
    color: #999 !important;
    cursor: not-allowed !important;
}

#app-sidebar {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 999999;
    max-width: 220px;
    min-width: 220px;
    padding: 20px 15px;
    background: var(--white);
    color: rgb(var(--theme-black));
    transition: all 0.4s;
}
.app-sidebar-content {
    padding: 25px 10px;
    height: 100%;
}

#app-main-content {
    width: calc(100%);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-height: 100vh;
    transition: width 0.4s;
}
.cta-links ul,
.main-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.cta-links ul li,
.main-menu ul li {
    margin-bottom: 4px;
}
.main-menu ul li a {
    color: var(--text-color);
    padding: 10px 30px 10px 30px;
    display: block;
    border-radius: 10px;
    font-weight: 300;
    position: relative;
}
.main-menu ul li.active a,
.main-menu ul li a:hover {
    background: rgba(var(--primary-color), 0.08);
    color: var(--black);
}
.main-menu ul li.active a::before,
.main-menu ul li a:hover::before {
    filter: brightness(0) saturate(100%) invert(24%) sepia(77%) saturate(2086%) hue-rotate(217deg) brightness(110%) contrast(89%);
    opacity: 1;
}
.main-menu ul li a::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 14px;
    height: 14px;
    background-size: contain !important;
    filter: invert(59%) sepia(6%) saturate(778%) hue-rotate(184deg) brightness(87%) contrast(87%);
    opacity: 0.4;
}
.main-menu ul li.nav-icon-meeting a::before {
    background: url(../images/nav-icon-meeting.svg) no-repeat center center;
}
.main-menu ul li.nav-icon-meeting-r a::before {
    background: url(../images/nav-icon-meeting-r.svg) no-repeat center center;
}
.main-menu ul li.nav-icon-documents a::before {
    background: url(../images/nav-documents-icon.svg) no-repeat center center;
}
.main-menu ul li.nav-icon-projects a::before {
    background: url(../images/nav-projects-icon.svg) no-repeat center center;
}
.main-menu ul li.nav-icon-contacts a::before {
    background: url(../images/nav-users-icon.svg) no-repeat center center;
}
.main-menu ul li.nav-icon-trips a::before {
    background: url(../images/nav-trips-icon.svg) no-repeat center center;
}
.main-menu ul li.nav-icon-twitter a::before {
    background: url(../images/nav-icon-twitter.svg) no-repeat center center;
}
.main-menu ul li.nav-icon-x a::before {
    background: url(../images/nav-icon-x.svg) no-repeat center center;
}
.main-menu ul li.nav-icon-lifestyle a::before {
    background: url(../images/nav-icon-lifestyle.svg) no-repeat center center;
}
.main-menu ul li.nav-icon-knowledge a::before {
    background: url(../images/nav-icon-knowledge.svg) no-repeat center center;
}
.main-menu ul li.nav-icon-sec a::before {
    background: url(../images/nav-icon-flag.svg) no-repeat center center;
}
.main-menu ul li.nav-icon-quick-access a::before {
    background: url(../images/nav-icon-quick-access.svg) no-repeat center center;
}
.main-menu ul li.nav-icon-tawasol a::before {
    background: url(../images/nav-icon-tawasol.svg) no-repeat center center;
}

.main-menu ul li.nav-icon-poem a::before {
    background: url(../images/nav-icon-poem.svg) no-repeat center center;
}
.main-menu ul li.nav-icon-settings a::before {
    background: url(../images/nav-icon-settings.svg) no-repeat center center;
}
.main-menu ul li.nav-icon-logout a::before {
    background: url(../images/logout-icon.svg) no-repeat center center;
}
.main-menu ul li.active a {
    font-weight: 600;
}
.cta-links ul li a:hover {
    background: rgba(var(--primary-color), 0.15);
}
.cta-links ul li a {
    color: var(--black);
    background: var(--sky-blue);
    font-weight: 300;
    padding: 10px 30px 10px 10px;
    display: block;
    border-radius: 10px;
    position: relative;
}
.cta-links ul li a::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 16px;
    height: 16px;
    background: rgb(var(--primary-color)) url(../images/plus-icon.svg) no-repeat center center;
    border-radius: 5px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.login-user-dropdown {
    top: auto !important;
}
.login-user .user-img img {
    min-width: 42px;
    width: 42px;
    height: 42px;
    border-radius: 100%;
    margin-right: 10px;
}
.login-user h4 {
    margin: 0;
}
.login-user p {
    font-size: 10px;
    color: var(--text-color);
    font-weight: 300;
    text-transform: uppercase;
    margin: 0;
}
.bg-navy-blue {
    background: var(--navy-blue) !important;
}

.dashboard-img::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.4);
}
.dashboard-img {
    position: relative;
    width: 100%;
    height: 400px;
}
.dashboard-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.dashboard-img-title {
    position: absolute;
    color: var(--white);
    z-index: 2;
    padding: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.dashboard-img-title h1 {
    font-weight: 400;
}
.dashboard-content {
    color: var(--white);
    padding: 30px 15px 10px;
    max-width: 430px;
    width: 100%;
    margin: 0 auto;
}
.dashboard-content h2 {
    font-family: var(--font-family-Cera);
}
.font-family-cera {
    font-family: var(--font-family-Cera);
}
.copyright {
    opacity: 0.6;
    color: #767676;
    font-weight: 300;
    font-size: var(--fs-11);
}
.form-field {
    margin-bottom: 15px;
}
.form-field label {
    display: block;
    margin-bottom: 10px;
}
.separator::before {
    content: '';
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    background: rgba(222, 225, 232, 0.2);
    height: 1px;
    position: absolute;
}
.separator {
    text-align: center;
    position: relative;
}
.separator span {
    position: relative;
    z-index: 1;
    display: inline-block;
    font-size: var(--fs-14);
    padding: 0 25px;
    background: var(--navy-blue);
}

.app-header {
    background: var(--black);
    color: var(--white);
    padding: 8px 20px;
}
.notifications {
    /* border-right: 1px solid rgba(255, 255, 255, 0.25); */
    /* border-left: 1px solid rgba(255, 255, 255, 0.25); */
}
.notification-icon {
    background: url(../images/bell-icon.svg) no-repeat center center;
    position: relative;
}
.notification-bubble::before {
    content: '';
    width: 6px;
    height: 6px;
    background: rgb(var(--primary-color));
    box-shadow: 0px 0px 6px rgb(var(--primary-color)), 0px 0px 6px rgb(var(--primary-color));
    border-radius: 10px;
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.notification-bubble {
    position: absolute;
    top: -3px;
    right: 1px;
    width: 10px;
    height: 10px;
    background: var(--black);
    border-radius: 10px;
}
.th-searchbox::placeholder {
    opacity: 1;
    color: rgba(255, 255, 255, 0.25);
}
.th-searchbox {
    font-family: var(--font-family-GT-Eesti);
    font-weight: 300;
    font-size: 13px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    padding: 12px 60px 12px 40px;
    min-width: 260px;
    color: var(--white);
}
.search-field .submit-btn {
    position: absolute;
    cursor: pointer;
    right: 5px;
    top: 4px;
    bottom: 4px;
    width: 48px;
    border-radius: 40px;
    background: rgb(var(--primary-color)) url(../images/arrow2-icon.svg) no-repeat center center;
    border: none;
    font-size: 0;
    text-indent: -99999px;
}
.search-field {
    position: relative;
}
.search-icon {
    background: url(../images/search-icon.svg) no-repeat center center;
}
.search-field .search-icon {
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.main-content {
    margin: 20px;
}
.content-area {
    background: var(--white);
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.05);
    padding: 20px;
    border-radius: 15px;
}
.view-by span {
    color: var(--text-color);
    display: inline-block;
    padding: 3px;
}
.grid-view-icon {
    background: url(../images/grid-view-icon.svg) no-repeat center center;
}
.list-view-icon {
    background: url(../images/list-view-icon.svg) no-repeat center center;
}
.calendar-icon {
    background: url(../images/nav-icon-meeting.svg) no-repeat center center;
}
.datepicker-field input {
    border: none;
    width: 100%;
    min-width: 200px;
    height: 35px;
    font-size: var(--fs-13);
    font-weight: 300;
    font-family: var(--font-family-GT-Eesti);
    padding: 5px 40px 5px 0;
    background: none;
    position: relative;
    z-index: 1;
}
.datepicker-field::after {
    content: '';
    width: 1px;
    height: 20px;
    background: rgba(0, 0, 0, 0.1);
    right: 45px;
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    margin: auto;
}
.datepicker-field .sm-icon {
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
}
.datepicker-field,
.show-record-range {
    position: relative;
    min-height: 45px;
    background: var(--sky-blue);
    border: 1px solid #eff0f4;
    border-radius: 10px;
    padding: 4px 10px;
}
.show-record-range label {
    padding: 10px 23px;
    cursor: pointer;
    border-radius: 10px;
    font-size: var(--fs-13);
}
.show-record-range input[type='radio']:checked + label {
    background-color: var(--white);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    font-weight: 400;
}
.show-record-range input[type='radio'] {
    display: none;
}
.page-title h4 {
    color: var(--text-color);
    font-weight: 300;
    margin-bottom: 0;
}
.icon-gray1 {
    filter: invert(59%) sepia(6%) saturate(778%) hue-rotate(184deg) brightness(87%) contrast(87%);
    opacity: 0.4;
}
.icon-gray {
    filter: invert(5%) sepia(1%) saturate(4949%) hue-rotate(184deg) brightness(100%) contrast(82%);
}
.icon-dark-gray {
    filter: invert(59%) sepia(6%) saturate(778%) hue-rotate(184deg) brightness(87%) contrast(87%);
    opacity: 0.35;
}
.icon-black {
    filter: invert(100%) sepia(85%) saturate(7439%) hue-rotate(276deg) brightness(95%) contrast(112%);
}
.search-table .sm-icon {
    width: 11px;
    height: 11px;
}
.filter-table ul li {
    /* margin: 5px 5px 5px 0; */
    margin-top: 5px;
    padding-left: 5px;
}
.filter-table ul li input[type='checkbox'] {
    display: none;
}
.type-meeting::before,
.filter-table label[for='meeting']::before {
    background: #ee7c58 !important;
}
.type-event::before,
.filter-table label[for='event']::before {
    background: #3661ec !important;
}
.type-private::before,
.filter-table label[for='private']::before {
    background: black !important;
}

.filter-table-no-indicatior label::before {
    display: none !important;
}

.rdt_Table {
    min-height: 300px !important;
}

table tr td .type,
.rdt_TableCell .type {
    display: inline-flex;
    align-items: center;
}
table tr td .type::before,
.rdt_TableCell .type::before,
.filter-table label::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 10px;
    display: block;
    margin-right: 7px;
    background: rgba(0, 0, 0, 0.35);
}
table tr td .type::before,
.rdt_TableCell .type::before {
    margin-right: 10px;
}
table tr.selected td {
    background: rgba(var(--primary-color), 0.05);
}

.filter-chip,
.filter-table label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    border: 1px solid var(--theme-grey);
    padding: 7px 10px;
    border-radius: 10px;
    color: var(--black);
    min-height: 32px;
}
.filter-table label {
    min-width: 95px;
    justify-content: space-between;
}
.filter-table label::after {
    content: '';
    margin-left: 10px;
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid var(--text-color);
    background: var(--white);
}
.filter-table input[type='checkbox']:checked + label::after {
    background: var(--black) url(../images/sm-check-icon.svg) no-repeat center center;
    background-size: 10px 8px !important;
    border-color: var(--black);
}
.filter-table .dropdown-filter-list li {
    margin: 0;
    padding: 0;
}
.filter-table .dropdown-filter-list label::before {
    display: none;
}
.filter-table .dropdown-filter-list label {
    border: none;
    display: flex;
    margin: 0 6px;
    color: var(--text-color);
}
.filter-table .dropdown-filter-list li input[type='checkbox']:checked + label {
    color: rgb(var(--theme-black));
}
.filter-table .dropdown-filter-list label::after {
    margin-left: auto;
}
.filter-table .dropdown-filter-list label:hover {
    background: var(--sky-blue);
}
.down-arrow-icon {
    background: url(../images/arrow-icon.svg) no-repeat center center;
    width: 8px;
    height: 5px;
}
.table-wrapper {
    width: 100%;
    overflow: auto;
    padding: 0 0 15px;
}
.table-wrapper table {
    width: 100%;
    font-size: var(--fs-12);
    color: rgb(var(--theme-black));
}
.table-wrapper table tr th span {
    cursor: pointer;
}
.table-wrapper.first-column-sm table tr th:first-child,
.table-wrapper.first-column-sm table tr td:first-child {
    width: 50px;
}
table.last-child-text-right tr th:last-child,
table.last-child-text-right tr td:last-child {
    text-align: right;
}
.table-wrapper table tr th,
.table-wrapper table tr td {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px;
}
.table-wrapper table tr th span {
    position: relative;
    display: inline-block;
    padding-right: 10px;
}
.table-wrapper table tr th span::before,
.table-wrapper table tr th span::after {
    content: '';
    width: 4px;
    height: 4px;
    position: absolute;
    right: 0;
    margin: auto;
    background: url(../images/sm-arrow-icon.svg) no-repeat center center;
}
.table-wrapper table tr th span::before {
    top: -5px;
    bottom: 0;
    transform: rotate(180deg);
}
.table-wrapper table tr th span::after {
    bottom: -5px;
    top: 0;
}
.theme-checkbox input[type='checkbox'] {
    display: none;
}
.theme-checkbox input[type='checkbox'] + label {
    position: relative;
    padding-left: 24px;
    min-height: 15px;
    cursor: pointer;
}
.theme-checkbox input[type='checkbox'] + label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    display: block;
    border-radius: 5px;
    border: 1px solid var(--theme-grey);
    cursor: pointer;
}
.theme-checkbox input[type='checkbox']:checked + label::before {
    background: rgb(var(--primary-color)) url(../images/sm-check-icon.svg) no-repeat center center;
    background-size: 10px 8px !important;
    border-color: rgb(var(--primary-color));
}
.record-status {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 15px;
}

.status-tawasol.status-1 {
    color: rgb(var(--primary-color));
    background-color: rgba(var(--primary-color), 0.1);
}
.status-tawasol.status-2 {
    color: #856404;
    background-color: #fff3cd;
}
.status-tawasol.status-5 {
    color: #6f42c1; /* Rich purple */
    background-color: #f4effb; /* Light purple */
}
.status-tawasol.status-3 {
    color: rgb(var(--theme-green-dark));
    background-color: rgba(var(--theme-green-dark), 0.12);
}
.status-tawasol.status-92,
.status-tawasol.status-91 {
    color: rgb(var(--theme-red));
    background-color: rgba(var(--theme-red), 0.12);
}

.status-2 {
    color: rgb(var(--theme-green-dark));
    background-color: rgba(var(--theme-green-dark), 0.12);
}
.status-3 {
    color: rgb(var(--theme-red));
    background-color: rgba(var(--theme-red), 0.12);
}

.status-4 {
    color: rgb(var(--theme-red));
    background-color: rgba(var(--theme-red), 0.12);
}
.status-1 {
    color: rgb(var(--primary-color));
    background-color: rgba(var(--primary-color), 0.1);
}
.status-5 {
    color: #856404;
    background-color: #fff3cd;
}
.status-6 {
    color: #856404;
    background-color: #fff3cd;
}
.status-7 {
    color: rgb(var(--theme-red));
    background-color: rgba(var(--theme-red), 0.12);
}

.status-project-update.status-8 {
    color: rgb(var(--primary-color));
    background-color: rgba(var(--primary-color), 0.1);
}

.status-activity-request.status-9,
.status-activity-request.status-91 {
    color: rgb(var(--theme-red));
    background-color: rgba(var(--theme-red), 0.12);
}

.status-activity-request.status-3 {
    color: #856404;
    background-color: #fff3cd;
}

.status-activity-request.status-2 {
    color: #6f42c1; /* Rich purple */
    background-color: #f4effb; /* Light purple */
}

.status-activity-request.status-4 {
    color: rgb(var(--theme-green-dark));
    background-color: rgba(var(--theme-green-dark), 0.12);
}

.mw-130 {
    min-width: 130px;
}
.cta-icons a {
    width: 26px;
    height: 26px;
    margin: 2px;
    border-radius: 5px;
    border: 1px solid var(--theme-grey);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.cta-icons a .sm-icon {
    width: 15px;
    height: 14px;
}
.cta-icons span {
    width: 26px;
    height: 26px;
    margin: 2px;
    border-radius: 5px;
    border: 1px solid var(--theme-grey);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.cta-icons span .sm-icon {
    width: 15px;
    height: 14px;
}
.call-icon {
    background: url(../images/call-icon.svg) no-repeat center center;
}
.view-icon {
    background: url(../images/view-icon.svg) no-repeat center center;
}
.edit-icon {
    background: url(../images/edit-icon.svg) no-repeat center center;
}
.trash-icon {
    background: url(../images/trash-icon.svg) no-repeat center center;
}
.dots-icon {
    background: url(../images/dots-icon.svg) no-repeat center center;
    width: 14px;
    min-width: 14px;
    height: 4px;
}
.separator-before::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 1px;
    height: 20px;
    background: rgba(0, 0, 0, 0.1);
}
.daterangepicker-field {
    position: relative;
}
.daterangepicker-field::after {
    background: initial !important;
}
.daterangepicker-field input {
    min-height: 32px;
    width: 100%;
    min-width: 205px;
    display: block;
    font-size: var(--fs-13);
    font-weight: 300;
    font-family: var(--font-family-GT-Eesti);
    position: relative;
    z-index: 1;
    padding: 7px 25px 7px 33px;
    border: 1px solid var(--theme-grey);
    border-radius: 10px;
    background: none;
    text-align: center;
}
.daterangepicker-field .sm-icon {
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
}
.daterangepicker-field::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 2px;
    bottom: 0;
    margin: auto;
    background: url(../images/arrow-icon.svg) no-repeat center center;
    display: block;
    width: 10px;
    height: 6px;
}

.toggle-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    box-shadow: 0 2px 10px rgb(0 0 0 / 8%);
    background: var(--white);
    border-radius: 10px;
    min-width: 190px;
    padding: 10px;
    z-index: 9999;
}
.toggle-btn {
    cursor: pointer;
    position: relative;
}
.toggle-dropdown li {
    padding: 5px 0;
}
.page-links,
.view-per-page ul {
    display: flex;
    border: 1px solid var(--theme-grey);
    border-radius: 6px;
}
.view-per-page ul li:not(:last-child) {
    border-right: 1px solid var(--theme-grey);
}
.view-per-page ul li a:hover,
.view-per-page ul li.active a {
    background: var(--light-grey);
}
.view-per-page ul li:first-child a {
    border-radius: 5px 0 0 5px;
}
.view-per-page ul li a {
    padding: 4px 11px;
    min-width: 30px;
    text-align: center;
}

.view-per-page ul li span:hover,
.view-per-page ul li.active span {
    background: var(--light-grey);
}
.view-per-page ul li:first-child span {
    border-radius: 5px 0 0 5px;
}
.view-per-page ul li span {
    padding: 4px 11px;
    min-width: 30px;
    text-align: center;
}
.page-links a.perv-page {
    transform: rotate(180deg);
    border-left: 1px solid var(--theme-grey);
}
.page-links a {
    display: block;
    padding: 11px 16px;
    background: url(../images/md-arrow-black.svg) no-repeat center center;
    position: relative;
}
.page-links span.perv-page {
    transform: rotate(180deg);
    border-left: 1px solid var(--theme-grey);
}
.page-links span {
    display: block;
    padding: 11px 16px;
    background: url(../images/md-arrow-black.svg) no-repeat center center;
    position: relative;
    cursor: 'pointer';
}
.disabled-page-link {
    opacity: 0.5;
}
.dropdown-arrow::after {
    content: '';
    display: block;
    width: 13px;
    height: 10px;
    background: url(../images/arrow-icon.svg) no-repeat center center;
    top: 4px;
    right: 0;
    position: absolute;
}
.dropdown-arrow {
    padding-right: 25px;
    position: relative;
}
.close-icon {
    position: relative;
    cursor: pointer;
    width: 12px;
    height: 12px;
    z-index: 9;
}
.close-icon::before {
    transform: rotate(45deg);
}
.close-icon::after {
    transform: rotate(135deg);
}
.close-icon::before,
.close-icon::after {
    position: absolute;
    content: '';
    border-radius: 4px;
    width: 2px;
    height: 12px;
    background: rgb(var(--theme-black));
    top: 0;
    left: 5px;
}
.hamburger-menu-btn {
    z-index: 999;
    cursor: pointer;
    min-width: 25px;
    width: 25px;
    height: 25px;
    border-radius: 4px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hamburger-menu-btn span {
    background: var(--white);
    display: block;
    position: relative;
    width: 25px;
    height: 2px;
    border-radius: 4px;
    transition: all 0.3s;
}
.hamburger-menu-btn span::before {
    top: -6px;
}
.hamburger-menu-btn span::after {
    bottom: -6px;
}
.hamburger-menu-btn span::before,
.hamburger-menu-btn span::after {
    background: var(--white);
    content: '';
    width: 25px;
    height: 2px;
    border-radius: 4px;
    position: absolute;
    left: 0;
    transition: all 0.3s;
}

.sidebar-opend {
    overflow: hidden;
}
.filled-chips ul li {
    display: inline-block;
    vertical-align: top;
    min-height: 30px;
    margin: 5px 3px 0 0;
}
.fill-chip {
    display: inline-flex;
    align-items: center;
    background: rgba(125, 131, 145, 0.1);
    color: var(--text-color);
    border-radius: 20px;
    padding: 8px 15px;
}
.fill-chip .sm-icon {
    width: 15px;
    height: 13px;
    margin-right: 7px;
}
.marker-icon {
    background: url(../images/marker-icon.svg) no-repeat center center;
}
.clock-icon {
    background: url(../images/clock-icon.svg) no-repeat center center;
}
.clock-icon2 {
    background: url(../images/clock-icon2.svg) no-repeat center center;
}
.calendar-icon2 {
    background: url(../images/calendar-icon2.svg) no-repeat center center;
}
.delete-event {
    width: 45px;
    height: 45px;
    border: 1px solid var(--theme-grey);
    border-radius: 15px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

.back-link {
    font-size: 10px;
    margin-bottom: 15px;
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--text-color);
}
.arrow-left {
    background: url(../images/md-arrow-black.svg) no-repeat top right;
    transform: rotate(180deg);
    opacity: 0.4;
    width: 10px;
    height: 10px;
}

.sky-blue-box {
    background: var(--sky-blue);
    border-radius: 10px;
    padding: 15px;
    font-size: var(--fs-14);
}
.sky-blue-box h4 {
    color: rgb(var(--primary-color));
    font-size: var(--fs-14);
}
.sky-blue-box p {
    margin-bottom: 5px;
}
.border-bottom-list li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.border-bottom-list li:last-child {
    border-bottom: none;
}
.list-items-flex li span.schedule-time {
    min-width: 110px;
    display: inline-flex;
    align-items: center;
}
.list-items-flex li {
    display: flex;
    align-items: start;
    padding: 8px 0;
}
.list-items-flex li .sm-icon {
    width: 14px;
    height: 14px;
    margin-right: 9px;
}
.light-text {
    color: var(--text-color);
}
.step-img img {
    width: 42px;
    min-width: 42px;
    border-radius: 5px;
    margin-right: 10px;
}
.steps-list li {
    padding: 5px 0;
}
.participant-img img {
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 100%;
    margin-right: 10px;
}
.participants-list .list-text p {
    margin: 0;
}
.border-bottom-light {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.comment-box {
    border: 1px solid var(--theme-grey);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 10px;
}
.comment-user-img {
    margin-right: 10px;
    border-radius: 35px;
    min-width: 35px;
    width: 35px;
    height: 35px;
}
.reply-form-wrapper .comment-user-img {
    min-width: 25px;
    width: 25px;
    height: 25px;
}
.user-comment h6 {
    margin: 0;
    font-weight: 400;
    font-size: var(--fs-13);
}
.user-comment p {
    margin: 8px 0;
    line-height: 17px;
    color: rgb(var(--theme-black));
}
.comment-bottom span {
    display: inline-flex;
    align-items: center;
    margin-right: 10px;
    font-size: var(--fs-11);
    color: var(--text-color) !important;
}
.comment-bottom span i {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-size: contain !important;
    margin-right: 6px;
}
.clock-black-icon {
    background: url(../images/clock-black-icon.svg) no-repeat center center;
}
.reply-icon {
    background: url(../images/reply-icon.svg) no-repeat center center;
}
.reply-btn {
    font-size: var(--fs-11);
    font-weight: 600;
    color: rgb(var(--primary-color));
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
}
.reply-field .textbox {
    padding-right: 50px;
}
.user-comment {
    margin-bottom: 10px;
    position: relative;
}
.user-reply::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 25px;
    background: rgba(0, 0, 0, 0.1);
    width: 1px;
}
.user-reply {
    position: relative;
    margin-left: 35px;
    padding-left: 13px;
}
.user-comment span {
    font-size: var(--fs-11);
    color: rgba(0, 0, 0, 0.5);
}
.steps-links li a {
    display: block;
    margin-left: 30px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}
.steps-links li h5 {
    color: var(--text-color);
    margin-bottom: 5px;
}
.steps-links li h5 span {
    display: block;
    font-weight: 300;
    padding-bottom: 2px;
}
.steps-links li p {
    color: var(--text-color);
    font-size: var(--fs-13);
}
.steps-links li a::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #eff0f4;
}
.steps-links li a::after {
    content: '';
    position: absolute;
    left: -32px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 18px;
    height: 18px;
    border-radius: 100%;
    background: #eff0f4;
}
.steps-links li a:hover h5,
.steps-links li.active a h5 {
    color: rgb(var(--primary-color));
}

.steps-links li a:hover::before,
.steps-links li.active a::before {
    background: rgb(var(--theme-green));
}
.steps-links li a:hover::after,
.steps-links li.active a::after {
    background: rgb(var(--theme-green)) url(../images/check-icon.svg) no-repeat center center;
    background-size: 10px 8px !important;
}

.form-content-wrapper h5 {
    color: rgb(var(--primary-color));
    padding-bottom: 7px;
}
.form-content-wrapper .note {
    margin-bottom: 0;
    padding-bottom: 0;
}
.form-content-wrapper h5 span {
    display: block;
    font-weight: 300;
}
.form-step-content {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 5px;
    margin-bottom: 25px;
}
.border-bottom-none {
    border-bottom: none !important;
}
.form-content-wrapper .textbox {
    color: var(--navy-blue);
    font-size: var(--fs-16);
    border: 1px solid var(--sky-blue);
}
.form-content-wrapper .textbox:focus {
    border-color: rgb(var(--primary-color));
}
.radio-option label {
    cursor: pointer;
    position: relative;
    margin: 0;
}
.radio-option label::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 22px;
    height: 22px;
    border-radius: 100%;
    border: 1px solid var(--theme-grey);
}
.radio-option input[type='radio']:checked + label::after {
    background: rgb(var(--primary-color)) url(../images/check-icon.svg) no-repeat center center;
    background-size: 10px 8px !important;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    border-color: rgb(var(--primary-color));
}
.radio-option input[type='radio']:checked + label {
    border-color: rgb(var(--primary-color));
}
.radio-option input[type='radio'] {
    display: none;
}

.radio-option input[type='checkbox']:checked + label::after {
    background: rgb(var(--primary-color)) url(../images/check-icon.svg) no-repeat center center;
    background-size: 10px 8px !important;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    border-color: rgb(var(--primary-color));
}
.radio-option input[type='checkbox']:checked + label {
    border-color: rgb(var(--primary-color));
}
.radio-option input[type='checkbox'] {
    display: none;
}

.form-content-wrapper label {
    font-size: var(--fs-14);
    color: var(--text-color);
}
.form-content-wrapper .textbox,
.form-content-wrapper textarea {
    color: var(--navy-blue);
}
.form-content-wrapper textarea.textarea {
    height: 83px;
}
.add-form-field {
    text-align: center;
    border: 1px dashed rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 7px;
    cursor: pointer;
}
.add-form-field p {
    margin: 0;
}
.add-btn {
    width: 35px;
    height: 35px;
    background: rgb(var(--primary-color));
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 5px auto 10px;
}
.plus-icon {
    background: url(../images/plus-icon.svg) no-repeat center center;
    width: 8px;
    height: 8px;
}
.yes-no-options label {
    padding-right: 30px;
}
.yes-no-options label:not(:last-child) {
    margin-right: 10px;
}
.yes-no-options label::after {
    right: 0;
}
.yes-no-options input[value='no']:checked + label::after {
    background: rgb(var(--theme-red)) url(../images/check-icon.svg) no-repeat center center;
    border-color: rgb(var(--theme-red));
    box-shadow: none;
}
.yes-no-options input[value='yes']:checked + label::after {
    background: rgb(var(--theme-green)) url(../images/check-icon.svg) no-repeat center center;
    border-color: rgb(var(--theme-green));
    box-shadow: none;
}
.radio-option.yes-no-options {
    min-width: 120px;
    text-align: right;
}
.add-icon-end {
    cursor: pointer;
    margin: auto;
    right: 8px;
    width: 30px;
    height: 30px;
}
.theme-chips li {
    display: inline-flex;
    align-items: center;
    background: rgba(var(--primary-color), 0.05);
    padding: 7px 10px;
    border-radius: 40px;
    line-height: normal;
    margin: 0 5px 5px 0;
    min-height: 48px;
}
.chip-img img {
    margin-right: 10px;
    width: 25px;
    min-width: 25px;
    height: 25px;
    border-radius: 25px;
}
.chip-text p {
    margin: 0;
    font-size: var(--fs-13);
}
.chip-text span {
    font-size: var(--fs-11);
    text-transform: uppercase;
    color: var(--text-color);
}
.added-step {
    background: var(--sky-blue);
    border-radius: 10px;
    margin-bottom: 7px;
}
.added-step-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 5px 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.added-step-header p {
    margin: 0;
    font-size: var(--fs-14);
    color: var(--text-color);
}
.added-step-header .remove-added-step {
    cursor: pointer;
    background: var(--white);
    border-radius: 5px;
    border: 1px solid #eff0f4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}
.added-step-body {
    padding: 10px;
    display: flex;
    align-items: flex-start;
}
.added-step-img {
    margin-right: 10px;
    position: relative;
}
.added-step-img,
.added-step-img img {
    width: 80px;
    height: 90px;
    border-radius: 10px;
}
.added-step-placeholder span {
    text-decoration: underline;
}
.added-step-placeholder {
    color: var(--text-color);
    border: 1px dashed rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    height: 100%;
    width: 100%;
    font-size: var(--fs-11);
    text-align: center;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.cloud-icon {
    display: block;
    width: 15px;
    height: 15px;
    background: url(../images/cloud-upload-icon.svg) no-repeat center center;
    background-size: contain !important;
}
.img-cta {
    position: absolute;
    top: 5px;
    right: 5px;
}
.img-cta i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    margin-left: 3px;
}
.img-cta i::before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background-size: contain !important;
}
.img-cta i.delete-icon::before {
    background: url(../images/trash-icon2.svg) no-repeat center center;
}
.img-cta i.edit-icon::before {
    background: url(../images/edit-icon2.svg) no-repeat center center;
}
textarea.textbox.textarea-40 {
    height: 50px;
}
textarea.textbox.textarea-270 {
    height: 270px;
}
.select-field::after {
    content: '';
    background: url(../images/arrow-icon.svg) no-repeat center center;
    background-size: contain !important;
    width: 10px;
    height: 8px;
    position: absolute;
    right: 5px;
    top: 1px;
    bottom: 0;
    margin: auto;
}
.select-field {
    position: relative;
    overflow: hidden;
    padding-right: 13px;
}
.select-field select {
    border: none;
    background: none;
    width: calc(100% + 40px);
    font-size: var(--fs-14);
    font-weight: 300;
    color: rgb(var(--theme-black));
    position: relative;
    z-index: 2;
}
.field-icon-start select {
    padding-left: 25px;
}
.icon-left-0 {
    left: 0 !important;
}
.select-field.textbox {
    padding: 0;
}
.select-field.textbox select {
    height: 100%;
    padding: 10px 15px;
}
.select-field.textbox.field-icon-start select {
    padding-left: 30px;
}
.form-content-wrapper .icon-start {
    left: 7px;
}
.form-content-wrapper .icon-end {
    right: 7px;
}
.field-icon-lg-start.textbox.select-field select {
    padding-left: 40px;
}
.field-icon-lg .th-textbox,
.field-icon-lg .textbox {
    padding-right: 50px;
}
.tag-grey {
    background: var(--sky-blue);
    display: inline-block;
    padding: 5px 8px;
    margin: 3px;
    border-radius: 13px;
    min-width: 70px;
    text-align: center;
}
.print-icon {
    background: url(../images/print-icon.svg) no-repeat center center;
    width: 16px;
    height: 14px;
}
.pdf-view {
    max-width: 1250px;
    width: 100%;
    margin: 0 auto;
}
.alert-msg {
    font-size: var(--fs-14);
    color: rgb(var(--primary-color));
    border-radius: 10px;
    padding: 10px;
    background: #eff2fe;
    display: flex;
    align-items: center;
}
.info-icon {
    min-width: 20px;
    background: url(../images/info-icon.svg) no-repeat center center;
}

.popup-modal {
    /* display: none; */
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.6);
    top: 0;
    left: 0;
    border: 20px solid transparent;
}

.popup-modal-inner.create {
    width: 420px;
    background: white;
    overflow: initial;
}

.popup-modal-body {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-direction: column;
    padding: 1rem;
}

.popup-modal-body h5 {
    color: var(--text-color);
}

.popup-modal-inner {
    background: var(--sky-blue);
    position: fixed;
    border-radius: 10px;
    max-width: 90%;
    width: calc(100% - 280px);
    max-height: 90%;
    top: 50%;
    padding: 15px;
    left: calc(50% + 110px);
    transform: translate(-50%, -50%);
    transition: all 0.5s;
    margin: auto;
    overflow: auto;
}

.popup-modal-inner.popup-full {
    width: calc(100% - 50px);
    left: calc(50%);
}

.drawer-overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    background: transparent;
    top: 0;
    left: 0;
    border: 20px solid transparent;
    visibility: hidden;
    transition: all 0.3s ease-out;
}

.drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1040;
    background-color: #fff;
    padding: 1rem;
    width: 550px;
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.drawer-overlay.show {
    visibility: visible;
    background: rgba(0, 0, 0, 0.6);
}

.drawer-overlay.show .drawer {
    transform: translateX(0);
    transition-delay: 0.5s;
}

.drawer .close {
    background: rgba(41, 46, 60, 0.1);
    border-radius: 5px;
    height: 25px;
    width: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.drawer .body {
    flex: 1;
    overflow-y: scroll;
}

.drawer .body h4 {
    position: sticky;
    top: 0;
    background: white;
    padding-bottom: 0.5rem;
}

.report-container {
    background: #f8f9fa;
    padding: 0.5rem;
    flex-direction: column;
    display: flex;
    gap: 0.85rem;
    border-radius: 10px;
}

.report-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.report-container textarea {
    border-radius: 10px;
    padding: 0.5rem;
    background: white;
}

.pdf-attachment {
    border-radius: 2rem;
    background: rgba(54, 97, 235, 0.05);
    padding: 0.5rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.tox-tinymce {
    border: none !important;
}
.tox .tox-toolbar,
.tox .tox-toolbar__overflow,
.tox .tox-toolbar__primary {
    background-color: #eff0f4 !important;
    border-radius: 10px 10px 0 0;
}
.tox .tox-edit-area__iframe {
    background: var(--sky-blue) !important;
    border-radius: 0 0 10px 10px;
}
.color-primary {
    color: rgb(var(--primary-color)) !important;
}
.color-green {
    color: rgb(var(--theme-green-dark)) !important;
}
.color-red {
    color: rgb(var(--theme-red)) !important;
}

.tag {
    border-radius: 15px;
    display: inline-block;
    padding: 8px 12px;
}
.tag-design {
    background: rgba(217, 61, 176, 0.1);
    color: #d93db0;
}
.tag-planning {
    background: rgba(17, 172, 242, 0.1);
    color: #4eacf2;
}
.tag-dev {
    background: rgba(126, 222, 44, 0.1);
    color: #62c90a;
}
.tag-testing {
    background: rgba(224, 193, 20, 0.1);
    color: #e0c114;
}
.disabled-field .textbox {
    opacity: 0.7;
    pointer-events: none;
}
.bookmark-icon {
    background: url(../images/bookmark-icon.svg) no-repeat center center;
}

.project-percentage {
    max-width: 60px;
    margin-left: 5px;
}
.table-wrapper table.tasks-table tr th div {
    font-size: var(--fs-14);
    font-weight: 400;
    text-align: center;
    background: rgba(var(--primary-color), 0.1);
    border-radius: 10px;
    padding: 12px 5px;
}
.table-wrapper table.tasks-table tr th,
.table-wrapper table.tasks-table tr td {
    border-top: none;
    padding: 4px;
}
.fw-400 {
    font-weight: 400 !important;
}
.fs-14 {
    font-size: var(--fs-14) !important;
}
.color-yellow {
    color: #ffc500;
}
.bg-light {
    background: rgba(0, 0, 0, 0.05) !important;
    padding: 8px 10px !important;
}
.budget-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 55px;
    padding: 5px 15px;
    margin-bottom: 5px;
    border-radius: 15px;
    line-height: normal;
    background: rgba(0, 0, 0, 0.05);
}
.budget-list li h5 {
    margin: 0;
}
.budget-list li span {
    font-size: var(--fs-12);
}
.budget-list li small {
    font-size: 10px;
}
.contact-img img {
    width: 28px;
    min-width: 28px;
    height: 28px;
    border-radius: 30px;
    margin-right: 10px;
}
.contact-profile-img {
    max-width: 256px;
    min-width: 256px;
}
.contact-profile-img img {
    height: 256px;
    min-width: 256px;
    border-radius: 100%;
}
.no-resize {
    resize: none;
}
div.textbox {
    line-height: 20px;
}
.copy-icon {
    background: url(../images/copy-icon.svg) no-repeat center center;
    z-index: 8;
    cursor: pointer;
}
.list-contrast li {
    color: var(--text-color);
}
.list-contrast li span {
    font-weight: 400;
    color: rgb(var(--theme-black));
}
.d-list-item li {
    display: list-item;
    list-style: disc outside;
    color: rgb(var(--theme-black));
    border: none;
    padding: 0;
}
.schedule-box {
    background: rgba(0, 0, 0, 0.05);
    padding: 7px 10px;
    font-size: var(--fs-14);
}
.tab-panel {
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    background: var(--white);
    border-radius: 20px;
    padding: 25px;
}
.sm-logo {
    width: 27px !important;
    min-width: 27px !important;
    height: 27px !important;
}
.sm-logo img {
    max-width: 15px !important;
}
.flight-logo {
    background: var(--white);
    min-width: 65px;
    width: 65px;
    height: 65px;
    border: 1px solid var(--theme-grey);
    border-radius: 100%;
    margin-right: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.flight-logo img {
    max-width: 32px;
    margin: 0 auto;
}
.flight-name h4 {
    margin: 0;
    font-size: var(--fs-18);
}
.flight-name span {
    font-size: var(--fs-13);
    color: var(--text-color);
}
.flight-logo-shadow img {
    width: 60px;
    min-width: 60px;
    height: auto;
    opacity: 0.06;
}
.flight-schedule {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 5px 0 0;
    margin-bottom: 15px;
}
.flight-schedule span {
    font-weight: 400;
    font-size: var(--fs-14);
}
.flight-schedule h3 {
    font-weight: 600;
    font-size: 22px;
    color: rgb(var(--primary-color));
}
.flight-schedule h4 {
    font-size: var(--fs-18);
    font-weight: 400;
    margin: 0;
}
.flight-schedule p {
    margin: 0;
    font-size: var(--fs-14);
    color: rgba(0, 0, 0, 0.4);
}
.flight-info ul li {
    min-width: 30%;
    font-size: var(--fs-15);
    font-weight: 400;
    padding: 10px 0;
}
.flight-info ul li:first-child,
.flight-info ul li:nth-child(3n + 1) {
    width: 40%;
}
.flight-info ul li:nth-child(3n) {
    text-align: right;
}
.flight-info ul li span {
    display: block;
    font-size: var(--fs-14);
    font-weight: 300;
    color: rgba(0, 0, 0, 0.25);
}
.flight-bars::before,
.flight-bars::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05) inset;
    top: -13px;
    background: var(--white);
    border-radius: 100%;
}
.flight-bars::before {
    left: -38px;
}
.flight-bars::after {
    right: -38px;
}
.flight-bars {
    text-align: center;
    position: relative;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    padding: 25px 0 0;
}
.flight-bars img {
    max-width: 330px;
    width: 100%;
    margin: 0 auto;
}
.tabs-links li:last-child {
    margin-right: 0;
}
.tabs-links li:first-child {
    margin-left: 0;
}
.tabs-links li {
    margin: 7px;
}
.tabs-links li a {
    font-size: var(--fs-14);
    font-weight: 400;
    display: inline-block;
    padding: 4px 0;
    color: rgba(var(--primary-color), 0.2);
    border-bottom: 1px solid transparent;
}
.tabs-links li a:hover,
.tabs-links li.active a {
    border-color: rgb(var(--primary-color));
    color: rgb(var(--primary-color));
}

.hotel-images {
    margin-top: 20px;
    gap: 10px;
}
.hotel-img {
    max-width: 245px;
    width: 32%;
    position: relative;
    border-radius: 10px;
}
.hotel-img img {
    border-radius: 10px;
    width: 100%;
}

.chip-btn {
    display: inline-flex;
    align-items: center;
    color: var(--white);
    background: rgb(var(--primary-color));
    padding: 8px 15px;
    border-radius: 10px;
    font-size: var(--fs-14);
}
.chip-btn:hover {
    opacity: 0.9;
    color: var(--white);
}
.theme-chips-secondary li {
    display: inline-flex;
    align-items: center;
    background: var(--sky-blue);
    padding: 8px 15px;
    border-radius: 10px;
    line-height: normal;
    margin: 0 4px 8px 0;
    font-size: var(--fs-14);
}

.theme-chips-secondary li.active {
    background: rgb(var(--theme-black));
    color: var(--white);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.theme-chips-secondary li .cross-icon {
    background: rgba(125, 131, 145, 0.3) url(../images/cross-white-icon.svg) no-repeat center center;
    background-size: 6px 6px !important;
    width: 16px;
    height: 16px;
    border-radius: 100%;
}
.twitter-post-img {
    margin: 30px 0 0;
}
.twitter-post-img,
.twitter-post-img img {
    max-width: 345px;
    border-radius: 15px;
    max-width: 100%;
}
.twitter-img {
    position: relative;
    border-radius: 15px;
    max-width: 345px;
    width: 40%;
}
.twitter-img img {
    width: 100%;
}
.post-details-wrapper .sky-blue-box {
    color: rgba(0, 0, 0, 0.5);
}
.post-details-wrapper .sky-blue-box p {
    margin-bottom: 20px;
}
.theme-chips-primary li {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 10px;
    line-height: normal;
    margin: 0 4px 8px 0;
    font-size: var(--fs-14);
    background: rgba(var(--primary-color), 0.05);
    color: rgb(var(--primary-color));
}
.error {
    color: rgb(var(--theme-red));
}
.error-field.select-field,
.error-field .textbox {
    margin-bottom: 5px;
}
.error-field .sm-icon2,
.error-field .sm-icon {
    filter: invert(86%) sepia(82%) saturate(10074%) hue-rotate(356deg) brightness(103%) contrast(100%);
}
.error-field.select-field,
.error-field .textbox {
    background: rgba(var(--theme-red), 0.1);
    color: rgb(var(--theme-red));
}
.error-field .textbox:focus {
    border-color: rgb(var(--theme-red));
}
.error-field.textbox select {
    color: rgb(var(--theme-red));
}

.settings-content h5 {
    font-weight: 400;
}
.setting-video-preview {
    position: relative;
}
.setting-video-preview {
    max-width: 480px;
    width: 100%;
}
.setting-video-preview img,
.setting-video-preview video,
.setting-video-preview iframe {
    max-width: 480px;
    max-height: 280px;
    object-fit: cover;
    border-radius: 15px;
}
.entity-card label {
    display: block;
    margin-bottom: 10px;
    font-size: var(--fs-14);
    color: var(--text-color);
}
.entity-cards-wrapper {
    display: grid;
    /* grid-template-columns: repeat(auto-fill, minmax(4, 1fr)); */
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.entity-card {
    display: flex;
    flex-direction: column;
}
.entity-photo {
    position: relative;
    width: 100%;
}
.entity-photo img {
    width: 100%;
    border-radius: 15px;
}
.entity-photo-placeholder {
    height: 100%;
}
.photo-placeholder {
    border: 3px solid #eff0f4;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 15px;
    font-size: var(--fs-14);
    font-weight: 400;
    cursor: pointer;
    color: rgba(125, 131, 145, 0.5);
    width: 100%;
    height: 100%;
}
.photo-placeholder i {
    width: 25px;
    height: 25px;
    display: block;
    margin: 0 auto 10px;
}
.photo-placeholder a {
    color: rgba(125, 131, 145, 0.5);
    text-decoration: underline;
}
/*====== RESPONSIVE ======*/

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .white-bg-container {
        padding: 20px;
    }
    .dashboard-img {
        min-height: 100vh;
        height: 100%;
    }
    .saq-body-content h2 {
        font-size: 50px;
    }
    .saq-container h4,
    .thank-you-msg p {
        font-size: var(--fs-18);
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .scrollable-section {
        max-width: 310px;
    }
    .sticky-section-top {
        position: sticky;
        z-index: 9;
        top: 10px;
    }
    .col-lg-border-right {
        border-right: 1px solid rgba(0, 0, 0, 0.1);
    }
}
@media (max-width: 991px) {
    #app-wrapper {
        overflow-x: hidden;
    }
    .content-area {
        padding: 20px 15px;
    }
    .w-md-100 {
        width: 100%;
    }
    .w-md-100 .show-record-range {
        margin-left: auto;
    }
    .show-record-range label {
        padding: 10px 20px;
    }
    .view-by {
        margin-left: 0 !important;
    }
}
/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .dashboard-img {
        height: 100vh;
    }
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
}

@media (max-width: 767px) {
    .add-pdf-placeholder {
        min-height: 300px;
    }

    select.select-time,
    .daterangepicker-field input,
    .th-searchbox,
    .textfield,
    .textbox,
    .th-textbox {
        font-size: var(--fs-16) !important;
    }
    .popup-modal-inner {
        width: 100%;
        left: 50%;
    }
    #app-sidebar {
        min-width: 0;
        width: 0;
        height: 100%;
        position: fixed;
        left: -50px;
        top: 0;
        overflow: auto;
    }
    #app-sidebar.active {
        left: 0;
        min-width: 100%;
        width: 100%;
    }

    table.tasks-table tr td .textbox {
        min-width: 130px;
    }
    .contact-profile-img {
        margin: auto;
    }
}

@media (max-width: 575px) {
    .theme-btn-lg {
        min-width: inherit;
    }
    .content-area {
        padding: 15px;
    }
    .main-content {
        margin: 10px;
    }
    .search-wrapper .th-searchbox {
        width: 100%;
        min-width: inherit;
    }
    .search-wrapper {
        width: 100%;
        order: 3;
        margin: 10px 0 0;
    }
    .show-record-range {
        width: 100%;
        text-align: center;
    }
    .datepicker-field {
        width: 100%;
    }
    table .mw-130 {
        min-width: inherit;
    }
    .added-step-body {
        flex-wrap: wrap;
    }
    .added-step-textarea {
        width: 100%;
        margin-top: 10px;
    }
    textarea.textbox.textarea-40 {
        height: 100px;
    }

    .contact-profile-img,
    .contact-profile-img img {
        max-width: 180px;
        min-width: 180px;
        height: 180px;
    }

    .tab-panel {
        padding: 10px;
    }
    .flight-info ul li:first-child,
    .flight-info ul li:nth-child(3n + 1) {
        width: 50%;
    }
    .flight-info ul li:nth-child(3n),
    .flight-info ul li {
        width: 50%;
        text-align: left;
    }

    .flight-info ul li:nth-child(2n) {
        text-align: right;
    }
    .hotel-img {
        width: 47%;
    }
    .twitter-img {
        width: 100%;
    }

    .page-header .d-flex {
        width: 100%;
    }

    .page-header .theme-btn {
        display: block;
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .page-header .delete-event {
        width: 100%;
        margin-bottom: 10px;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 400px) {
    .list-items-flex li {
        flex-wrap: wrap;
    }
}

/* switch button style */

.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 23px;
    margin-top: 0px;
    vertical-align: top;
}

.switch input {
    display: none;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f5f5f7;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
.switch--red .slider {
    background: #ed4947;
}
.slider:before {
    top: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
    content: '';
    height: 18px;
    width: 18px;
    left: 2px;
    background-color: #7a7a7e;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

input:checked + .slider {
    background-color: #2ec97b;
}
input:checked + .slider:before {
    background: #fff;
    -webkit-transform: translateX(18px);
    -ms-transform: translateX(18px);
    transform: translateX(18px);
}

/*------ ADDED CSS ---------*/
.on {
    display: none !important;
}
.off {
    width: 70px;
    text-align: right;
}
.on,
.off {
    margin-left: 15px;
    font-weight: 600;
    color: white;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    font-size: 13px;
}

input:checked + .slider .on {
    display: block !important;
    left: 15px;
}

input:checked + .slider .off {
    display: none !important;
}

/*--------- END --------*/

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

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

.switch-on-off .off {
    width: 45px;
    text-align: right;
}
.switch-on-off {
    width: 100px;
    height: 38px;
    margin-left: 0;
    margin-top: 0;
}
.switch-on-off input:checked + .slider:before {
    -webkit-transform: translateX(55px);
    -ms-transform: translateX(55px);
    transform: translateX(55px);
}
.switch-on-off input:checked + .slider .on {
    left: 10px;
}

/* dateRangePicker style */

.daterangepicker {
    position: absolute;
    color: inherit;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #ddd;
    width: 278px;
    max-width: none;
    padding: 0;
    margin-top: 7px;
    top: 100px;
    left: 20px;
    z-index: 3001;
    display: none;
    font-family: arial;
    font-size: 15px;
    line-height: 1em;
}

.daterangepicker:before,
.daterangepicker:after {
    position: absolute;
    display: inline-block;
    border-bottom-color: rgba(0, 0, 0, 0.2);
    content: '';
}

.daterangepicker:before {
    top: -7px;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    border-bottom: 7px solid #ccc;
}

.daterangepicker:after {
    top: -6px;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
    border-left: 6px solid transparent;
}

.daterangepicker.opensleft:before {
    right: 9px;
}

.daterangepicker.opensleft:after {
    right: 10px;
}

.daterangepicker.openscenter:before {
    left: 0;
    right: 0;
    width: 0;
    margin-left: auto;
    margin-right: auto;
}

.daterangepicker.openscenter:after {
    left: 0;
    right: 0;
    width: 0;
    margin-left: auto;
    margin-right: auto;
}

.daterangepicker.opensright:before {
    left: 9px;
}

.daterangepicker.opensright:after {
    left: 10px;
}

.daterangepicker.drop-up {
    margin-top: -7px;
}

.daterangepicker.drop-up:before {
    top: initial;
    bottom: -7px;
    border-bottom: initial;
    border-top: 7px solid #ccc;
}

.daterangepicker.drop-up:after {
    top: initial;
    bottom: -6px;
    border-bottom: initial;
    border-top: 6px solid #fff;
}

.daterangepicker.single .daterangepicker .ranges,
.daterangepicker.single .drp-calendar {
    float: none;
}

.daterangepicker.single .drp-selected {
    display: none;
}

.daterangepicker.show-calendar .drp-calendar {
    display: block;
}

.daterangepicker.show-calendar .drp-buttons {
    display: block;
}

.daterangepicker.auto-apply .drp-buttons {
    display: none;
}

.daterangepicker .drp-calendar {
    display: none;
    max-width: 270px;
}

.daterangepicker .drp-calendar.left {
    padding: 8px 0 8px 8px;
}

.daterangepicker .drp-calendar.right {
    padding: 8px;
}

.daterangepicker .drp-calendar.single .calendar-table {
    border: none;
}

.daterangepicker .calendar-table .next span,
.daterangepicker .calendar-table .prev span {
    color: #fff;
    border: solid black;
    border-width: 0 2px 2px 0;
    border-radius: 0;
    display: inline-block;
    padding: 3px;
}

.daterangepicker .calendar-table .next span {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.daterangepicker .calendar-table .prev span {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}

.daterangepicker .calendar-table th,
.daterangepicker .calendar-table td {
    white-space: nowrap;
    text-align: center;
    vertical-align: middle;
    min-width: 32px;
    width: 32px;
    height: 24px;
    line-height: 24px;
    font-size: 12px;
    border-radius: 4px;
    border: 1px solid transparent;
    white-space: nowrap;
    cursor: pointer;
}

.daterangepicker .calendar-table {
    border: 1px solid #fff;
    border-radius: 4px;
    background-color: #fff;
}

.daterangepicker .calendar-table table {
    width: 100%;
    margin: 0;
    border-spacing: 0;
    border-collapse: collapse;
}

.daterangepicker td.available:hover,
.daterangepicker th.available:hover {
    background-color: #eee;
    border-color: transparent;
    color: inherit;
}

.daterangepicker td.week,
.daterangepicker th.week {
    font-size: 80%;
    color: #ccc;
}

.daterangepicker td.off,
.daterangepicker td.off.in-range,
.daterangepicker td.off.start-date,
.daterangepicker td.off.end-date {
    background-color: #fff;
    border-color: transparent;
    color: #999;
}

.daterangepicker td.in-range {
    background-color: #ebf4f8;
    border-color: transparent;
    color: #000;
    border-radius: 0;
}

.daterangepicker td.start-date {
    border-radius: 4px 0 0 4px;
}

.daterangepicker td.end-date {
    border-radius: 0 4px 4px 0;
}

.daterangepicker td.start-date.end-date {
    border-radius: 4px;
}

.daterangepicker td.active,
.daterangepicker td.active:hover {
    background-color: #357ebd;
    border-color: transparent;
    color: #fff;
}

.daterangepicker th.month {
    width: auto;
}

.daterangepicker td.disabled,
.daterangepicker option.disabled {
    color: #999;
    cursor: not-allowed;
    text-decoration: line-through;
}

.daterangepicker select.monthselect,
.daterangepicker select.yearselect {
    font-size: 12px;
    padding: 1px;
    height: auto;
    margin: 0;
    cursor: default;
}

.daterangepicker select.monthselect {
    margin-right: 2%;
    width: 56%;
}

.daterangepicker select.yearselect {
    width: 40%;
}

.daterangepicker select.hourselect,
.daterangepicker select.minuteselect,
.daterangepicker select.secondselect,
.daterangepicker select.ampmselect {
    width: 50px;
    margin: 0 auto;
    background: #eee;
    border: 1px solid #eee;
    padding: 2px;
    outline: 0;
    font-size: 12px;
}

.daterangepicker .calendar-time {
    text-align: center;
    margin: 4px auto 0 auto;
    line-height: 30px;
    position: relative;
}

.daterangepicker .calendar-time select.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.daterangepicker .drp-buttons {
    clear: both;
    text-align: right;
    padding: 8px;
    border-top: 1px solid #ddd;
    display: none;
    line-height: 12px;
    vertical-align: middle;
}

.daterangepicker .drp-selected {
    display: inline-block;
    font-size: 12px;
    padding-right: 8px;
}

.daterangepicker .drp-buttons .btn {
    margin-left: 8px;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 8px;
}

.daterangepicker.show-ranges.single.rtl .drp-calendar.left {
    border-right: 1px solid #ddd;
}

.daterangepicker.show-ranges.single.ltr .drp-calendar.left {
    border-left: 1px solid #ddd;
}

.daterangepicker.show-ranges.rtl .drp-calendar.right {
    border-right: 1px solid #ddd;
}

.daterangepicker.show-ranges.ltr .drp-calendar.left {
    border-left: 1px solid #ddd;
}

.daterangepicker .ranges {
    float: none;
    text-align: left;
    margin: 0;
}

.daterangepicker.show-calendar .ranges {
    margin-top: 8px;
}

.daterangepicker .ranges ul {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}

.daterangepicker .ranges li {
    font-size: 12px;
    padding: 8px 12px;
    cursor: pointer;
}

.daterangepicker .ranges li:hover {
    background-color: #eee;
}

.daterangepicker .ranges li.active {
    background-color: #08c;
    color: #fff;
}

/*  Larger Screen Styling */
@media (min-width: 564px) {
    .daterangepicker {
        width: auto;
    }

    .daterangepicker .ranges ul {
        width: 140px;
    }

    .daterangepicker.single .ranges ul {
        width: 100%;
    }

    .daterangepicker.single .drp-calendar.left {
        clear: none;
    }

    .daterangepicker.single .ranges,
    .daterangepicker.single .drp-calendar {
        float: left;
    }

    .daterangepicker {
        direction: ltr;
        text-align: left;
    }

    .daterangepicker .drp-calendar.left {
        clear: left;
        margin-right: 0;
    }

    .daterangepicker .drp-calendar.left .calendar-table {
        border-right: none;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .daterangepicker .drp-calendar.right {
        margin-left: 0;
    }

    .daterangepicker .drp-calendar.right .calendar-table {
        border-left: none;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    .daterangepicker .drp-calendar.left .calendar-table {
        padding-right: 8px;
    }

    .daterangepicker .ranges,
    .daterangepicker .drp-calendar {
        float: left;
    }
}

@media (min-width: 730px) {
    .daterangepicker .ranges {
        width: auto;
    }

    .daterangepicker .ranges {
        float: left;
    }

    .daterangepicker.rtl .ranges {
        float: right;
    }

    .daterangepicker .drp-calendar.left {
        clear: none !important;
    }
}

/* font style */

@font-face {
    font-family: 'Cairo';
    src: url('./../fonts/Cairo.ttf') format('truetype');
}

@font-face {
    font-family: 'Cera Pro';
    src: url('./../fonts/CeraPro-Regular.woff2') format('woff2'), url('./../fonts/CeraPro-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GT Eesti Pro Txt Trial';
    src: url('./../fonts/GTEestiProTxtTrial-Bd.woff2') format('woff2'), url('./../fonts/GTEestiProTxtTrial-Bd.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GT Eesti Pro Txt Trial';
    src: url('./../fonts/GTEestiProTxtTrial-Md.woff2') format('woff2'), url('./../fonts/GTEestiProTxtTrial-Md.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GT Eesti Pro Txt Trial';
    src: url('./../fonts/GTEestiProTxtTrial-Bk.woff2') format('woff2'), url('./../fonts/GTEestiProTxtTrial-Bk.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GT Eesti Pro Txt Trial';
    src: url('./../fonts/GTEestiProTxtTrial-Rg.woff2') format('woff2'), url('./../fonts/GTEestiProTxtTrial-Rg.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GT Eesti Pro Txt Trial';
    src: url('./../fonts/GTEestiProTxtTrial-Lt.woff2') format('woff2'), url('./../fonts/GTEestiProTxtTrial-Lt.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GT Eesti Pro Txt Trial';
    src: url('./../fonts/GTEestiProTxtTrial-Th.woff2') format('woff2'), url('./../fonts/GTEestiProTxtTrial-Th.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GT Eesti Pro Txt Trial';
    src: url('./../fonts/GTEestiProTxtTrial-ULt.woff2') format('woff2'), url('./../fonts/GTEestiProTxtTrial-ULt.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

/*  home module style  */

.main {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 6rem;
    min-height: 100vh;
}

.description {
    display: inherit;
    justify-content: inherit;
    align-items: inherit;
    font-size: 0.85rem;
    max-width: var(--max-width);
    width: 100%;
    z-index: 2;
    font-family: var(--font-mono);
}

.description a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.description p {
    position: relative;
    margin: 0;
    padding: 1rem;
    background-color: rgba(var(--callout-rgb), 0.5);
    border: 1px solid rgba(var(--callout-border-rgb), 0.3);
    border-radius: var(--border-radius);
}

.code {
    font-weight: 700;
    font-family: var(--font-mono);
}

.grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(25%, auto));
    width: var(--max-width);
    max-width: 100%;
}

.card {
    padding: 1rem 1.2rem;
    border-radius: var(--border-radius);
    background: rgba(var(--card-rgb), 0);
    border: 1px solid rgba(var(--card-border-rgb), 0);
    transition: background 200ms, border 200ms;
}

.card span {
    display: inline-block;
    transition: transform 200ms;
}

.card h2 {
    font-weight: 600;
    margin-bottom: 0.7rem;
}

.card p {
    margin: 0;
    opacity: 0.6;
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 30ch;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 4rem 0;
}

.center::before {
    background: var(--secondary-glow);
    border-radius: 50%;
    width: 480px;
    height: 360px;
    margin-left: -400px;
}

.center::after {
    background: var(--primary-glow);
    width: 240px;
    height: 180px;
    z-index: -1;
}

.center::before,
.center::after {
    content: '';
    left: 50%;
    position: absolute;
    filter: blur(45px);
    transform: translateZ(0);
}

.logo,
.thirteen {
    position: relative;
}

.thirteen {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 75px;
    height: 75px;
    padding: 25px 10px;
    margin-left: 16px;
    transform: translateZ(0);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0px 2px 8px -1px #0000001a;
}

.thirteen::before,
.thirteen::after {
    content: '';
    position: absolute;
    z-index: -1;
}

/* Conic Gradient Animation */
.thirteen::before {
    animation: 6s rotate linear infinite;
    width: 200%;
    height: 200%;
    background: var(--tile-border);
}

/* Inner Square */
.thirteen::after {
    inset: 0;
    padding: 1px;
    border-radius: var(--border-radius);
    background: linear-gradient(to bottom right, rgba(var(--tile-start-rgb), 1), rgba(var(--tile-end-rgb), 1));
    background-clip: content-box;
}

/* Enable hover only on non-touch devices */
@media (hover: hover) and (pointer: fine) {
    .card:hover {
        background: rgba(var(--card-rgb), 0.1);
        border: 1px solid rgba(var(--card-border-rgb), 0.15);
    }

    .card:hover span {
        transform: translateX(4px);
    }
}

@media (prefers-reduced-motion) {
    .thirteen::before {
        animation: none;
    }

    .card:hover span {
        transform: none;
    }
}

/* Mobile */
@media (max-width: 700px) {
    .content {
        padding: 4rem;
    }

    .grid {
        grid-template-columns: 1fr;
        margin-bottom: 120px;
        max-width: 320px;
        text-align: center;
    }

    .card {
        padding: 1rem 2.5rem;
    }

    .card h2 {
        margin-bottom: 0.5rem;
    }

    .center {
        padding: 8rem 0 6rem;
    }

    .center::before {
        transform: none;
        height: 300px;
    }

    .description {
        font-size: 0.8rem;
    }

    .description a {
        padding: 1rem;
    }

    .description p,
    .description div {
        display: flex;
        justify-content: center;
        position: fixed;
        width: 100%;
    }

    .description p {
        align-items: center;
        inset: 0 0 auto;
        padding: 2rem 1rem 1.4rem;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid rgba(var(--callout-border-rgb), 0.25);
        background: linear-gradient(to bottom, rgba(var(--background-start-rgb), 1), rgba(var(--callout-rgb), 0.5));
        background-clip: padding-box;
        backdrop-filter: blur(24px);
    }

    .description div {
        align-items: flex-end;
        pointer-events: none;
        inset: auto 0 0;
        padding: 2rem;
        height: 200px;
        background: linear-gradient(to bottom, transparent 0%, rgb(var(--background-end-rgb)) 40%);
        z-index: 1;
    }
}

/* Tablet and Smaller Desktop */
@media (min-width: 701px) and (max-width: 1120px) {
    .grid {
        grid-template-columns: repeat(2, 50%);
    }
}

@media (prefers-color-scheme: dark) {
    .vercelLogo {
        filter: invert(1);
    }

    .logo,
    .thirteen img {
        filter: invert(1) drop-shadow(0 0 0.3rem #ffffff70);
    }
}

@keyframes rotate {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}

/* change date picker style */

.DateRangePickerInput,
.SingleDatePickerInput {
    overflow: hidden;
    border-radius: 10px !important;
    border-color: var(--theme-grey) !important;
}

#date-picker-start-date,
#date-picker-end-date {
    font-size: 12px;
    text-align: center;
}

.DateRangePicker {
    height: 36px;
}

.DateRangePicker > div,
.DateRangePicker input,
.DateRangePickerInput,
.DateInput {
    height: 100%;
}

.DateRangePickerInput_arrow_svg {
    margin-top: 4px;
}

.DateInput {
    width: 90px !important;
}

.CalendarMonth_table {
    margin-top: 15px;
}

.field-icon-start > i {
    z-index: 0;
}

.SingleDatePicker_picker {
    z-index: 99 !important;
}

.edit-new-trip-datepicker > div,
.edit-new-trip-datepicker .SingleDatePickerInput,
.edit-new-trip-datepicker .SingleDatePickerInput,
.edit-new-trip-datepicker .DateInput {
    width: 100% !important;
    height: 41px !important;
    border: none !important;
}
.edit-new-trip-datepicker .SingleDatePicker {
    height: 41px;
}
#edit-new-trip-datepicker {
    padding-left: 30px;
    font-size: 12px;
    height: 41px !important;
    background: var(--sky-blue);
}

.guest-request-for-event > div,
.guest-request-for-event .SingleDatePickerInput,
.guest-request-for-event .SingleDatePickerInput,
.guest-request-for-event .DateInput {
    width: 100% !important;
    height: 41px !important;
    border: none !important;
}
.guest-request-for-event .SingleDatePicker {
    height: 41px;
}
.guest-request-for-event {
    font-size: 12px;
    height: 41px !important;
    background: var(--sky-blue);
}

.guest-request-for-event-next-step > div,
.guest-request-for-event-next-step .SingleDatePickerInput,
.guest-request-for-event-next-step .SingleDatePickerInput,
.guest-request-for-event-next-step .DateInput {
    width: 100% !important;
    height: 41px !important;
    border: none !important;
}
.guest-request-for-event-next-step .SingleDatePicker {
    height: 41px;
}
.guest-request-for-event-next-step {
    font-size: 12px;
    height: 41px !important;
    background: var(--sky-blue);
}

.edit-new-twitter-post-datepicker > div,
.edit-new-twitter-post-datepicker .SingleDatePickerInput,
.edit-new-twitter-post-datepicker .SingleDatePickerInput,
.edit-new-twitter-post-datepicker .DateInput {
    width: 100% !important;
    height: 41px !important;
    border: none !important;
}
.edit-new-twitter-post-datepicker .SingleDatePicker {
    height: 41px;
}
#edit-new-twitter-post-datepicker {
    padding-left: 30px;
    font-size: 12px;
    height: 41px !important;
    background: var(--sky-blue);
}

.edit-project-datepicker > div,
.edit-project-datepicker .SingleDatePickerInput,
.edit-project-datepicker .SingleDatePickerInput,
.edit-project-datepicker .DateInput {
    width: 100% !important;
    height: 41px !important;
    border: none !important;
}
.edit-project-datepicker .SingleDatePicker {
    height: 41px;
}
#edit-project-datepicker {
    padding-left: 30px;
    font-size: 16px;
    height: 41px !important;
    background: var(--sky-blue);
}

#edit-project-edd-datepicker {
    padding-left: 30px;
    font-size: 16px;
    height: 41px !important;
    background: var(--sky-blue);
}

#edit-project-completion-datepicker {
    padding-left: 30px;
    font-size: 16px;
    height: 41px !important;
    background: var(--sky-blue);
}

.new-document-datepicker > div,
.new-document-datepicker .SingleDatePickerInput,
.new-document-datepicker .SingleDatePickerInput,
.new-document-datepicker .DateInput {
    width: 100% !important;
    height: 41px !important;
    border: none !important;
}
.new-document-datepicker .SingleDatePicker {
    height: 41px;
}
#new-document-datepicker {
    padding-left: 30px;
    font-size: 12px;
    height: 41px !important;
    background: var(--sky-blue);
}

.new-edit-event-datepicker > div,
.new-edit-event-datepicker .SingleDatePickerInput,
.new-edit-event-datepicker .SingleDatePickerInput,
.new-edit-event-datepicker .DateInput {
    width: 100% !important;
    height: 41px !important;
    border: none !important;
}
.new-edit-event-datepicker .SingleDatePicker {
    height: 41px;
}
#new-edit-event-datepicker {
    padding-left: 30px;
    font-size: 12px;
    height: 41px !important;
    background: var(--sky-blue);
}

.trips-datepicker #date-picker-start-date,
.trips-datepicker #date-picker-end-date {
    padding: initial !important;
    min-width: initial !important;
    border: none !important;
}

/* tiny */

.tox-statusbar__branding {
    display: none;
}

/* tiny end */

.healthy-lifestyle #date-picker-start-date,
.healthy-lifestyle #date-picker-end-date {
    padding: initial !important;
    min-width: initial !important;
    border: none !important;
}
.healthy-lifestyle .DateRangePickerInput_arrow_svg {
    margin-top: 0;
}

.knowledge #date-picker-start-date,
.knowledge #date-picker-end-date {
    padding: initial !important;
    min-width: initial !important;
    border: none !important;
}
.knowledge .DateRangePickerInput_arrow_svg {
    margin-top: 0;
}

.meetings-event-calendar #date-picker-start-date,
.meetings-event-calendar #date-picker-end-date {
    padding: initial !important;
    min-width: initial !important;
    border: none !important;
}
.meetings-event-calendar .DateRangePickerInput_arrow_svg {
    margin-top: 0;
}

.meetings-event #date-picker-start-date,
.meetings-event #date-picker-end-date {
    padding: initial !important;
    min-width: initial !important;
    border: none !important;
}
.meetings-event .DateRangePickerInput_arrow_svg {
    margin-top: 0;
}

.executive-council #date-picker-start-date,
.executive-council #date-picker-end-date {
    padding: initial !important;
    min-width: initial !important;
    border: none !important;
}
.executive-council .DateRangePickerInput_arrow_svg {
    margin-top: 0;
}

.sheikh-executive-council #date-picker-start-date,
.sheikh-executive-council #date-picker-end-date {
    padding: initial !important;
    min-width: initial !important;
    border: none !important;
}
.sheikh-executive-council .DateRangePickerInput_arrow_svg {
    margin-top: 0;
}

.tawasol #date-picker-start-date,
.tawasol #date-picker-end-date {
    padding: initial !important;
    min-width: initial !important;
    border: none !important;
}
.tawasol .DateRangePickerInput_arrow_svg {
    margin-top: 0;
}
.tawasol.daterangepicker-field::after {
    background: initial !important;
}

.img-cta-btns i.delete-icon,
.img-cta i.delete-icon::before {
    background: url(./../images/trash-icon2.svg) no-repeat center center;
}
.img-cta-btns i.edit-icon,
.img-cta i.edit-icon::before {
    background: url(./../images/edit-icon2.svg) no-repeat center center;
}

.img-cta-btns {
    position: absolute;
    z-index: 2;
    top: 10px;
    right: 10px;
}
.img-cta-btns span {
    cursor: pointer;
    margin-left: 3px;
    display: inline-flex;
    align-self: center;
    justify-content: center;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.9);
    padding: 6px;
}
.img-cta {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 2;
}
.img-cta i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    margin-left: 3px;
}
.img-cta i::before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background-size: contain !important;
}
.article-cover-image {
    position: relative;
    max-width: 245px;
    border-radius: 20px;
}
.article-cover-image img {
    width: 100%;
    border-radius: 20px;
}

.saq-content-wrapper {
    min-height: 100vh;
}
.saq-body-content h2 {
    font-size: 26px;
    font-weight: 200;
}

.saq-header .saq-separator::before {
    content: '';
    width: 1px;
    left: 2px;
    top: 8px;
    bottom: 8px;
    background: rgba(var(--theme-black), 0.2);
    position: absolute;
}
.saq-header .saq-separator {
    position: relative;
    display: inline-block;
    padding-left: 20px;
}
.saq-container {
    max-width: 850px;
    width: 100%;
    margin: 0 auto;
}
.saq-container h5.subtitle {
    font-weight: 200;
    font-size: var(--fs-14);
    text-transform: uppercase;
    margin-bottom: 5px;
}
.saq-container h4 {
    font-weight: 400;
    font-size: var(--fs-15);
}

.white-bg-container {
    background: var(--white);
    border-radius: 10px;
    padding: 15px;
}

.icon-primary {
    filter: brightness(0) saturate(100%) invert(24%) sepia(77%) saturate(2086%) hue-rotate(217deg) brightness(110%) contrast(89%);
}

select.select-time {
    border: none;
    background: none;
    min-width: 110px;
    color: rgb(var(--theme-black));
    font-family: var(--font-family-GT-Eesti);
    font-size: var(--fs-14);
    font-weight: 300;
    cursor: pointer;
    padding-right: 25px;
}

.thank-you-msg p {
    color: rgba(var(--theme-black), 0.6);
    font-size: var(--fs-14);
}

/* calendar */

.fc-today-button {
    text-transform: capitalize !important;
}

.calendar-wrapper {
    background: var(--sky-blue);
    border-radius: 10px;
    padding: 15px;
}
.calendar-wrapper .fc .fc-col-header-cell {
    padding: 10px 0;
}
.calendar-wrapper .fc .fc-col-header-cell-cushion {
    text-transform: capitalize;
    font-weight: 300;
    font-size: var(--fs-12);
    padding: 5px 8px;
    text-transform: uppercase;
}
.calendar-wrapper .fc-day-today .fc-col-header-cell-cushion {
    /* color: var(--white); */
    background: rgb(var(--primary-color));
    border-radius: 10px;
    font-weight: 400;
}

.calendar-wrapper .fc .fc-button-group > .fc-button:last-child {
    margin-right: 0;
}
.calendar-wrapper .fc .fc-button-group > .fc-button:first-child {
    margin-left: 0;
}

.calendar-wrapper .fc .fc-button-group > .fc-button {
    margin: 5px 3px;
    padding: 6px 15px;
    border-radius: 30px;
    border: none;
    background: rgba(var(--primary-color), 0.65);
    /* color: var(--white); */
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
}
.fc-today-button {
    text-transform: capitalize !important;
}
.calendar-wrapper .fc .fc-button-primary:active,
.calendar-wrapper .fc .fc-button-primary,
.calendar-wrapper .fc .fc-button-primary:hover,
.calendar-wrapper .fc .fc-button-primary:not(:disabled).fc-button-active {
    background: rgb(var(--primary-color));
    /* color: var(--white); */
    border-color: var(--primary-color);
}
.fc .fc-button .fc-icon::before {
    margin-top: -2px;
    display: block;
}
.calendar-wrapper .fc .fc-button-primary:focus,
.calendar-wrapper .fc .fc-button-primary:not(:disabled):active:focus,
.calendar-wrapper .fc .fc-button-primary:not(:disabled).fc-button-active:focus {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.calendar-wrapper .fc .fc-toolbar-title {
    font-size: 24px;
    color: black !important;
}

.calendar-wrapper .fc-h-event,
.calendar-wrapper .fc-v-event,
.calendar-wrapper .fc-daygrid-dot-event,
.calendar-wrapper .fc-daygrid-dot-event:hover,
.calendar-wrapper .fc-daygrid-dot-event.fc-event-mirror,
.calendar-wrapper .fc-direction-ltr .fc-daygrid-block-event:not(.fc-event-end),
.calendar-wrapper .fc-direction-rtl .fc-daygrid-block-event:not(.fc-event-start) {
    border: none;
    padding: 6px 7px;
    background: #ee7c58;
    border-radius: 5px;
}
.calendar-wrapper .fc-daygrid-dot-event,
.calendar-wrapper .fc-h-event .fc-event-main,
.calendar-wrapper .fc-v-event .fc-event-main {
    /* color: var(--white); */
    font-size: 11px;
    font-weight: 400;
}
.calendar-wrapper .fc .fc-timegrid-axis-cushion {
    font-size: 12px;
    font-weight: 500;
}
.fc-daygrid-dot-event .fc-event-title {
    font-weight: 400;
}
.calendar-wrapper .fc .fc-timegrid-axis-cushion,
.calendar-wrapper .fc .fc-timegrid-slot-label-cushion {
    color: var(--theme-blue);
}
.calendar-wrapper .fc-daygrid-event-dot {
    display: none;
}
.calendar-wrapper .fc-theme-standard .fc-list-day-cushion {
    background: var(--light-gray);
}
.calendar-wrapper .fc .fc-list-event:hover td {
    background: none;
}
.calendar-wrapper .fc .fc-list-table td,
.calendar-wrapper .fc .fc-list-day-cushion,
.calendar-wrapper .fc .fc-list-event-title a {
    color: var(--yellow);
    font-size: 14px;
    font-weight: 600;
}
.calendar-wrapper .fc .fc-scrollgrid-section table,
.calendar-wrapper .fc .fc-daygrid-body {
    min-width: 100%;
}
.calendar-wrapper .fc-daygrid-dot-event {
    align-items: flex-start;
    flex-direction: column-reverse;
    white-space: normal;
}
.fc-v-event .fc-event-main-frame {
    flex-direction: column-reverse;
    justify-content: flex-end;
    height: auto;
}
.fc-h-event .fc-event-main-frame {
    flex-direction: column-reverse;
}
.fc-v-event .fc-event-title-container {
    flex-grow: 0;
}
.calendar-wrapper .fc-popover-body .fc-daygrid-dot-event {
    display: flex;
}
.calendar-wrapper .fc .fc-toolbar {
    flex-wrap: wrap;
}
.calendar-wrapper .fc-direction-ltr .fc-list-day-side-text:hover,
.calendar-wrapper .fc-direction-rtl .fc-list-day-text:hover,
.calendar-wrapper .fc-direction-ltr .fc-list-day-text:hover,
.calendar-wrapper .fc-direction-rtl .fc-list-day-side-text:hover {
    color: var(--theme-blue) !important;
}
.calendar-wrapper .fc .fc-bg-event {
    border-left: 2px solid var(--theme-green);
    color: var(--theme-green);
    border-radius: 0 20px 20px 0;
    margin-left: 3px;
    opacity: 1;
    background: rgba(74, 201, 63, 0.09);
    font-size: 13px;
    font-weight: 600;
    overflow-wrap: anywhere;
}

/* calendar end */

.sharjah-ex-council-logo img {
    width: 44px;
    min-width: 44px;
    height: 44px;
    border-radius: 44px;
    margin-right: 10px;
}
.list-spacing li {
    padding: 4px 0;
}
.chips-clickable li {
    padding: 0;
}
.chips-clickable li div {
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.chips-light li {
    background: rgba(0, 0, 0, 0.04);
}

.pdf-icon {
    background: url(../images/pdf-icon.svg) no-repeat center center;
}
.notes-icon {
    background: url(../images/notes-icon.svg) no-repeat center center;
}

.pdf-preview,
.pdf-preview img {
    border-radius: 5px;
}
.pdf-preview {
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
}

.border-top-light {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.border-bottom-light {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.login-user-img {
    max-width: 40px;
    margin-right: 10px;
}
.login-user-img img {
    min-width: 40px;
    width: 40px;
    height: 40px;
    border-radius: 40px;
}
.login-user-info span {
    font-size: var(--fs-15);
    font-weight: 400;
}
.login-user-info {
    padding: 5px;
}

.header-right a,
.header-right {
    font-size: var(--fs-13);
    color: var(--white);
}
.header-right a {
    display: inline-flex;
}
.header-right ul {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}
.header-right ul li {
    padding: 3px 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}
.header-right ul li:first-child {
    border: none;
}

.logout-icon {
    background: url(../images/logout-icon.svg) no-repeat center center;
}

.notes-wrapper h5 {
    color: rgb(var(--theme-black));
}

select.textbox {
    min-height: 41px;
}
.notes-textarea {
    min-height: 100px;
    height: inherit;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.5) !important;
}

.textfield::placeholder,
.textbox::placeholder {
    opacity: 1;
    color: rgba(0, 0, 0, 0.3);
}

.add-pdf-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 550px;
}

/* add padding in form's section */
#step1:target,
#step2:target,
#step3:target,
#step4:target,
#step5:target {
    padding-top: 20px;
}

/* Datatable */

.rdt_TableCol:last-of-type .rdt_TableCol_Sortable {
    display: flex;
    justify-content: flex-end;
}

.rdt_TableRow .rdt_TableCell:last-of-type > div {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.twitter-create-time-input,
.time-input {
    width: 100%;
    height: 41px;
    padding-left: 35px;
    background: #f8f9fa;
    color: black;
    border: none;
}

.trip-calendar-date-picker .DateInput,
.project-key-date-datepicker .DateInput {
    display: none !important;
}

.trip-calendar-date-picker .SingleDatePicker_picker,
.project-key-date-datepicker .SingleDatePicker_picker {
    top: 10px !important;
}

.schedule-active {
    background-color: #000;
    color: white;
}

.tox-fullscreen {
    z-index: 99999999999999 !important;
}

.fc-button {
    text-transform: capitalize;
    padding: 10px 23px;
    cursor: pointer;
    border-radius: 10px;
    font-size: var(--fs-13);
    color: rgb(var(--theme-black));
    background-color: #f8f9fa;
    border: 1px solid #eff0f4;
    font-family: var(--font-family-GT-Eesti);
    font-weight: 300;
}

.fc-event-time {
    font-size: 12px !important;
}

.fc-event-title {
    font-size: 10px !important;
}

.table-wrapper.project_tasks {
    overflow: initial !important;
}

.project_tasks_deadlines .DateInput,
.project_tasks_deadlines .SingleDatePicker,
.project_tasks_deadlines .SingleDatePickerInput {
    width: 100% !important;
}
.project_tasks_deadlines .SingleDatePickerInput {
    border: none;
}

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

#app-wrapper.lang-ar {
    /* display: flex; */
    /* flex-direction: row-reverse; */
    direction: rtl;
}

/* #app-wrapper.lang-ar .main-menu ul li a { */
/* right: 0; */
/* left: auto; */
/* direction: rtl; */
/* text-align: right; */
/* } */

/* #app-wrapper.lang-ar .main-menu ul li a::before {
	right: 8px;
	left: auto;
} */

#app-wrapper.lang-ar,
#app-wrapper.lang-ar * {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
}

#app-wrapper.lang-ar .radio-option label::after {
    right: auto;
    left: 10px;
}

#app-wrapper.lang-ar .user-info {
    margin-right: 10px;
    text-align: left;
}

#app-wrapper.lang-ar input,
#app-wrapper.lang-ar textarea {
    font-size: var(--fs-16) !important;
}

#app-wrapper.lang-ar .reverse-arabic {
    flex-direction: row-reverse;
}

#app-wrapper.lang-ar .direction-arabic-ltr {
    direction: ltr;
}

#app-wrapper.lang-ar .filter-table label::after {
    margin-left: 0;
    margin-right: 10px;
}

#app-wrapper.lang-ar .page-header {
    padding: 0 0 0 20px;
    flex-direction: row-reverse;
    text-align: left;
}

#app-wrapper.lang-ar .page-header .theme-btn--transparent {
    left: 10px;
}

select {
    /* -webkit-appearance: none;
	 */
    background: url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0Ljk1IDEwIj48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6I2ZmZjt9LmNscy0ye2ZpbGw6IzQ0NDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFycm93czwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB3aWR0aD0iNC45NSIgaGVpZ2h0PSIxMCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxLjQxIDQuNjcgMi40OCAzLjE4IDMuNTQgNC42NyAxLjQxIDQuNjciLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMy41NCA1LjMzIDIuNDggNi44MiAxLjQxIDUuMzMgMy41NCA1LjMzIi8+PC9zdmc+)
        no-repeat 95% 50%;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

.tox .tox-dialog {
    z-index: 99999999;
}

@font-face {
    font-family: 'sakkal';
    src: url('https://s3.fr-par.scw.cloud/sheikh.eth/majalla.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.user-assignment-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.user-card {
    width: 200px;
    height: 120px;
    border-radius: 8px;
    border: 1px solid var(--sky-blue);
    background-color: var(--sky-blue);
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.user-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.user-card.selected {
    border-color: #3661eb;
    background-color: rgba(54, 97, 235, 0.05);
}

.user-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0.5rem;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.5rem;
}

.user-name {
    font-size: 0.9rem;
    font-weight: 500;
}

.selected-indicator {
    position: absolute;
    top: 8px;
    right: 8px;
    color: #3661eb;
    font-size: 1.2rem;
}

/* Read-only user assignment cards */
.user-assignment-cards.readonly .user-card {
    cursor: default;
    pointer-events: none; /* Completely disable click events */
    opacity: 0.9;
    transition: none; /* Remove any hover transitions */
}

.user-assignment-cards.readonly .user-card:hover {
    transform: none; /* Disable hover transform */
    box-shadow: none; /* Disable hover shadow */
}

/* Smaller versions */
.user-card.small {
    padding: 8px 12px; /* Reduced from default padding */
    min-height: auto;
    max-width: 140px; /* Make cards narrower */
}

.user-card.small .user-avatar.small {
    width: 60px; /* Reduced from default size */
    height: 60px;
}

.user-card.small .user-name.small {
    font-size: 12px; /* Smaller text */
    font-weight: 500;
}

.user-card.small .selected-indicator.small {
    width: 16px; /* Smaller indicator */
    height: 16px;
}

.user-card.small .selected-indicator.small i {
    font-size: 10px;
}

.no-assignment-message.small {
    padding: 12px 16px; /* Smaller padding */
    font-size: 13px;
}

/* Make the cards display in a more compact way */
.user-assignment-cards.readonly {
    gap: 8px; /* Smaller gap between cards */
}
.entity-cards-wrapper img {
    width: auto !important;
}
