@import url(styles.css);

/* Start Fonts */

@font-face {
    font-family: "fontH";
    src: url(../fonts/productSans-Regular.ttf);
}

@font-face {
    font-family: "fontH-Light";
    src: url(../fonts/productSans-Light.ttf);
}

@font-face {
    font-family: "fontH-Med";
    src: url(../fonts/productSans-Medium.ttf);
}

@font-face {
    font-family: "fontH";
    src: url(../fonts/productSans-Bold.ttf);
}

/* End Fonts */

:root {
    --main-color: #0288d1;
    --sec-color: #d3e3fd;
    --dark-color: #0F0F0F;
    --color-gray: #f1f1f1;
    --bg-color: #f1f1f1;
    --bg-dark: #212020;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #000;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

a:hover {
    text-decoration: none;
    color: var(--main-color);
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

a:focus {
    text-decoration: none;
    /* color: inherit; */
}

button,
button:hover {
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

body {
    padding: 0;
    margin: 0;
    font-family: "fontH";
    background: #f6f8fc;
    text-align: start;
}

section,
footer {
    overflow: hidden;
    position: relative;
}

p {
    margin: 0;
    font-size: 15px;
    line-height: 25px;
}

ul {
    padding: 0;
    margin: 0;
    display: block;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

li {
    display: block;
    list-style: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

iframe {
    width: 100%;
    height: 100%;
}

.padding {
    padding: 0 !important;
}

img {
    max-width: 100%;
}

input,
button,
input:focus,
button:focus,
input:active,
button:active,
button:hover,
textarea:active,
textarea:focus,
select,
select:active,
select:focus {
    outline: none !important;
}

textarea {
    resize: none;
}

main {
    overflow: hidden;
    /* position: relative; */
    /* min-height: 100vh; */
}

.owl-carousel {
    direction: ltr;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    /* text-transform: capitalize; */
}

/* Start Sidebar */

.cursor {
    opacity: 0;
    transition: all .5s;
    display: none;
}

.mobile-menu {
    background: #f8f8f8;
    position: absolute;
    top: 0;
    width: 72px;
    padding: 20px;
    padding-top: 40.1px;
    padding-bottom: 35.1px;
    opacity: 1;
    transition: all .3s;
    /* visibility: hidden; */
    /* transform: scaleY(0) translateY(-100%); */
    left: 0;
    padding: 0;
    padding-inline-start: 8px;
    z-index: 4;
    height: 100%;
}

.menu-backdrop {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: -10;
    opacity: 0;
    transition: all .3s;
}

.mobile-menu .menu-box {
    position: relative;
    z-index: 2;
    height: calc(100% - 18%);
    /* display: flex; */
    /* align-items: center; */
    /* -webkit-align-items: center; */
}

.mobile-menu .menu-box .navigation li {
    margin: 10px 0;
    /* text-align: center; */
    /* position: relative; */
}

.mobile-menu .menu-box .navigation li a {
    text-transform: capitalize;
    color: #141414;
    letter-spacing: 0.25px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    width: 32px;
    height: 32px;
    transition: all .5s;
    margin: 0 10px;
    gap: 5px;
    font-size: 14px;
    position: relative;
    justify-content: center;
}

.menu-right {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 5px;
}

body.mobile-menu-visible .mobile-menu {
    right: 0;
    opacity: 1;
    z-index: 999;
    visibility: visible;
    width: 16.66666667%;
}

/* End Sidebar */

/* Start Email-content */


#wysiwyg option {
    background-color: white;
    color: grey;
}

#wysiwyg select,
#wysiwyg input,
#wysiwyg button {
    background-color: white;
    border: none;
    padding: 0.5em 0.8em;
    border-radius: 4px;
    color: grey;
    cursor: pointer;
    outline-style: none;
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
}

#wysiwyg select:hover,
#wysiwyg input:hover,
#wysiwyg button:hover {
    background-color: #EFEFEF;
    color: black;
}

#wysiwyg select:not(:last-child),
#wysiwyg input:not(:last-child),
#wysiwyg button:not(:last-child) {
    margin-right: 4px;
}

#wysiwyg select[type=color],
#wysiwyg input[type=color],
#wysiwyg button[type=color] {
    width: 1.2em;
}

#wysiwyg select[type=number],
#wysiwyg input[type=number],
#wysiwyg button[type=number] {
    width: 3em;
}

#wysiwyg {
    border-radius: 8px;
    width: 100%;
    max-width: 600px;
    max-height: 100%;
    /* box-shadow: 0 0 25px rgba(0, 0, 0, 0.1); */
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

#wysiwyg .btns {
    padding: 0.3em 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-bottom: 1px solid #EFEFEF;
    background-color: white;
    flex-grow: 2;
}

#wysiwyg .btns .category {
    display: flex;
    align-items: center;
    border-right: 1px solid #EFEFEF;
    padding: 0 4px;
}

#wysiwyg #editor {
    resize: none;
    background-color: white;
    outline-style: none;
    border: none;
    width: 100%;
    box-sizing: border-box;
    padding: 30px 0;
    max-height: calc(80vh);
    overflow: auto;
    height: 220px;
}

#wysiwyg #editor img {
    max-width: 100%;
}

#actions {
    display: none;
}

.head-inner {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: space-between;
    padding: 8px;
}

.head-inner .logo-bars {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 10px;
}

.container-fluid {
    padding: 0 20px;
}

.head-inner .logo-bars .item.res-menu {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    cursor: pointer;
    border-radius: 50%;
    font-size: 20px;
    justify-content: center;
    transition: all .4s;
}

.head-inner .logo-bars .item.res-menu i {
    font-weight: 300;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
}

.head-inner .logo-bars .item.res-menu:hover {
    color: var(--main-color);
    background: #f1f1f1;
}

.search-h {
    margin: 0 30px;
}

.search-h form {
    min-width: 720px;
    background: #eaf1fb;
    border-radius: 50px;
    height: 48px;
    overflow: hidden;
    position: relative;
}

