* {
    padding: 0;
    margin: 0;
    scrollbar-width: thin;
    scrollbar-color: #c4cad0 #fff;
    box-sizing: border-box;
    /* font-family: "Inter", sans-serif; */
    font-family: Roboto, Arial, sans-serif;
    color: #212020;
}
html * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
*,
:after,
:before {
    box-sizing: border-box;
}
body,
html {
    scroll-behavior: smooth;
    height: 100%;
    width: 100%;
}

body {
    background-color: #f6f8fc;
    color: #3c4043;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    font-family: Roboto, Arial, sans-serif;
    background: url(https://images.unsplash.com/photo-1496309732348-3627f3f040ee?fit=crop&w=1920&q=80)
        no-repeat center center fixed;
    background-size: cover;
    margin: 0;
}
body.without_bg {
    background: #f8fafd;
}

/*  */
.mx-auto {
    margin-inline: auto;
}
.ms-auto {
    margin-inline-start: auto;
}
.me-auto {
    margin-inline-end: auto;
}
.ms-3 {
    margin-left: 1rem;
}
.d-flex {
    display: flex;
}

.app-container {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    transition: all 0.3s ease;
}
.brand__block {
    display: flex;
    align-items: center;
    padding: 0px 26px 0px 12px;
    position: sticky;
    top: 0;
    z-index: 99;
    /* background-color: #f6f8fc; */
}
.brand__block a {
    text-decoration: none;
    flex: 1 0;
}
.brand__block img {
    max-width: 100%;
    height: auto;
    width: 131px;
}
.without_bg_img {
    display: none;
}
.without_bg .with_bg_img {
    display: none;
}
.without_bg .without_bg_img {
    display: block;
}
.hamburger_menu {
    background-color: transparent;
    border: 0;
    padding: 0;
    margin: 0;
    cursor: pointer;
}
.menu-icon .material-icons {
    font-size: 28px;
    cursor: pointer;
    color: #fff;
}
.without_bg .menu-icon .material-icons {
    color: #5f6368;
}
.dummy-text__logo {
    font-size: 32px;
    line-height: 36px;
    font-weight: 600;
    text-align: center;
    display: block;
}
.main-content__wrappr {
    display: flex;
    flex-direction: row;
    flex-grow: 1;
}
.sidebar {
    flex: 0 0 auto;
    width: 234px;
    /* border-right: 1px solid #dadce0; */
    /* background: #f6f8fc; */
    background-image: -webkit-gradient(
        linear,
        left top,
        right top,
        from(rgba(0, 0, 0, 0.3)),
        to(transparent)
    );
    background-image: -webkit-linear-gradient(
        left,
        rgba(0, 0, 0, 0.3) 0,
        transparent 100%
    );
    background-image: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.3) 0,
        transparent 100%
    );
}
.without_bg .sidebar {
    background-image: none;
}
.sidebar__menu {
    padding: 4px 0px 16px 0px;
    overflow: hidden;
    overflow-y: auto;
    height: calc(100dvh - 168px);
    scrollbar-width: thin;
    scrollbar-color: #acaeb5 transparent;
}
.compose-btn {
    background-color: #fff;
    color: rgb(95, 99, 104);
    padding: 18px 40px 18px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    line-height: normal;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3),
        0 1px 3px 1px rgba(60, 64, 67, 0.15);
    margin: 12px 15px 20px;
    transition: background-color 0.2s ease;
    border: 0;
    position: sticky;
    top: 0;
}
.btn-secondary__custom {
    background-color: transparent;
    color: #202124;
    border: 0;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}