.search-h form input {
    width: 100%;
    height: 100%;
    border: none;
    padding: 0 60px;
    background: transparent !important;
}

.search-h form i {
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 300;
    margin: 16px 25px;
}

.menu-right a {
    width: 40px;
    height: 40px;
    display: block;
    border-radius: 50%;
    font-size: 21px;
}

.menu-right a i {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
}

.menu-right a:hover {
    background: #f1f1f1;
}

.menu-right .user-name a {
    background: var(--main-color);
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    color: #fff;
    font-weight: bold;
    justify-content: center;
    font-size: 16px;
    text-transform: lowercase;
    cursor: pointer;
}

body.mobile-menu-visible .col-md-9 {
    width: calc(100% - 19.666667%);
    transform: translateX(19.666667%);
}

.email-content .col-md-9 {
    transition: all .4s ease-in-out;
    transform: translateX(72px);
    width: calc(100% - 10%);
}

.btn-send-msg .btn-write {
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    min-width: 48px;
    min-height: 56px;
    border-radius: 10px;
    background: #c2e7ff;
    color: #001d35;
    gap: 5px;
    cursor: pointer;
    transition: all .4s;
    box-shadow: 0 1px 2px 0 #0000, 0 1px 3px 1px #0000;
}

.btn-send-msg .btn-write .icon {
    /* filter: brightness(0) invert(1); */
}

.btn-send-msg {
    padding-top: 6px;
}

body.mobile-menu-visible .btn-send-msg .btn-write,
.mobile-menu:hover .btn-send-msg .btn-write {
    min-width: 142px;
}

.btn-send-msg .btn-write span {
    display: none;
}

body.mobile-menu-visible .btn-send-msg .btn-write span,
.mobile-menu:hover .btn-send-msg .btn-write span {
    display: block;
}

body.mobile-menu-visible .mobile-menu .menu-box .navigation li a,
.mobile-menu:hover .menu-box .navigation li a {
    width: 100%;
    margin: 0;
    justify-content: start;
}

body.mobile-menu-visible .mobile-menu .menu-box .navigation li a span,
.mobile-menu:hover .menu-box .navigation li a span {
    display: block;
}

.mobile-menu .menu-box .navigation li a span {
    display: none;
}

.mobile-menu .menu-box .navigation li a::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--sec-color);
    width: 100%;
    left: -10%;
    border-start-end-radius: 50px;
    border-end-end-radius: 50px;
    opacity: 0;
}

.mobile-menu .menu-box .navigation li a * {
    position: relative;
    z-index: 2;
}

.mobile-menu .menu-box .navigation li a::after {
    width: 32px;
    height: 32px;
}

.mobile-menu .menu-box .navigation li.current-menu-item a::after {
    opacity: 1;
    left: 0;
    border-radius: 50%;
    margin: 0 auto;
}

body.mobile-menu-visible .mobile-menu .menu-box .navigation li.current-menu-item a::after,
.mobile-menu:hover .menu-box .navigation li.current-menu-item a::after {
    width: 100%;
    left: -10%;
    border-radius: 0;
    border-start-end-radius: 50px;
    border-end-end-radius: 50px;
}

.mobile-menu:hover {
    width: 16.66666667%;
}

.all-emails {
    background: #fff;
    border-radius: 18px;
    padding: 20px;
    height: 100%;
}

.logo a {
    display: block;
}

.logo a img {
    max-height: 50px;
}

.top-nav-email {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 10px;
    border-bottom: 1px var(--bg-color) solid;
    padding-bottom: 15px;
    margin-bottom: 15px;
    justify-content: space-between;
}

.allSelect input,
.emails-inner .selectedId {
    width: 15px;
    height: 15px;
    accent-color: var(--main-color);
}

.top-nav-email .actions-btns button,
.top-nav-email .reload-page button {
    width: 35px;
    height: 35px;
    border: none !important;
    border-radius: 50%;
    background: transparent;
    font-size: 14px;
    padding: 0;
}

.top-nav-email .actions-btns button:hover,
.top-nav-email .reload-page button:hover {
    background: var(--bg-color);
    color: var(--main-color);
}

.emails-inner tr {
    vertical-align: middle;
}

.emails-inner .checkStar {
    border: none;
    background: transparent;
    font-size: 13px;
    padding: 0;
    width: 20px;
    height: 20px;
    line-height: 20px;
    margin: 0 10px;
}

.emails-inner .selectedId {
    position: relative;
    top: 3px;
}

.emails-inner td {
    border-top: 1px var(--bg-color) solid;
    border-bottom: 1px var(--bg-color) solid;
    padding: 14px 0;
    font-size: 14px;
    font-family: 'fontH-Light';
}

.emails-inner tr:first-child td {
    border-top: 0;
    /* padding-top: 0; */
}

.emails-inner tr:last-child td {
    border-bottom: 0;
    padding-bottom: 0;
}

.emails-inner tr td:nth-child(3) {
    min-width: 153px;
    padding-inline-end: 20px;
}

.email-link {
    position: relative;
    display: block;
    /* max-width: calc(100% - 46.666667%); */
    /* white-space: nowrap; */
    /* overflow: hidden; */
    /* text-overflow: ellipsis; */
}

.email-link .hover-email {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    transition: all .4s;
    opacity: 0;
}

.email-link:hover .hover-email {
    opacity: 1;
}

.email-link .email-link {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    max-width: 100%;
}