.btn-secondary__custom:disabled {
    color: rgba(60, 64, 67, 0.38);
}
.btn-primary__custom {
    padding: 6px 16px;
    border: 0;
    border-radius: 4px;
    font-size: 15px;
}
.btn_outline_secondary {
    margin: 0;
    outline: 0;
    background-color: transparent;
    border: 1px solid #e1e3e1;
    border-radius: 4px;
    padding: 8px 20px;
    font-size: 14px;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #444746;
}
.btn_outline_secondary .material-icons {
    font-size: 18px;
    color: #444746;
}
.btn_outline_secondary:hover {
    background-color: #f8fafd;
    color: #202124;
}
.btn_outline_secondary:hover .material-icons {
    color: #202124;
}
.without_bg .compose-btn {
    background-color: #c2e7ff;
    color: #3c4043;
}
.compose-btn > .material-icons {
    color: rgb(95, 99, 104);
}
.without_bg .compose-btn > .material-icons {
    color: #3c4043;
}
.email__lists,
.more-options__email {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.email__lists li {
    padding: 10px 15px;
    margin-bottom: 3px;
    cursor: pointer;
    color: #fff;
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: normal;
    font-weight: 400;
    gap: 15px;
    letter-spacing: 0.01em;
    border-radius: 0 25px 25px 0;
    transition: background-color 0.2s ease, color 0.2s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.65);
}
.without_bg .email__lists li {
    text-shadow: none;
    color: #3c4043;
}
.email__lists li > a {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}
.email__lists li .email_list__icons,
.email_list__icons,
.more_mate_ico {
    display: flex;
    align-items: center;
    font-size: 20px;
    color: #e8e8e7;
}
.without_bg .email__lists li .email_list__icons,
.without_bg .email_list__icons,
.without_bg .more_mate_ico {
    color: #5f6368;
}
.count_label {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    width: 18px;
    height: 18px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.without_bg .count_label {
    color: #5f6368;
}
.count_label.inbox {
    background-color: #fff;
    color: #444746;
}
.without_bg .count_label.inbox {
    background-color: #3b7ed5;
    color: #fff;
}
.email__lists li:hover {
    background-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}
.without_bg .email__lists li:hover {
    color: #212020;
    background-color: #e8f0fe;
}

.email__lists li.active {
    background-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    font-weight: 500;
}
.without_bg .email__lists li.active {
    background-color: #e8f0fe;
    color: #1a73e8;
}
.email__lists li.active .email_list__icons {
    color: #e8e8e7;
}
.without_bg .email__lists li.active .email_list__icons {
    color: #1a73e8;
}
.arrow {
    transition: transform 0.3s ease;
}

.expanded .arrow {
    transform: rotate(180deg);
}
.more-options__email li .toggle_more_btn,
.more-section .menu-item {
    padding: 10px 15px;
    margin-bottom: 3px;
    cursor: pointer;
    color: #fff;
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: normal;
    font-weight: 400;
    gap: 15px;
    letter-spacing: 0.01em;
    border-radius: 0 25px 25px 0;
    transition: background-color 0.2s ease, color 0.2s ease;
    border: 0;
    outline: 0;
    width: 100%;
    background-color: transparent;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.65);
}
.without_bg .more-options__email li .toggle_more_btn,
.without_bg .more-section .menu-item {
    text-shadow: none;
    color: #3c4043;
}
.more-section {
    display: none;
}
.more-options__email li .toggle_more_btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
}
.without_bg .more-options__email li .toggle_more_btn:hover,
.without_bg .more-section .menu-item:hover {
    background-color: #e8f0fe;
}
.menu_item {
    display: flex;
    gap: 15px;
    align-items: center;
    color: #fff;
}
.without_bg .menu_item {
    color: #3c4043;
}
.without_bg .add_labels > svg {
    stroke: #3c4043;
}
.labels h3 {
    font-size: 14px;
    color: #fff;
    padding: 10px 15px;
    margin-top: 20px;
    margin-bottom: 5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.65);
}
.without_bg .labels h3 {
    color: #3c4043;
    text-shadow: none;
}
.labels ul {
    list-style: none;
    padding: 0;
}
.labels li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 0 25px 25px 0;
    margin-right: 15px;
    transition: background-color 0.2s ease, color 0.2s ease;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.65);
}
.without_bg .labels li {
    text-shadow: none;
    color: #3c4043;
}
.labels li .label-dot {
    color: #e8e8e7;
}
.without_bg .labels li .label-dot {
    color: #5f6368;
}
.modalLabels .modal-content {
    border-radius: 28px;
}
.modalLabels .modal-header {
    border: 0;
    padding: 24px 24px 16px;
}
.modalLabels .modal-title {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 400;
}
.modalLabels .modal-body {
    padding: 0px 24px 20px;
}
.modalLabels .form-label {
    margin-bottom: 8px;
    font-size: 0.875rem;
    color: #444746;
}
.modalLabels .modal-footer {
    border: 0;
    padding-block: 0 24px;
}
.modalLabels .btn-cancel,
.modalLabels .btn-create {
    font-size: 14px;
    font-weight: 500;
    outline: 0;
}
.modalLabels .btn-cancel {
    color: #3b7ed5;
}
.btn-cancel:hover {
    background-color: rgb(241, 243, 244);
    border-radius: 30px;
}
.btn-create {
    background-color: rgb(241, 243, 244);
    padding: 8px 24px;
    border-radius: 30px;
    color: rgba(16, 16, 16, 0.3);
}
.btn-create:hover {
    color: #fff;
    background-color: #0078d4;
}
.main-content {
    flex: 1 0 0%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    padding-inline: 16px;
}

.header {
    padding: 8px 20px;
    /* border-bottom: 1px solid #dadce0; */
    /* background-color: #3b7ed5; */
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 101;
    background-image: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(rgba(0, 0, 0, 0.3)),
        to(transparent)
    );
    background-image: -webkit-linear-gradient(
        top,
        rgba(0, 0, 0, 0.3) 0,
        transparent 100%
    );
    background-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0,
        transparent 100%
    );
}
.scrolled .header {
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3),
        0 1px 3px 1px rgba(60, 64, 67, 0.15);
}
.without_bg .header {
    background-image: none;
    background-color: #f8fafd;
}
.header_serach {
    position: relative;
    flex-grow: 1;
    margin-left: 16px;
}
.header_serach .search_ico {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #e8e8e7;
    font-size: 22px;
    cursor: pointer;
}
.without_bg .header_serach .search_ico {
    color: #26282a;
}
.header_serach .search_ico_filter {
    left: auto;
    right: 15px;
}
.search-bar {
    width: 100%;
    padding: 10.5px 15px 10.6px 43px;
    border-radius: 30px;
    border: 0;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    line-height: 18px;
    outline: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: rgba(241, 243, 244, 0.24);
    height: 48px;
}
.without_bg .search-bar {
    color: #3c4043;
}
.search-bar::placeholder {
    color: #fff;
    font-weight: 500;
}
.without_bg .search-bar::placeholder {
    color: #3c4043;
    font-weight: 500;
}
.without_bg .search-bar {
    background: #e9eef6;
}
.filter-box {
    display: none;
    background: white;
    border-radius: 0px;
    padding: 20px;
    width: 100%;
    max-width: 100%;
    position: absolute;
    top: 48px;
    left: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.filter-box label {
    font-size: 13px;
    margin-bottom: 2px;
    color: #747775;
    letter-spacing: 0.04em;
}
.form-control,
.form-select {
    border-radius: 2px;
}
.header_options__link {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 24px;
}
.header_options__link .material-icons {
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}
.without_bg .header_options__link .material-icons {
    color: #5f6368;
}
/* Notification */
.dot_new_notification {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #0078d4;
    border-radius: 50%;
    position: absolute;
    top: 6px;
    right: 7px;
}
.without_bg .dot_new_notification {
    background-color: #0078d4;
}
.notification-panel {
    width: 320px;
    min-height: calc(100dvh - 50dvh);
    border: 1px solid #ddd;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 35px;
    right: 0px;
    z-index: 9999;
    padding: 1rem;
    display: flex;
    flex-direction: column;
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e1e3e1;
}

.notification-header h5 {
    margin: 0;
    font-size: 1.1rem;
}

.notification-empty {
    text-align: center;
    margin-top: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.notification-empty p {
    margin: 0.25rem 0;
}

.bell-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.bell-icon img {
    width: 100%;
    opacity: 0.3;
}

.notification-panel .toggle-overlay {
    position: absolute;
    top: 32px;
    left: 22px;
    z-index: 2;
    width: 38px;
    height: 18px;
}

.notification-panel .material-icons {
    cursor: pointer;
}

.notification-panel .custom-switch {
    appearance: none;
    width: 38px;
    height: 18px;
    border-radius: 30px;
    background: linear-gradient(90deg, #6dd5ed, #2193b0);
    position: relative;
    outline: none;
    transition: all 0.3s;
}

.notification-panel .custom-switch::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    top: 1px;
    left: 1px;
    transition: all 0.3s;
}

.notification-panel .custom-switch:checked::before {
    left: 21px;
}
/* apps */
.launcher-container {
    position: relative;
    display: inline-block;
}

.launcher-button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}
.launcher-button:hover {
    background-color: #1089da;
}
.without_bg .launcher-button:hover {
    background-color: #f1f3f4;
}
.launcher-container .dropdown {
    display: none;
    position: absolute;
    top: 50px;
    right: 0;
    background: white;
    min-width: 240px;
    max-width: 320px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    z-index: 100;
}

.launcher-container .dropdown.show {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.launcher-container .app-icon {
    text-align: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.launcher-container .app-icon .appIco {
    font-size: 40px;
}
.launcher-container .app-icon span + span {
    color: rgb(32, 33, 36);
    font-size: 14px;
    letter-spacing: 0.09px;
    line-height: 18px;
}
/* Modal::Setting-Rule */
.settings_Rule .modal-xl-custom {
    max-width: 90%;
}

.settings_Rule .modal-body {
    display: flex;
    padding: 0;
}
.settings_Rule .modal-title {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 12px;
}

.settings_Rule .left-tab {
    width: 220px;
    background-color: #f9f9f9;
    box-shadow: inset -1px 0 0 0 rgba(100, 121, 143, 0.09);
    padding: 1rem;
}

.settings_Rule .mid-tab {
    width: 200px;
    background: #f9f9f9;
    box-shadow: inset -1px 0 0 0 rgba(100, 121, 143, 0.09);
    padding: 1rem;
}

.settings_Rule .right-panel {
    flex-grow: 1;
    padding: 1rem;
    background-color: #fff;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.settings_Rule .tab-content > .tab-pane {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.rule-card {
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rule-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.rule-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-switch .form-check-input {
    height: 20px;
    width: 40px;
}

.rule-actions .material-icons {
    font-size: 18px;
    color: #444;
    cursor: pointer;
}
.btn-close__setting {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 0.35rem;
    height: 0.35rem;
    z-index: 1;
}
.rule-modal__container {
    min-height: calc(100dvh - 71px - 56px);
    display: flex;
    flex: 1 1 auto;
    position: relative;
}
.settings_Rule .modal-footer {
    border: 0;
}
.search__settings {
    margin-block: 6px 12px;
}
.search__settings .search_setting__input {
    border: 1px solid #e1e3e1;
    height: 38px;
    border-radius: 4px;
    padding: 6px;
    font-size: 14px;
    letter-spacing: 0.02em;
    width: 100%;
}
.search__settings .search_icons {
    position: absolute;
    right: 8px;
    color: #444746;
    font-size: 18px;
    top: 50%;
    transform: translateY(-50%);
}
.rule-modal__container .nav-item {
    padding: 7px 0px;
}
.rule-modal__container .nav-link {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: #444746;
    border-left: 2px solid transparent;
    border-radius: 0;
    position: relative;
    padding: 2px 0px;
}
.rule-modal__container .nav-link::after {
    content: "";
    width: 2px;
    height: 100%;
    position: absolute;
    left: -8px;
    top: 0;
    display: inline-block;
    background-color: transparent;
}
.rule-modal__container .nav-link.active::after {
    background-color: #0078d4;
}
.rule-modal__container .nav-link.active {
    font-weight: 500;
    color: #202124;
    background-color: transparent;
}
.right-panel .send-btn {
    font-size: 13px;
    letter-spacing: 0.02em;
}
.text-rule__para {
    font-size: 13px;
    color: #747775;
}
.flex-grow__rule {
    border-block: 1px solid #e1e3e1;
    padding: 1rem;
    margin-bottom: 1rem;
}
.form-label__custom {
    font-size: 14px;
    color: #747775;
    display: flex;
    align-items: center;
}
.form-controls {
    font-size: 14px;
}
/* Action Bar */
.action-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    /* border-bottom: 1px solid #dadce0; */
    /* background-color: #fff; */
    min-height: 50px;
    position: sticky; /* Sticky below the top-bar */
    top: 0px; /* Height of the top-bar */
    z-index: 90;
}
.checkbox-wrapper {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.checkbox-wrapper input[type="checkbox"] {
    display: none;
}

.checkbox-wrapper label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-wrapper label::before {
    content: "";
    width: 20px;
    height: 20px;
    background-image: url("../images/icons/checkbox.png"); /* unchecked */
    background-size: cover;
    display: inline-block;
    transition: 0.3s;
}

.checkbox-wrapper input[type="checkbox"]:checked + label::before {
    background-image: url("../images/icons/checkbox-checked.png"); /* checked */
}
.left-actions,
.right-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.action-bar input[type="checkbox"],
.email-row-options input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #1a73e8; /* Blue checkbox */
}

.action-bar .material-icons {
    font-size: 22px;
    color: #5f6368;
    cursor: pointer;
}

.action-bar span:not(.material-icons) {
    font-size: 14px;
    color: #5f6368;
}

/* Tooltip */
.tooltip-wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.material-icons.tooltip-wrapper {
    color: #e8e8e7;
}
.without_bg .material-icons.tooltip-wrapper {
    color: #5f6368;
}
.tooltip-wrapper .tooltip-text {
    visibility: hidden;
    background-color: #333;
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    position: absolute;
    z-index: 99;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.02em;
}

.tooltip-wrapper:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Tooltip Right */
.tooltip-wrapper.right .tooltip-text {
    top: 50%;
    left: 110%;
    transform: translateY(-50%);
}
.tooltip-wrapper.right .tooltip-text::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent #333 transparent transparent;
}
/* Tooltip Right */
.tooltip-wrapper.bottom .tooltip-text {
    top: 50%;
    left: 110%;
    transform: translateY(-50%);
}
.tooltip-wrapper.bottom .tooltip-text::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent #333 transparent transparent;
}
/* mail_with_sideMenus */
.mail_with_toolbarAndEmails {
    flex: 1;
    flex-direction: column;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    height: calc(100dvh - 64px - 16px);
}
.mail_with_sideActions {
    flex: 0 0 90px;
    padding-inline: 16px;
}
.link_options__shortcut {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    padding-block: 16px;
}
.shortcut_icons {
    text-align: center;
    border: 0;
    outline: 0;
    background-color: transparent;
    cursor: pointer;
}
.img_calendar {
    max-width: 60px;
    height: auto;
    margin-inline: auto;
    border-radius: 100%;
    background-color: #fff;
    box-shadow: 0 10px 25px rgba(29, 109, 247, 0.052);
    border: 2px solid #fff;
}
.link_options__shortcutAddNew {
    border-top: 1px solid #e8e8e7;
    width: 30px;
    margin-inline: auto;
    cursor: pointer;
}
/* Tooltip Left */
.tooltip-wrapper.left .tooltip-text {
    top: 50%;
    right: 110%;
    transform: translateY(-50%);
}
.tooltip-wrapper.left .tooltip-text::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #333;
}