.email-link .email-link p {
    width: 85%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    /* number of lines to show */
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.ui-widget-overlay {
    display: none !important;
    ;
}

.ui-widget.ui-widget-content {
    left: auto !important;
    right: 0;
    min-width: 510px;
    bottom: 0;
    top: auto !important;
    z-index: 9999;
}

.ui-dialog .ui-dialog-title {
    width: 50%;
    margin-inline-end: auto;
    font-family: 'fontH-Light';
}

.ui-draggable .ui-dialog-titlebar {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
}

.ui-draggable .ui-dialog-titlebar button {
    padding: 0;
    border: none;
    width: auto;
    height: auto;
    margin: 0 !important;
    margin-inline-start: 8px !important;
    position: relative;
    width: 20px;
    height: 20px;
    color: transparent;
    top: auto;
    right: auto;
    left: auto;
    background: transparent;
}

.ui-draggable .ui-dialog-titlebar button .ui-icon {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    height: 100%;
    background: transparent;
    display: block;
    margin: 0;
    text-indent: initial;
    color: #000;
}

.ui-draggable .ui-dialog-titlebar button .ui-icon.ui-icon-minusthick::after {
    content: "\f068";
}

.ui-draggable .ui-dialog-titlebar button .ui-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    font-family: 'Font Awesome 6 Pro';
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    font-size: 10px;
}

.ui-draggable .ui-dialog-titlebar button .ui-icon.ui-icon-plusthick::after {
    content: "\f424";
}

.ui-draggable .ui-dialog-titlebar button .ui-icon.ui-icon-closethick::after {
    content: "\58";
}

.write-message .form-group input {
    width: 100%;
    border-radius: 0;
    height: 40px;
    border: none;
    border-bottom: 1px var(--bg-color) solid;
}

#wysiwyg #editor h1 {
    font-size: 22px;
}

#wysiwyg button {
    width: 22px;
    height: 22px;
    padding: 3px;
    font-size: 11px;
}

#wysiwyg .btns .category input[type="color"] {
    width: 20px;
    height: 20px;
    padding: 0;
    border: none;
}

.email-link .hover-email button {
    border: none;
    width: 32px;
    height: 32px;
    outline: none !important;
    box-shadow: none !important;
}

.email-link .hover-email button:hover {
    background: var(--main-color);
    color: #fff;
}

.mobile-menu .menu-box .navigation li a .icon {
    width: 30px;
    font-size: 18px;
}

.mobile-menu .menu-box .navigation li a .icon i {
    margin-inline-start: 2px;
}

.email-content .row {
    justify-content: space-between;
}

.side-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: end;
    -webkit-align-items: end;
}

.top-nav-email .nav-top-inner {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 10px;
}

.num-emails {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 20px;
}

.num-emails .nums-h a {
    -webkit-font-smoothing: auto;
    font-size: .75rem;
    letter-spacing: normal;
    font-family: "Google Sans", Roboto, RobotoDraft, Helvetica, Arial, sans-serif;
    text-decoration: none;
    color: #5e5e5e;
}

.num-emails .arrows-h {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 20px;
}

.nums-h {
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    border: none;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    outline: none;
    position: relative;
    z-index: 0;
    font-family: "Google Sans", Roboto, RobotoDraft, Helvetica, Arial, sans-serif;
    font-size: 0.875rem;
    letter-spacing: normal;
    background: none;
    border-radius: 4px;
    box-sizing: border-box;
    color: #444746;
    cursor: pointer;
    font-weight: 500;
    height: 36px;
    min-width: 80px;
    outline: none;
    color: rgb(95, 99, 104);
    -webkit-font-smoothing: auto;
    font-family: "Google Sans", Roboto, RobotoDraft, Helvetica, Arial, sans-serif;
    font-size: .75rem;
    letter-spacing: normal;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: inline-flex;
    font-weight: normal;
    margin: 0 -8px;
    padding: 0 8px;
}

.nums-h::after {
    content: "";
    display: block;
    opacity: 0;
    position: absolute;
    -webkit-transition-duration: .15s;
    transition-duration: .15s;
    -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: rgb(32, 33, 36);
    border-radius: 4px;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity, -webkit-transform;
}

.nums-h:hover::after {
    opacity: .12;
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.12;
}

.side-right a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50px;
    margin: 0 0 20px;
}

.side-right a img {
    max-width: 20px;
    max-height: 20px;
}

.side-right a:hover {
    background: #e8f0fe;
}

.tabs-emails .nav.nav-tabs .nav-link {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    width: 252px;
    border: none !important;
    border-bottom: 1px solid #d7d7d7 !important;
    height: 60px;
    padding: 0;
    position: relative;
}

.tabs-emails .nav.nav-tabs .nav-link .icon {
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    height: 20px;
    margin: 0 16px;
    width: 20px;
    color: #777;
}