.mail_user__profile .mail_user__logo {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #fff;
    color: #3c4043;
    padding: 8px;
    font-weight: 600;
    font-size: 20px;
    text-transform: uppercase;
}
.without_bg .mail_user__profile .mail_user__logo {
    background-color: #469576;
    color: #fff;
}
.mail_scroll_y {
    overflow-y: auto;
    height: calc(100dvh - 50px - 64px - 16px);
    scrollbar-width: thin;
    scrollbar-color: #acaeb5 transparent;
}
.tabs_inbox__wrapper {
    box-shadow: inset 0 -1px 0 0 rgba(100, 121, 143, 0.12);
}
.tabs_inbox__wrapper .nav-tabs {
    border: 0;
    flex-wrap: nowrap;
    overflow: hidden;
    overflow-x: auto;
    padding-bottom: 2px;
}
.tabs_inbox__wrapper .nav-tabs .nav-link {
    border: 0px;
    border-bottom: 3px solid transparent;
    padding: 16px 20px;
    flex: 1;
    border-radius: 0;
}
.tabs_inbox__wrapper .nav-tabs .nav-link.active {
    color: #1a73e8;
    border-bottom: 3px solid #1a73e8;
    background-color: transparent;
}

.tabs_inbox__wrapper .nav-tabs .nav-link .material-icons {
    font-size: 20px;
    color: #444746;
}

.tabs_inbox__wrapper .nav-tabs .nav-link span.small {
    color: #444746;
    font-weight: 400;
    letter-spacing: 0.02em;
}
.tabs_inbox__wrapper .nav-tabs .nav-link.active span.small {
    font-weight: 600;
    color: #007bff;
}
.tabs_inbox__wrapper .nav-tabs .nav-link.active .material-icons {
    color: #007bff;
}
.mail__body {
    flex-grow: 1;
    /* background-color: rgba(255, 255, 255, 1); */
    /* background-color: rgba(255,255,255,0.8); */
    border-radius: 16px;
}
.mail__row {
    display: flex;
    flex-direction: column;
    padding-right: 16px;
    min-height: 100%;
}
.mail__col {
    background-color: rgba(255, 255, 255, 1);
    border-radius: 16px;
    margin-bottom: 16px;
    height: 100%;
    flex-grow: 1;
}

.email-list {
    flex: 1;
    overflow-y: auto;
    padding-block: 8px;
}
.accordion-item {
    border: 0;
    border-bottom: 1px solid #e1e3e1;
}
.accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
    outline: 0;
}
.accordion-button:focus {
    box-shadow: none;
}
.accordion_item__custom .accordion-button {
    gap: 12px;
    align-items: flex-start;
}
.accordion-mail__thread .accordion-button::after {
    content: none;
}
.accordion_item__custom .accordion_opened {
    display: flex;
    align-items: center;
    gap: 20px;
}
.accordion_opened .mail-time-star {
    display: flex;
    gap: 20px;
}
.accordion_item__custom .mail-time {
    font-size: 0.75rem;
    line-height: 20px;
    letter-spacing: normal;
    color: #5e5e5e;
    white-space: nowrap;
}
.accordion_item__custom .icon-set {
    display: flex;
    align-items: center;
    gap: 20px;
}
.accordion_item__custom .icon-set .material-icons,
.accordion_opened .mail-time-star .material-icons {
    font-size: 20px;
    color: #444746;
    display: flex;
    align-items: center;
}