.tabs-emails .nav.nav-tabs .nav-link .details {
    margin-right: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tabs-emails .nav.nav-tabs .nav-link .details h3 {
    display: flex;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: 'fontH-Med';
    font-size: .875rem;
    letter-spacing: normal;
    color: #444746;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 16px;
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    order: 0;
}

.tabs-emails .nav.nav-tabs .nav-link .details .alert-h {
    font-style: normal;
    -webkit-font-smoothing: auto;
    font-family: "Google Sans", Roboto, RobotoDraft, Helvetica, Arial, sans-serif;
    font-size: 10px;
    letter-spacing: normal;
    color: #fff;
    font-weight: 500;
    height: 16px;
    line-height: 16px;
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    order: 0;
    border-radius: 49px;
    margin-inline-start: 10px;
    min-width: 40px;
}

.tabs-emails .nav.nav-tabs .nav-link .details .alert-h.color-1 {
    background: #168033;
}

.tabs-emails .nav.nav-tabs .nav-link .details .alert-h.color-2 {
    background: #1670e9;
}

.tabs-emails .nav.nav-tabs .nav-link .details .alert-h.color-3 {
    background: #db7500;
}

.tabs-emails .nav.nav-tabs .nav-link .details u {
    text-decoration: none;
    display: block;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -moz-osx-font-smoothing: auto;
    -webkit-font-smoothing: auto;
    font-family: "Google Sans", Roboto, RobotoDraft, Helvetica, Arial, sans-serif;
    font-size: .75rem;
    letter-spacing: normal;
    color: #444746;
    font-weight: "inherit";
    line-height: 16px;
    margin-top: 3px;
}

table {
    width: 100%;
    max-width: 100%;
}

.tabs-emails .nav.nav-tabs .nav-link.active .icon {
    color: #0b57d0;
}

.tabs-emails .nav.nav-tabs .nav-link.active .details h3 {
    color: #0b57d0;
}

.tabs-emails .nav.nav-tabs .nav-link::after {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    bottom: 0;
    content: "";
    display: block;
    height: 3px;
    left: 0;
    margin: 0 8px;
    position: absolute;
    right: 0;
}

.tabs-emails .nav.nav-tabs .nav-link.active::after {
    background: #0b57d0;
}

.nums-list .sub-menu {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: "Google Sans",
        Roboto,
        RobotoDraft,
        Helvetica,
        Arial,
        sans-serif;
    font-size: .875rem;
    letter-spacing: normal;
    border: none;
    border-radius: 4px;
    box-shadow: 0px 8px 10px 1px rgba(0, 0, 0, .14),
        0px 3px 14px 2px rgba(0, 0, 0, .12),
        0px 5px 5px -3px rgba(0, 0, 0, .2);
    font-family: "Google Sans", Roboto, RobotoDraft, Helvetica, Arial, sans-serif;
    line-height: 20px;
    margin: 0;
    outline: none;
    padding: 6px 0;
    position: absolute;
    min-width: 145px;
    text-align: center;
    left: -50%;
    /* transform: translateX(50%); */
    z-index: 99999;
    background: #fff;
    display: none;
}

.nums-list {
    position: relative;
}

.nums-list .sub-menu a {
    display: block;
    padding-bottom: 6px;
    padding-top: 6px;
    color: rgb(32, 33, 36);
    padding-left: 48px;
    padding-right: 48px;
}

.nums-list .sub-menu a.disable {
    color: #ccc !important;
    user-select: none;
    pointer-events: none;
    cursor: default;
    text-decoration: none;
}

.nums-list .sub-menu.active {
    display: block;
}

/* End Email-content */

/* Start Single-email */

.aQy {
    background-color: #fff;
    display: inline-block;
    height: 120px;
    width: 180px;
    overflow: hidden;
    position: relative;
    z-index: 0;
    text-decoration: none;
}

.aQy {
    outline: none;
}

.gt a {
    color: #222;
}

.a3I {
    position: absolute;
    left: -10000px;
    top: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.aSG {
    background: #fff;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.aZn {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    border-top: 1px solid #e5e5e5;
    overflow: visible;
    z-index: 2;
}

.aZn:after {
    content: "";
    font-size: 0;
    position: absolute;
    top: 118px;
    left: 0;
    right: 39px;
    height: 0;
    border-bottom: 1px solid #e5e5e5;
}

.aZm {
    top: 0;
    left: 0;
    width: 0;
    height: 118px;
    border-left: 1px solid #e5e5e5;
}

.aZm:after {
    content: "";
    font-size: 0;
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 118px;
    border-right: 1px solid #e5e5e5;
}

.aSH {
    position: absolute;
    top: 1px;
    right: 1px;
    bottom: 1px;
    left: 1px;
    overflow: hidden;
    z-index: 1;
}

.aQG {
    -webkit-transition: opacity 0.5s linear;
    transition: opacity 0.5s linear;
    opacity: 0;
    position: absolute;
    border: none;
}

.aQG.aYB {
    opacity: 1;
}

.aYv {
    position: relative;
    height: 85px;
    text-align: center;
}

.aYw {
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: no-repeat url(../images/newattachmentcards-ff2ce2bea04dec2bf32f2ebbfa0834ff.png) -219px -88px;
    width: 40px;
    height: 40px;
    border: none;
}

.aYy {
    background-color: #f5f5f5;
    border-top: 1px solid #e5e5e5;
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
}

.aYA {
    -webkit-align-items: center;
    align-items: center;
    float: left;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    height: 32px;
    -webkit-justify-content: center;
    justify-content: center;
    width: 32px;
}

.aSM {
    width: 16px;
    height: 16px;
    border: none;
}

.aYz {
    overflow: hidden;
}

.aQA {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #777;
    font-size: 12px;
    font-weight: bold;
    line-height: 16px;
    margin-right: 32px;
    margin-top: 8px;
    word-wrap: normal;
}

.aYp {
    font-size: 11px;
    color: #aaa;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: normal;
    display: none;
}

.aYp {
    font-size: 11px;
    color: #aaa;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: normal;
    display: none;
}

.aV3 {
    -webkit-user-select: none;
}

.aSI {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 3;
    height: 20px;
    width: 20px;
    border-right: solid 20px transparent;
}

.aSI:after {
    content: "";
    font-size: 0;
    position: absolute;
    bottom: 0;
    right: -20px;
    background: url(../images/newattachmentcards-ff2ce2bea04dec2bf32f2ebbfa0834ff.png) no-repeat -129px -88px;
    height: 20px;
    width: 40px;
    z-index: 4;
}

.aSI {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 3;
    height: 20px;
    width: 20px;
    border-right: solid 20px transparent;
}

.aSI .aSJ {
    position: absolute;
    width: 0;
    height: 0;
    bottom: 0;
    right: -20px;
    border-width: 10px;
    border-style: solid;
    z-index: 3;
    border-color: rgb(251, 76, 47);
}

.aYy {
    background-color: #f5f5f5;
    border-top: 1px solid #e5e5e5;
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
}

.aQy:hover .aYy {
    top: 0;
    border-top: none;
}

.aYy:hover .aYp {
    display: block;
    margin-top: 4px;
}

.aQw {
    position: absolute;
    left: 32px;
    opacity: .01;
    bottom: 15px;
    z-index: 3;
}

.aQy:hover+.aQw {
    opacity: 1;
}

.aQw span a {
    float: left;
    margin-right: 8px;
    background: rgb(128, 134, 139);
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
}

.attach-item .item {
    position: relative;
}

.aQw span a svg {
    fill: #fff;
}

.title-email-in h3 {
    -webkit-font-smoothing: antialiased;
    font-family: "Google Sans", Roboto, RobotoDraft, Helvetica, Arial, sans-serif;
    font-size: 1.375rem;
    -webkit-font-variant-ligatures: no-contextual;
    font-variant-ligatures: no-contextual;
    color: #1f1f1f;
    font-weight: 400;
    margin: 0;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 10px;
}

.title-email-in {
    -webkit-align-items: flex-start;
    align-items: flex-start;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    padding: 20px 0 0 72px;
}

.single-email-head .user-name {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    padding: 20px 0 0 0;
}

.single-email-head .user-name .img {
    width: 40px;
    height: 40px;
    background-color: #cccccc;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 16px;
}

.single-email-head .user-name .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.single-email-head .user-name .user-email-in {
    margin: 0;
    min-width: 0;
    padding: 0 0 20px 0;
    width: initial;
}

.single-email-head .user-name .user-email-in h3 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-font-smoothing: auto;
    font-family: "Google Sans", Roboto, RobotoDraft, Helvetica, Arial, sans-serif;
    font-size: .75rem;
    letter-spacing: normal;
    color: #1f1f1f;
    display: block;
    line-height: 20px;
    max-width: -webkit-calc(100% - 8px);
    max-width: calc(100% - 8px);
    font-weight: 800;
    display: flex;
    margin: 0;
}

.single-email-head .user-name .user-email-in h3 span {
    color: #5e5e5e;
    display: inline-block;
    margin-inline-start: 5px;
    font-weight: 300;
}

.toEmail .btn-to {
    -moz-osx-font-smoothing: auto;
    -webkit-font-smoothing: auto;
    font-family: "Google Sans", Roboto, RobotoDraft, Helvetica, Arial, sans-serif;
    font-size: 12px;
    letter-spacing: normal;
    color: #5e5e5e;
    line-height: 22px;
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
}

.toEmail .btn-to i {
    margin-inline-start: 5px;
    color: #000;
    margin-top: -4px;
}

.toEmail {
    position: relative;
}

.toEmail .sub-menu {
    background-color: #fff;
    box-sizing: border-box;
    cursor: auto;
    max-height: 360px;
    max-width: 50%;
    min-width: 360px;
    overflow: auto;
    position: absolute;
    z-index: 8;
    outline: none;
    padding: 13px 21px 17px 21px;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
    box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
    border: 1px solid rgba(0, 0, 0, .2);
    display: none;
}

.toEmail .sub-menu table td {
    color: #999;
    padding: 4px 16px 4px 0;
    text-align: right;
    white-space: nowrap;
    vertical-align: top;
    width: 0;
    border: none;
}

.toEmail .sub-menu table td:nth-child(2) {
    /* padding: 2px 0; */
    text-align: start;
    color: #222;
}

.toEmail .sub-menu table td h4 {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 600;
}

.toEmail .sub-menu table td h4 span {
    display: block;
    font-weight: 300;
}

.toEmail .sub-menu.active {
    display: block;
}

.single-email-content {
    max-width: calc(100% - 90px);
    margin-inline-end: auto;
    padding: 20px 0;
    direction: rtl;
}

.single-email-content p {
    color: #222;
    font: small / 1.5 Arial, Helvetica, sans-serif;
}

.single-email-footer {
    margin: 15px 0;
    clear: both;
    border-top: 1px dotted #d8d8d8;
}

.title-foot {
    margin: 12px 0;
}

.title-foot h3 {
    -webkit-font-smoothing: antialiased;
    font-family: "Google Sans", Roboto, RobotoDraft, Helvetica, Arial, sans-serif;
    font-size: .875rem;
    letter-spacing: normal;
    height: 20px;
    line-height: 20px;
    font-weight: 600;
}

.aQy:hover .aQw {
    opacity: 1;
}

.allSelect a {
    width: 40px;
    display: flex;
    height: 40px;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.allSelect a:hover {
    background: rgba(32, 33, 36, 0.059);
}

.user-sub {
    position: absolute;
    right: 0;
    z-index: 9;
    top: 0px;
    width: 436px;
    z-index: 991;
    height: 0px;
    margin-top: 57px;
    right: 0px;
    margin-right: 4px;
    min-height: 440px;
    max-height: calc(-61px + 100dvh);
    max-width: calc(-8px + 100vw);
    background: #e9eef6;
    border-radius: 28px;
    box-shadow: 0 4px 8px 3px rgba(0, 0, 0, .15), 0 1px 3px rgba(0, 0, 0, .3);
    /* max-height: 400px; */
    outline: 1px solid transparent;
    overflow-y: scroll;
    overflow-x: hidden;
    /* height: 100%; */
    -webkit-overflow-scrolling: touch;
    padding: 26px 0;
    display: none;
}

.menu-right .user-name {
    position: relative;
}

.user-sub .sub-inner .email-user {
    text-align: center;
    font-family: "Google Sans", "Roboto";
    font-size: .875rem;
    line-height: 1.25rem;
    letter-spacing: normal;
    color: #1f1f1f;
    font-weight: 500;
    margin-left: auto;
    margin-right: auto;
    max-width: calc(100% - 64px);
    opacity: 1;
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    transition: opacity .15s;
}

.user-sub .sub-inner .details-user {
    padding: 0 16px;
}

.user-sub .sub-inner .details-user .username-in .img-user {
    position: relative;
    display: block;
    height: 80px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 22px;
    outline: none;
    position: relative;
    width: 80px;
}

.user-sub .sub-inner .details-user .username-in .img-user span {
    width: 80px;
    display: flex;
    height: 80px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    line-height: 80px;
    background: #0288d1;
    font-size: 40px;
    font-family: 'fontH-Med';
    color: #fff;
    text-transform: lowercase;
}

.user-sub .sub-inner .details-user .username-in .img-user .btn-update {
    background: #fff;
    border-radius: 50%;
    border: 1px solid transparent;
    bottom: 0;
    box-sizing: border-box;
    color: #3c4043 !important;
    font-size: medium;
    height: 24px;
    padding: 2px;
    position: absolute;
    right: 0;
    width: 24px;
    font-size: 13px;
}

.user-sub .sub-inner .details-user .username-in .img-user .btn-update i {
    font-weight: 500;
    border-radius: 50%;
    transition: all .3s;
}

.user-sub .sub-inner .details-user .username-in .img-user:hover .btn-update {
    color: #0b57d0 !important;
    background: #e9eef6;
}

.user-sub .sub-inner .details-user .username-in .img-user:hover .btn-update i {
    background: rgba(68, 71, 70, .12);
}

.user-sub .sub-inner .details-user h3 {
    font-family: 'fontH-Med';
    font-weight: 400;
    font-size: 1.375rem;
    line-height: 1.75rem;
    letter-spacing: normal;
    margin: 8px 0;
    text-align: center;
}

.user-sub .sub-inner .details-user .user-option {
    display: flex;
    border-radius: 50px;
    overflow: hidden;
    gap: 4px;
    margin: 12px 0 0;
}

.user-sub .sub-inner .details-user .username-in .btn-manger {
    position: relative;
    background: none;
    border-radius: 100px;
    border: 1px solid #747775;
    display: inline-block;
    outline: 0;
    padding: 9px 23px 9px 23px;
    text-align: center;
    width: auto;
    height: auto;
    color: #2962ff;
    text-transform: inherit;
}

.user-sub .sub-inner .details-user .username-in {
    text-align: center;
}

.user-sub .sub-inner .details-user .username-in .btn-manger:hover {
    background: rgba(11, 87, 208, .12);
}

.user-sub .sub-inner .details-user .user-option a {
    width: 50%;
    border-radius: 0;
    padding: 17px 15px;
    height: auto;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    color: #444746;
    background: #fff;
    gap: 5px;
    font-size: 17px;
}

.user-sub .sub-inner .details-user .user-option a .icon {
    height: 24px;
    padding: 0;
    width: 24px;
    border-radius: 50%;
}

.user-sub .sub-inner .details-user .user-option a:nth-child(1) .icon {
    background: #e9eef6;
    border-radius: 50%;
    color: #0b57d0;
    padding: 1.5px;
}

.user-sub .sub-inner .details-user .user-option a .icon i {
    font-weight: 800;
}

.user-sub .sub-inner .details-user .user-option a:hover,
.user-sub .sub-inner .details-user .user-size a:hover {
    background: rgba(68, 71, 70, .08);
}

.user-sub .sub-inner .details-user .user-size {
    margin: 12px 0 0;
}

.user-sub .sub-inner .details-user .user-size a {
    width: auto;
    height: auto;
    border-radius: 50px;
    padding: 17px 15px;
    justify-content: start;
    color: #444746;
    background: #fff;
    gap: 5px;
    font-size: 17px;
}

.user-sub.active {
    display: block;
}

button.close-btn-sub {
    position: absolute;
    right: 20px;
    top: 16px;
    z-index: 2;
    border-radius: 50%;
    border: 1px solid transparent;
    color: #444746;
    cursor: pointer;
    height: 40px;
    width: 40px;
    outline: 0;
    padding: 8px;
    font-size: 22px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
}

button.close-btn-sub:hover {
    background: rgba(68, 71, 70, .08);
}

.footer-sub {
    height: 60px;
}

.footer-sub ul {
    display: flex;
    height: 100%;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
}

.footer-sub ul li a {
    width: auto;
    border-radius: 4px;
    background: transparent !important;
    max-width: 350px;
    padding: 5px 4px;
    color: #303030 !important;
    font-family: 'fontH-Light';
    font-weight: 400;
    letter-spacing: .1px;
    font-size: .75rem !important;
    line-height: 1rem;
    position: relative;
    vertical-align: text-top;
    border-radius: 4px;
    border: 1px solid transparent;
}

.footer-sub ul li {
    display: list-item;
    list-style: inherit;
    margin: 0;
    font-size: 12px;
    color: #303030 !important;
}

.footer-sub ul li:nth-child(1) {
    list-style: none;
    margin-inline-end: 23px;
    margin-inline-start: 0;
}

h3 span span {
    -webkit-font-smoothing: auto;
    font-size: .75rem;
    letter-spacing: normal;
    cursor: pointer;
    display: inline-block;
    font-weight: 400;
    height: 18px;
    line-height: 18px;
    margin-right: 6px;
    -webkit-transition-duration: .1s;
    transition-duration: .1s;
    -webkit-transition-property: background, color;
    transition-property: background, color;
    -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    background-color: #ddd;
    color: #666;
    padding: 0 0.1666666666em 0 4px;
    border-radius: 4px;
    padding-inline-end: 4px;
}

h3 span span i {
    font-size: 11px;
}

.date-h {
    white-space: nowrap;
}

/* End Single-email */

/* Start Login-h */

.login-page {
    justify-content: center;
    padding: 48px 0;
    display: flex;
    margin-left: 200px;
    margin-right: 200px;
    font-family: sans-serif;
}

.login-page .login-inner .login-in-h {
    width: 100%;
    background: #fff;
    padding: 100px 36px 36px 36px;
    border-radius: 28px;
    min-height: 384px;
}

.login-text {
    margin-top: -72px;
}

.login-text h2 {
    color: #1f1f1f;
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 0;
    margin-top: 24px;
    word-break: break-word;
    font-size: 2rem;
    font-family: sans-serif;
}

.login-page .login-inner {
    width: 100%;
}

.login-text p {
    color: #1f1f1f;
    font-weight: 400;
    letter-spacing: 0rem;
    line-height: 1.5;
    margin-bottom: 0;
    margin-top: 16px;
    font-size: 1rem;
    font-family: sans-serif;
}


.form-group {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.form-group .label-h {
    position: absolute;
    line-height: 20px;
    text-transform: capitalize;
    z-index: 2;
    background: #fff;
    color: #444746;
    top: 19px;
    box-sizing: border-box;
    font-size: 16px;
    font-weight: 400;
    left: 8px;
    max-width: calc(100% - 16px);
    overflow: hidden;
    padding: 0 8px;
    text-overflow: ellipsis;
    transition: transform .15s cubic-bezier(.4, 0, .2, 1), opacity .15s cubic-bezier(.4, 0, .2, 1);
    white-space: nowrap;
    width: auto;
    z-index: -1;
    transform-origin: bottom left;
    font-family: sans-serif;
    user-select: none;
}


.form-group input:focus+label,
.form-group input.has-value+label,
.form-group textarea:focus+label,
.form-group textarea.has-value+label,
.form-group.is-focused label,
.form-group.has-value label,
.form-group.is-focused label,
.form-group.has-value label {
    transform: scale(0.75) translateY(-39px);
    z-index: 1;
}

.form-group textarea:focus+label,
.form-group textarea.has-value+label {
    top: 30px;
}

.form-group input:focus::-webkit-input-placeholder {
    color: transparent;
}


.form-group .form-control {
    border-radius: 4px;
    color: #1f1f1f;
    font-family: "Google Sans", roboto, "Noto Sans Myanmar UI", arial, sans-serif;
    font-size: 16px;
    height: 28px;
    margin: 1px 1px 0 1px;
    padding: 13px 15px;
    width: 100%;
    /* z-index: 1; */
    line-height: 24px;
    position: relative;
    height: 56px;
    border-color: light-dark(rgb(118, 118, 118), rgb(133, 133, 133));
    transition: all .4s;
    background: transparent;
}

.form-group .form-control:focus {
    border-color: #0b57d0;
    box-shadow: none;
    border-width: 2px;
}

.form-group .form-control:focus+label {
    color: #0b57d0;
}

.forget-pass>a {
    display: inline-block;
    margin-bottom: 3px;
    margin-top: 9px;
    padding: 1px 5px;
    color: #0b57d0;
    border-radius: 4px;
    font-weight: 500;
    letter-spacing: 0.015625rem;
    z-index: 1;
    border: 0;
    cursor: pointer;
    font-size: 0.875rem;
    outline: none;
    position: relative;
}

.forget-pass>a:hover {
    background: rgb(11 87 208 / 8%);
}

.forget-pass p {
    color: #444746;
    font-family: "Google Sans", roboto, "Noto Sans Myanmar UI", arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0rem;
    line-height: 1.4285714286;
    margin-top: 32px;
}

.forget-pass p a {
    color: #0b57d0;
    border-radius: 4px;
    font-weight: 500;
    letter-spacing: 0.015625rem;
    z-index: 1;
    border: 0;
    cursor: pointer;
    font-size: 0.875rem;
    outline: none;
    padding: 0;
    position: relative;
}

.form-group.btn-from {
    display: flex;
    justify-content: end;
    align-items: center;
    -webkit-align-items: center;
    margin-top: 32px;
}

.form-group.btn-from .btn {
    margin-inline-start: 40px;
    background: #0b57d0;
    color: #fff;
    height: 40px;
    border-radius: 50px;
    font-family: "Google Sans", roboto, "Noto Sans Myanmar UI", arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0rem;
    line-height: 1.4285714286;
    padding: 0 24px;
}

.form-group.btn-from .creat-email {
    padding-left: 16px;
    padding-right: 16px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    color: #0b57d0;
    font-family: "Google Sans", roboto, "Noto Sans Myanmar UI", arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0rem;
    line-height: 1.4285714286;
    border-radius: 50px;
}

.form-group.btn-from .creat-email:hover {
    background: rgb(11 87 208 / 4%);
}

.row.login-footer {
    margin: 16px 0;
    align-items: center;
    -webkit-align-items: center;
}

.lang-h .nice-select.niceSelect {
    height: 32px;
    width: 200px;
    border: none;
    padding: 0;
    padding-inline-start: max(16px, 12px);
    border-radius: 8px;
    border: 1px transparent solid;
    direction: ltr;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0rem;
    line-height: 32px;
    /* display: flex; */
    align-items: center;
    color: #1f1f1f;
    font-family: sans-serif;
    margin-inline-start: max(-16px, -12px);
}

.nice-select::after {
    left: auto;
    right: 12px;
    top: 0;
    color: rgb(95, 99, 104);
    font-size: 13px;
    bottom: 0;
    height: 100%;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
}

.lang-h .nice-select.niceSelect:hover {
    background: rgb(68 71 70 / 10%);
}

.lang-h .nice-select.niceSelect.open {
    border-color: #0b57d0;
    border-width: 2px;
}

.nice-select .list {
    top: auto;
    bottom: 109%;
    box-shadow: 0 3px 5px -1px rgba(0, 0, 0, .2), 0 6px 10px 0 rgba(0, 0, 0, .14), 0 1px 18px 0 rgba(0, 0, 0, .12);
    font-family: Roboto, Arial, sans-serif;
    line-height: 1.5rem;
    font-size: 1rem;
    letter-spacing: .00625em;
    font-weight: 400;
    max-height: 322px;
    overflow: hidden;
    overflow-y: auto;
}

.nice-select .list li {
    line-height: 48px;
    height: 48px;
    padding-left: 16px;
    padding-right: 16px;
    color: var(--gm3-sys-color-on-surface, #1f1f1f);
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    align-self: center;
    flex: 1;
    pointer-events: none;
    font-family: "Google Sans", roboto, "Noto Sans Myanmar UI", arial, sans-serif;
    /* line-height: 1.3333333333; */
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.00625rem;
    -webkit-align-items: center;
    border: 3px transparent solid;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
    background-color: rgb(232, 240, 254);
    color: inherit;
}

.nice-select .list li:nth-child(1) {
    border-radius: 4px 4px 0 0;
}

.links-f {
    display: flex;
    justify-content: end;
    margin: 0;
    gap: 4px;
}

.links-f a {
    align-content: center;
    border-radius: 8px;
    color: #1f1f1f;
    display: flex;
    flex-wrap: wrap;
    font-family: "Google Sans", roboto, "Noto Sans Myanmar UI", arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.00625rem;
    line-height: 1.3333333333;
    outline: none;
    padding: 8px 12px;
    text-decoration: none;
    border-radius: 8px;
}

.links-f a:hover {
    background: rgb(68 71 70 / 8%);
}

span#emailOrPhoneError,
span#passwordError {
    align-items: flex-start;
    display: flex;
    font-family: "Google Sans", roboto, "Noto Sans Myanmar UI", arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.00625rem;
    line-height: 1.3333333333;
    margin-top: 2px;
}

/* End Login-h */

/* Start Password-page */

.btn-backLogin {
    align-items: center;
    background: #fff;
    border: 1px solid var(--gm3-sys-color-outline, #747775);
    color: var(--gm3-sys-color-on-surface, #1f1f1f);
    cursor: pointer;
    display: inline-flex;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: .25px;
    max-width: 100%;
    position: relative;
    display: inline-flex;
    border-radius: 16px;
    padding: 0 15px 0 15px;
    padding-inline-end: 8px;
    padding-inline-start: 3px;
    align-items: center;
    -webkit-align-items: center;
    min-height: 31px;
    margin-top: 16px;
}

.btn-backLogin .fa-circle-user {
    margin-inline-end: 8px;
    font-size: 23px;
    padding-top: 2px;
}

.btn-backLogin span {
    font-family: "Google Sans", roboto, "Noto Sans Myanmar UI", arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0rem;
    text-decoration: none;
}

.btn-backLogin .fa-solid.fa-caret-down {
    color: var(--gm3-sys-color-on-surface, #1f1f1f);
    flex-shrink: 0;
    height: auto;
    margin-inline-start: 5px;
    width: 20px;
    transition: transform 0.2scubic-bezier(0.4, 0, 0.2, 1);
}

.showPass {
    padding: 8px 0 0;
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 16px;
    font-family: "Google Sans", roboto, "Noto Sans Myanmar UI", arial, sans-serif;
    font-size: 0.875rem;
    line-height: 1.4285714286;
}

.showPass input {
    width: 18px;
    height: 18px;
    accent-color: #0b57d0;
}

.login-form form .form-group:last-child {
    margin: 0;
}

.user-name-block {
    display: flex;
    justify-content: space-between;
}

.user-name-block .list-right {
    display: flex;
    position: relative;
    align-items: center;
    -webkit-align-items: center;
    gap: 4px;
}

.user-name-block .list-right .date-h {
    font-family: "Google Sans", Roboto, RobotoDraft, Helvetica, Arial, sans-serif;
    font-size: .75rem;
    letter-spacing: normal;
    color: #5e5e5e;
    display: block;
    line-height: 20px;
}

.user-name-block .list-right button {
    background: transparent;
    border: none !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.user-name-block .list-right button::after {
    content: "";
    content: "";
    display: block;
    opacity: 0;
    position: absolute;
    -webkit-transition-duration: .15s;
    transition-duration: .15s;
    -webkit-transition-timing-function: cubic-bezier(0.4,0,0.2,1);
    transition-timing-function: cubic-bezier(0.4,0,0.2,1);
    z-index: -1;
    background: none;
    border-radius: 50%;
    box-sizing: border-box;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    width: 100%;
    height: 100%;
    transition: all .3s;
}

.user-name-block .list-right button:hover::after {
    background-color: rgba(32, 33, 36, .12);
    border: none;
    box-shadow: none;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.more-list {
    position: relative;
}

.more-list .list-sub {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: "Google Sans", Roboto, RobotoDraft, Helvetica, Arial, sans-serif;
    font-size: .875rem;
    padding: 10px 0;
    letter-spacing: normal;
    border: none;
    border-radius: 4px;
    box-shadow: 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12), 0px 5px 5px -3px rgba(0, 0, 0, .2);
    font-family: "Google Sans", Roboto, RobotoDraft, Helvetica, Arial, sans-serif;
    line-height: 20px;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    min-width: 246px;
    display: none;
    z-index: 9;
}

.more-list .list-sub li {
    padding-bottom: 6px;
    padding-top: 6px;
    color: rgb(32, 33, 36);
    padding-left: 28px;
    padding-right: 28px;
}

.more-list .list-sub li a {
    font-size: .875rem;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 8px;
    padding: 1px 0;
}

.more-list .list-sub li:hover {
    background: #e6e5e5;
}

.more-list .list-sub li:hover a {
    color: rgb(32, 33, 36);
}

.more-list .list-sub.active {
    display: block;
}

.download-email {
    background: #f8f8f8;
    padding: 10px 0;
}

.download-email .download-head {
    padding: 16px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 4px #0000001a;
}

.download-email .download-head h3 {
    font-size: 17px;
    margin: 0;
}

.download-email .single-email-head {
    padding: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 4px #0000001a;
    margin: 10px 0;
}

.download-email .single-email-head .list-right button {
    width: auto;
    height: auto;
    font-size: .75rem;
    font-weight: 300;
    color: #666;
    font-family: "Google Sans", Roboto, RobotoDraft, Helvetica, Arial, sans-serif;
}

.download-email .single-email-head .list-right button::after {
    display: none;
}

.download-email .single-email-block .single-email-content {
    max-width: 714px;
    margin: 2rem auto;
    background: #fff;
    padding: 41px;
    border-radius: 14px;
}

.download-email .single-email-block .single-email-content p {
    font-size: 16px;
}

/* End Password-page */