.email-item {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    /* border-bottom: 1px solid #e0e0e0; */
    cursor: pointer;
    transition: background 0.2s ease;
    background: none;
    font-weight: 500;
    font-size: 14px;
    color: #202124;
    box-shadow: inset 0 -1px 0 0 rgba(100, 121, 143, 0.12);
    position: relative;
}
.email-item.read {
    background: rgba(0, 0, 0, 0.09);
    font-weight: 400;
}
.without_bg .email-item.read {
    background-color: #f2f6fc;
}

.without_bg .email-item.selected {
    background-color: #c2dbff;
}
.email-item:hover {
    box-shadow: inset 1px 0 0 rgb(218, 220, 224),
        inset -1px 0 0 rgb(218, 220, 224), 0 1px 2px 0 rgba(60, 64, 67, 0.3),
        0 1px 3px 1px rgba(60, 64, 67, 0.15);
    z-index: 2;
}
/* Submenu styling */
.has-submenus {
    position: relative;
}

.has-submenus .submenu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 200px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1060;
}
.has-submenus .submenu.submenus {
    top: 0;
    transform: translateY(-70%);
}

.has-submenus:hover .submenu {
    display: block;
}
.email-row-options {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.email-item .material-icons {
    font-size: 20px;
    color: #7f8183;
}
.email-item .material-icons:hover {
    color: #444746;
}
.email-item .starred:hover {
    color: #f5cf5c;
}
.context-menu {
    display: none;
    position: absolute;
    z-index: 1050;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    width: 260px;
    padding: 8px 0;
}

.context-menu .menu-item {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.context-menu .menu-item:hover {
    background-color: #f1f3f4;
}

.context-menu .menu-icon {
    font-size: 18px;
    width: 24px;
    margin-right: 12px;
    text-align: center;
    color: #5f6368;
}

.submenu-arrow {
    margin-left: auto;
    font-size: 14px;
    color: #888;
}

.context-divider {
    margin: 6px 0;
    border-top: 1px solid #ddd;
}
.email-row-sender {
    flex: 0 0 150px;
    max-width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-left: 15px;
    color: #202124;
}
.email-subject__docs {
    flex-grow: 1;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-inline: 24px;
}
.email-subject {
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1 1 auto;
    height: auto;
    display: flex;
    font-size: 14px;
}
.docs__flx {
    flex: 1 1 auto;
    flex-grow: 1;
    display: flex;
    gap: 4px;
    align-items: center;
}
.Docfile__media {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 4px;
}
.docs__fileName {
    display: inline-block;
    /* border: 1px solid #c4cad0; */
    color: rgb(95, 99, 104);
    border-radius: 30px;
    padding: 6px 16px;
    font-size: 14px;
    font-weight: 400;
    box-shadow: inset 0 0 0 1px rgba(100, 121, 143, 0.3);
    box-sizing: border-box;
    margin: 4px 2px 2px;
    max-width: 164px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.docs__fileMore {
    color: rgb(95, 99, 104);
    border-radius: 50%;
    padding: 6px;
    width: 30px;
    height: 30px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: inset 0 0 0 1px rgba(100, 121, 143, 0.3);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}
.email-snippet {
    flex-grow: 2;
    color: #5f6368;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-left: 10px;
    /* flex: 0 0 auto;
    width: 65%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; */
    /* max-width: 35%; */
}

.email-time {
    flex-shrink: 0;
    min-width: 60px;
    text-align: right;
    font-size: 13px;
    color: #5f6368;
}
.email-action__shortcut {
    display: none;
    align-items: center;
    flex-shrink: 0;
}
.email-item:hover .email-action__shortcut {
    display: flex;
    align-self: flex-start;
    position: relative;
}
.btn-relative__snooze {
    position: relative;
}
.email-item .shortcut__ico {
    border: 0;
    margin: 0;
    padding: 0;
    outline: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: transparent;
    color: #444746;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: relative;
}
.email-item .shortcut__ico:hover {
    background-color: rgba(32, 33, 36, 0.06);
}
.email-item:hover .email-time {
    /* opacity: 0; */
    display: none;
}

.email-thread {
    flex: 1;
    overflow: hidden;
    overflow-y: auto;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    height: calc(100dvh - 64px - 16px);
}

.email-thread.hidden {
    display: none;
}
.email-thread__back {
    box-shadow: inset 0 -1px 0 0 rgba(100, 121, 143, 0.12);
    padding: 12px 16px 0;
    position: sticky;
    top: 0;
    z-index: 99;
    background-color: #d4d8d7;
}
/* More::Dropdrown */
.custom-menu,
.submenu,
.snooze-dropdown {
    position: absolute;
    top: 36px;
    left: 0;
    right: auto;
    min-width: 268px;
    background: #fff;
    box-shadow: 0px 8px 10px 1px rgba(0, 0, 0, 0.14),
        0px 3px 14px 2px rgba(0, 0, 0, 0.12),
        0px 5px 5px -3px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    display: none;
    z-index: 1000;
    padding: 6px 0;
}
.submenu {
    top: 0;
    left: 100%;
}
.snooze-dropdown {
    top: 0;
    left: 100%;
}
.submenu-label {
    padding: 12px 16px 6px;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 16px;
}
.search___bar {
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 6px 16px;
    width: 100%;
    outline: none;
    font-size: 14px;
}

.label-list {
    padding: 0;
    margin: 12px 0;
    list-style: none;
    max-height: 200px;
    overflow-y: auto;
}

.label-list li {
    padding: 8px 16px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.label-list li:hover {
    background: #f1f3f4;
}

.label-list input[type="checkbox"] {
    margin-right: 10px;
}

.footer-actions {
    border-top: 1px solid #e0e0e0;
    padding: 10px 16px 10px 44px;
    font-size: 14px;
    cursor: pointer;
}

.footer-actions:hover {
    background: #f1f3f4;
}
#customDropdown2 .footer-actions,
.customDropdown2 .footer-actions {
    padding: 0;
}
#customDropdown2 .footer-actions:hover,
.customDropdown2 .footer-actions:hover {
    background-color: transparent;
}
.footer-action__items {
    padding: 8px 16px 8px 32px;
}
.footer-action__items:hover {
    background: #f1f3f4;
}

.has-submenu:hover .submenu {
    display: block;
}
#snoozeSlide:hover .snooze-dropdown,
/* #snoozeSlide:hover + .snooze-dropdown, */
.btn-relative__snooze:hover #snoozeSlide + .snooze-dropdown {
    display: block;
    z-index: 9999;
}
#snoozeSlide + .snooze-dropdown {
    left: auto;
    right: 0;
    top: 37px;
}
.custom-menu-item {
    padding: 8px 16px;
    font-size: 14px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s;
}

.custom-menu-item:hover {
    background-color: #f1f3f4;
}

.custom-menu-item i {
    font-size: 18px;
    margin-right: 16px;
    color: #5f6368;
}
.border-top__menu {
    border-top: 1px solid #ebebeb;
    margin-top: 6px;
}
.border-bottom__menu {
    border-top: 1px solid #ebebeb;
    margin-bottom: 6px;
}
.btn_snooze__item {
    font-size: 14px;
    flex-grow: 1;
}
.footer-actions_cal {
    padding: 18px 16px 12px;
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}
#datetimePickerInput {
    display: none;
}
.date_time {
    font-size: 17px;
    display: flex;
}
.flatpickr-calendar {
    left: 50% !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.email_thread__body {
    padding-block: 16px 0px;
    background-color: #fff;
}
.mail-details__action {
    border: 0;
    margin: 0;
    padding: 0;
    background-color: transparent;
    margin-inline: 12px;
    position: relative;
    z-index: 1;
}
.mail-details__action:hover::after {
    content: "";
    background-color: rgba(255, 255, 255, 0.302);
    width: 40px;
    height: 40px;
    border-radius: 100%;
    display: inline-block;
    position: absolute;
    left: -10px;
    right: 0;
    top: -9px;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    z-index: -1;
}
.without_bg .email-thread__back {
    background: rgba(255, 255, 255, 1);
}

.back-btn {
    margin-bottom: 16px;
    background: none;
    border: none;
    font-size: 14px;
    color: #1a73e8;
    cursor: pointer;
    margin-right: 12px;
}
.email-thread__heading {
    font-weight: 400;
    margin-bottom: 16px;
    font-size: 1.4rem;
}
.sender_info__wrap {
    flex-grow: 1;
}
.sender_info__media {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}
.profile-sender-modal .modal-content {
    border-radius: 20px;
    margin: auto;
}
.profile-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.profile-pic {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #cbdafe;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a75cb;
}
.profile-pic img {
    border-radius: 100%;
}

.profile-info {
    flex-grow: 1;
}

.profile-info h6 {
    margin: 0;
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
}

.profile-info p {
    margin: 0;
    font-size: 13px;
    color: #555;
}

.profile-actions {
    margin-top: 16px;
}

.send-mail-btn {
    background-color: #e0f0ff;
    color: #202124;
    font-weight: 400;
    width: 100%;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 0;
    border: 0;
    outline: 0dvh;
}
.send-mail-btn:hover {
    background-color: #1a73e8;
    color: #fff;
}
.send-mail-btn .material-icons {
    font-size: 18px;
}
.send-mail-btn:hover .material-icons {
    color: #fff;
}

.icon-buttons {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.circle-btn {
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.circle-btn .material-icons {
    font-size: 20px;
}
.circle-btn:hover {
    background-color: #f1f3f4;
}
.nav-profile__modal.nav-pills {
    border-bottom: 1px solid #e1e3e1;
}
.nav-profile__modal.nav-pills .nav-link {
    font-size: 14px;
    line-height: 18px;
    color: #444746;
    border-radius: 0;
    font-weight: 400;
    border-bottom: 2px solid transparent;
    padding: 4px 16px;
}
.nav-profile__modal.nav-pills .nav-link.active {
    background-color: transparent;
    color: #202124;
    border-bottom: 2px solid #007bff;
}
.profile-sender-modal .tab-content__wrap {
    min-height: 400px;
    padding: 16px 8px;
}
.label_txt {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.label_txt > .label_overview {
    font-size: 14px;
    margin-bottom: 8px;
}
.copy_contact {
    display: flex;
    gap: 8px;
    align-items: center;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 13px;
    color: #444746;
}
.copy_contact:hover {
    background-color: #f1f3f4;
    cursor: pointer;
}
.contant_email_copr {
    color: #1a73e8;
    margin-top: 3px;
}
/* add Contact */
.contact-form {
    padding-inline: 24px;
}
.avataar-upload_wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
}
.avataar-upload {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-grow: 1;
}

.avataar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #e1e4ea;
    color: #444746;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}
.form__group {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
}
.form_label_group {
    margin-top: 8px;
    width: 20px;
}
.form_label_group .material-icons {
    font-size: 14px;
    color: #444746;
}
.form-sections .material-icons {
    font-size: 20px;
    color: #555;
    margin-right: 8px;
}

.form-sections {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
}

.add_link_dropdown {
    color: #0078d4;
    font-weight: 400;
    font-size: 13px;
    cursor: pointer;
    display: block;
    margin: 6px 0px 4px;
}
.add_link_dropdown + .custom-menu {
    display: none;
    top: 28px;
    min-width: 160px;
}
.menu-item__lists {
    padding: 4px 12px;
    font-size: 14px;
    cursor: pointer;
}
.menu-item__lists:hover {
    background-color: #f1f3f4;
}
.add_link_dropdown:hover + .custom-menu {
    /* display: block; */
}
.form-control.form-__control {
    border: none;
    border-bottom: 1px solid #e1e3e1;
    border-radius: 0;
    padding-left: 0;
    padding: 6px 0px;
    font-size: 13px;
}

.form-__control.form-control:focus {
    border-color: #0078d4;
    box-shadow: none;
}

.btn___outline {
    border: none;
    background: transparent;
    color: #0078d4;
}
/*  */
.box__theadMail {
    padding-left: 48px;
}
.sender_info__mail {
    position: relative;
}
.sender_info__mail,
.sender_info__summary {
    font-size: 13.5px;
    letter-spacing: 0.02em;
    line-height: 20px;
    color: #5e5e5e;
}
.to_mail__info {
    position: relative;
    text-decoration: none;
}
.to_mail__info .material-icons {
    font-size: 18px;
    position: absolute;
    right: -18px;
    top: -3px;
    cursor: pointer;
}
.email-metadata-wrapper {
    position: relative;
    display: block;
    z-index: 9;
}
/* .email-metadata-wrapper:hover .toggle_meta + .email-metadata-box {
    display: block !important;
} */
.email-metadata-box {
    position: absolute;
    top: 20px;
    left: 0;
    background: white;
    border: 1px solid #ccc;
    padding: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    z-index: 999;
    width: 400px;
}

.email-metadata-box p {
    margin: 6px 0;
    display: flex;
    font-size: 13.4px;
    line-height: 18px;
}
.email-metadata-box p > strong {
    color: #747775;
    font-weight: 400;
    flex: 0 0 80px;
    text-align: end;
    margin-right: 12px;
}

.email-metadata-box .material-icons {
    font-size: 16px;
    vertical-align: bottom;
    margin-right: 4px;
}
.sender_info__mail > strong,
.sender_info__summary > strong {
    font-weight: 500;
    color: #26282a;
}
.sender_info__summary .default_msg__mail {
    color: #444746;
    margin-top: 4px;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.email-thread__msg {
    margin-top: 16px;
}
.email-thread__msg p {
    line-height: 22px;
    font-size: 14px;
    color: #26282a;
}
.thread-action {
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.btn-thread__action {
    border: 1px solid #747775;
    box-shadow: none;
    border-radius: 18px;
    font-size: 14px;
    color: #444746;
    font-weight: 500;
    height: 36px;
    padding: 16px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
}
.email-info__activity {
    margin: 16px 0;
    padding: 0 16px;
}
.total_storage {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 0 0 40%;
    max-width: 40%;
}
.storage_progressBar {
    height: 6px;
}
.storage_info {
    font-size: 0.75rem;
    color: rgb(95, 99, 104);
}
.storage_progressBar .progress-bar {
    background-color: #5f6368;
}
.para_info__activity {
    color: rgb(95, 99, 104);
    font-size: 0.75rem;
    letter-spacing: normal;
    line-height: 20px;
    letter-spacing: 0.03em;
}
.attachment_file__wrap {
    border-top: 1px dotted #d8d8d8;
    margin-block: 15px;
}
.attachment_file__heading {
    margin-block: 12px;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 20px;
    color: #202124;
}
.attachment_files__list {
    display: flex;
    gap: 16px;
}
.attached_fil {
    border: 1px solid #e5e5e5;
    width: 150px;
    height: 100px;
    display: block;
    display: flex;
    flex-direction: column;
}
.attached_file__footer {
    margin-top: auto;
    border-top: 1px solid #e5e5e5;
    background-color: #f5f5f5;
    padding: 6px 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.attached_file__footer > span {
    display: inline-block;
    flex: 0 0 16px;
}
.attached_file__footer p {
    font-size: 12px;
    line-height: 26px;
    font-weight: 600;
    color: #7f8183;
    letter-spacing: 0.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.composeModalCustom.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.composeModalCustom.modal.hidden {
    display: none;
}

.composeModalCustom .modal-content {
    background: #fff;
    width: 576px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.enable_full_scrn.composeModalCustom .modal-content {
    width: 95%;
    min-height: 95%;
}
.composeModalCustom .modal-header {
    padding: 12px 16px;
    background-color: #f2f2f2;
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
}
.composeModalCustom .modal-heading {
    font-size: 16px;
    font-weight: 500;
}
.enable_fullScreen,
.close_fullScreen {
    outline: 0;
    background-color: transparent;
    padding: 4px;
    border-radius: 4px;
}
.enable_fullScreen:hover,
.close_fullScreen:hover {
    background-color: #e1e3e1;
}
#composeBccInput {
    display: none;
}
.composeBccToggle#composeBccInput {
    display: block;
}
.composeModalCustom .modal-body {
    padding: 0px 16px 0px;
}
.composeModalCustom .modal-footer {
    padding: 0px 16px 16px;
    display: flex;
    gap: 12px;
}

.composeModalCustom .modal-content input,
.composeModalCustom .modal-content textarea {
    width: 100%;
    margin: 2px 0;
    padding: 12px 0px;
    box-shadow: inset 0 -1px 0 0 rgba(100, 121, 143, 0.12);
    border: 0;
    border-radius: 0;
    outline: 0;
    font-weight: normal;
}
.composeModalCustom .modal-content textarea {
    box-shadow: none;
    min-height: 250px;
}
.input_sender__name {
    position: relative;
}
.bcc_btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    outline: 0;
    background-color: transparent;
    padding: 4px;
    border-radius: 4px;
}
.bcc_btn:hover {
    background-color: #e1e3e1;
}
.priority_wrap {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.priority_label {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 14px;
}
.priority_dropdown {
    display: none;
    position: absolute;
    min-width: 100px;
    box-shadow: 0px 8px 10px 1px rgba(0, 0, 0, 0.14),
        0px 3px 14px 2px rgba(0, 0, 0, 0.12),
        0px 5px 5px -3px rgba(0, 0, 0, 0.2);
    background-color: #fff;
    z-index: 99;
    padding: 6px 0;
    border-radius: 2px;
    right: 0;
    top: 18px;
}
.priority_wrap:hover .priority_label + .priority_dropdown {
    display: block;
}
.priority_items {
    padding: 8px 16px;
    font-size: 14px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s;
}
.priority_items:hover {
    background-color: #f1f3f4;
}
.mail_shortcut__flex {
    align-items: center;
    gap: 14px;
}
.mail_shortcut__icon {
    background-color: transparent;
    border: 0;
    outline: 0;
    padding: 0;
    margin: 0;
    cursor: pointer;
}
.mail_shortcut__icon > svg {
    width: 1.4em;
    height: 1.4em;
}
.mail_media__offer {
    border: 1px solid #c4cad0;
    padding: 4px;
    margin-block: 32px;
}
.send-btn,
.close-btn {
    padding: 8px 12px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.send-btn {
    background-color: #1a73e8;
    color: white;
}
.compose_mailBox {
    display: flex;
}
.hidden {
    display: none;
}
.thread_compose__email {
    border: 1px solid #e1e3e1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 24px 0px 0px;
    padding: 24px;
    border-radius: 12px;
    flex: 1;
}
.thread-message__input {
    margin-bottom: 4px;
    margin-top: 0px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.thread-message__input > label {
    flex: 0 0 auto;
    width: 30px;
    font-weight: 500;
}
.thread-message__input input {
    flex: 1 0;
    height: 32px;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    outline: 0;
    border: 0;
}
.thread-message__subject input {
    font-size: 16px;
    font-weight: 600;
}
.editor {
    width: 100%;
    min-height: 200px;
    background: #fff;
    line-height: 22px;
    border: 0;
    outline: 0;
}

.toolbar {
    margin: 10px 0;
    display: flex;
    gap: 5px;
}

.toolbar button {
    padding: 5px 10px;
    cursor: pointer;
    border: 1px solid #ccc;
    background: #f0f0f0;
    border-radius: 4px;
}
/* Sidebar expand/collapse */
.sidebar.collapsed {
    flex: 0;
    padding: 0;
    overflow: hidden;
    /* transition: width 0.3s ease; */
}

.main-content.expanded {
    width: 100%;
}
/* .main-content.expanded .mail__body,
.main-content.expanded .email-thread,
.main-content.expanded .content-wrapper {
    margin-left: 16px;
} */
/* Tabs */
.content-wrapper {
    padding: 0px 16px 16px 0px;
}
.tab-container {
    max-width: 100%;
    margin: auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 -1px 0 0 rgba(100, 121, 143, 0.12);
    overflow: hidden;
}

.tab-buttons {
    display: flex;
    background: #fff;
    border-bottom: 1px solid #e1e3e1;
    overflow-x: auto;
}

.tab-btn {
    padding: 12px 32px;
    border: none;
    cursor: pointer;
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.02em;
    position: relative;
    white-space: nowrap;
}
.tab-btn.active::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #1a73e8;
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 8px;
}

.tab-contents {
    display: none;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

.tab-contents.active {
    display: block;
    opacity: 1;
}
/* dropdown */
.dropdown {
    position: relative;
    margin-left: auto;
}

.dropdown-button {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 14px;
    cursor: pointer;
    border-radius: 0;
}

.dropdown-menu {
    position: absolute;
    top: 110%;
    right: 0;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    display: none;
    min-width: 240px;
    z-index: 999;
}
.dropdown-info {
    padding: 8px;
    background-color: #f6f6f6;
    align-items: center;
    white-space: nowrap;
    gap: 12px;
}
.dropdown-info > a {
    font-size: 13px;
    line-height: 16px;
    font-weight: 600;
    text-decoration: none;
}
.dropdown-body {
    padding: 8px;
    align-items: center;
}
.dropdown_user_name {
    flex: 0 0 auto;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: #045c24;
    font-size: 18px;
    line-height: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dropdown_user_name > span {
    color: #fff;
}
.dropdown_body__info {
    padding-left: 12px;
    display: flex;
    flex-direction: column;
}
.dropdown-menu .dropdown_body__info a {
    text-decoration: underline;
    color: #333;
    transition: background 0.2s;
    font-size: 13px;
    line-height: 16px;
    font-weight: 400;
    margin-bottom: 4px;
    color: #1a73e8;
}
.dropdown_body__info p {
    font-size: 13px;
    line-height: 16px;
    font-weight: 500;
    margin-bottom: 4px;
}
.dropdown.open .dropdown-menu {
    display: flex;
}
.links_flex_profile {
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.links_flex_profile a {
    position: relative;
}
.links_flex_profile a::after {
    content: "|";
    position: absolute;
    right: -6px;
    top: 1px;
    color: #444746;
    font-size: 14px;
    line-height: 14px;
}
.links_flex_profile a:nth-last-of-type(1)::after {
    content: none;
}
