@import url(../css/bootstrap.css);
@import url(../css/all.min.css);
@import url('https://cdn.jsdelivr.net/npm/select2@4.1.0-rc.0/dist/css/select2.min.css');
@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&family=Inter:opsz,wght@14..32,100..900&display=swap');


*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
}

:root {
    --main-color: #0F6939;
    --sub-color: #484848;
    --sec-padding: 80px 0;
}

body {
    font-family: 'Inter', 'Almarai', sans-serif;
    background-color: #FFFFFF;
    font-size: 14px;
    font-weight: 400;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', 'Almarai', sans-serif;
    font-weight: 700;
    font-style: normal;
    margin: 0;
}

p {
    margin: 0;
}

html,
button,
input,
select,
textarea {
    color: #222;
}

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

img {
    vertical-align: middle;

}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}


a,
button {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

p {
    margin: 0;
}

a {
    cursor: pointer !important;
    text-decoration: none !important;
}

a:hover,
a:active,
a:focus,
a:visited {
    text-decoration: none !important;
}

input,
textarea,
a,
button {
    outline: none !important;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.main-wrapper {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    display: flex;
}

.menu-toggle .main-wrapper {
    -webkit-transition: -webkit-transform .0s ease;
    transition: -webkit-transform .0s ease;
    transition: transform .0s ease;
    transition: transform .0s ease,
        -webkit-transform .0s ease;
}

::-webkit-scrollbar {
    width: 6px;
    opacity: 0;
}

::-webkit-scrollbar-thumb {
    background: rgb(206 206 206 / 60%);
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

.bdy-chat::-webkit-scrollbar-thumb {
    background: rgb(206 206 206 / 60%);
    border-radius: 10px;
    display: none;
    transition: overflow 0.3s ease;
}

.bdy-chat:hover::-webkit-scrollbar-thumb {
    display: block;
}

/* Style Aside Menu */

.aside_menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 250px;
    background: #fff;
    border-right: 1px solid rgb(206 206 206 / 50%);
    z-index: 999;
    transition: width .2s;
}

.rtl-style .aside_menu {
    border-left: 1px solid rgb(206 206 206 / 50%);
    border-right: 0;
    right: 0;
    left: auto;
}

.logo-site {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgb(206 206 206 / 30%);
    padding: 0 25px;
    height: 65px;
}

.logo-site a {
    display: inline-block;
}

.logo-site img {
    max-width: 160px;
}

.logo-site .logo-minimize {
    display: none;
}

.menu-toggle {
    cursor: pointer;
    transition: .2s;
    display: flex;
    align-items: center;
    top: 5px;
    position: relative;
    font-size: 13px;
    color: rgb(0 0 0 / 60%);
}

.rtl-style .menu-toggle {
    transform: scale(-1, 1);
}

.main_menu {
    display: flex;
    padding: 20px 0;
    flex-direction: column;
    overflow: auto;
    gap: 10px;
}

.main_menu > li {
    padding: 0 10px;
}

.main_menu > li > a {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    color: var(--sub-color);
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 400;
    position: relative;
    padding: 10px 15px;
}

.main_menu > li.active a {
    background: var(--main-color);
    border-radius: 10px;
    color: #fff;
    font-weight: 500;
}

.main_menu > li > a > i {
    font-size: 20px;
}

.aside_financial .main_menu > li > a > i {
    font-size: 16px;
    color: #494949;
}

.main_menu > li.active a i {
    color: #fff;
}

.main_menu > li > a span {
    position: relative;
}

.main_menu > li > a span small {
    position: absolute;
    font-size: 9px;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 15px;
    color: #DD2323;
    background: url(../images/icon-svg/icon-aside-menu/shape-soon.svg);
    border-radius: 8px;
    padding: 5px 12px;
    text-transform: capitalize;
}

.rtl-style .main_menu > li > a span small {
    margin-right: 15px;
    margin-left: unset;
}

.support-st {
    position: relative;
    padding: 30px 10px 0;
}

.support-st a {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    color: var(--sub-color);
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 400;
    position: relative;
    padding: 10px 15px;
}

.support-st a i {
    font-size: 20px;
}

.card-upgrade {
    background: var(--main-color);
    padding: 100px 30px 30px;
    border-radius: 30px;
}

.card-upgrade figure {
    position: absolute;
    top: -30px;
}

.card-upgrade figure img {
    width: 160px;
}

.txt-Upgrade p {
    color: rgb(255 255 255 / 80%);
    font-size: 14px;
    text-align: center;
    margin-bottom: 10px;
}

.txt-Upgrade h4 {
    color: #fff;
    font-size: 16px;
    text-align: center;
    margin-bottom: 15px;
}

.card-upgrade .btn-site {
    background: #fff;
    border-radius: 12px;
    margin: auto;
}

.card-upgrade .btn-site span {
    color: #000
}

.aside_menu::-webkit-scrollbar {
    width: 4px;
}

.aside_menu::-webkit-scrollbar-track {
    background: transparent;
}

.aside_menu::-webkit-scrollbar-thumb {
    background-color: #E5EAEE;
    border-radius: 4px;
    opacity: 0;
}

.aside_menu.aside-minimize {
    width: 70px;
}

.aside_menu.aside-minimize .logo-site .logo-web,
.aside_menu.aside-minimize .main_menu > li > a span,
.aside_menu.aside-minimize .support-st a span {
    display: none
}

.aside_menu.aside-minimize .logo-site .logo-minimize,
.aside_menu.aside-minimize .main_menu > li a span.icon-menu,
.aside_menu.aside-minimize .support-st a span.icon-menu {
    display: block;
}

.aside_menu.aside-minimize .logo-site {
    justify-content: center;
    padding: 0 5px;
}

.aside_menu.aside-minimize .menu-toggle {
    width: 21px;
    height: 21px;
    border: 1px solid rgb(130 130 130 / 20%);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: -10.5px;
    background: #fff;
    transform: scale(-1);
}

.aside_financial {
    z-index: 99;
    left: 70px;
}

.aside_financial .main_menu {
    height: calc(100vh - 60px);
    gap: 0
}

.aside_financial .main_menu li a {
    border-radius: 5px;
}

.settings_sub_side_menue {
    z-index: 9
}

.global_edit_form_data,
.global_create_form_data {
    min-height: 250px;
}

/* Style Content Body */

.content-body {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding-left: 250px;
    background: rgb(130 130 130 / 5%);
    transition: width .2s;
}

.content-body.content-body-minimize {
    padding-left: 70px
}

.content-body-minimize .container {
    max-width: 100%;
}

.content-body.content-body-minimize .main-header {
    width: calc(100% - 70px);
}

.rtl-style .content-body {
    padding-left: unset;
    padding-right: 250px;
}

.main-content {
    margin-top: 65px;
    position: relative;
    min-height: calc(100vh - 65px);
}

.content-financial {
    padding-left: 320px;
    position: relative;
}

/* Loader */

.cont-loder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    z-index: 9999999;
}

.loader {
    --d: 18px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    color: var(--main-color);
    box-shadow:
        calc(1*var(--d)) calc(0*var(--d)) 0 0,
        calc(0.707*var(--d)) calc(0.707*var(--d)) 0 1px,
        calc(0*var(--d)) calc(1*var(--d)) 0 1.3px,
        calc(-0.707*var(--d)) calc(0.707*var(--d)) 0 1.5px,
        calc(-1*var(--d)) calc(0*var(--d)) 0 1.7px,
        calc(-0.707*var(--d)) calc(-0.707*var(--d))0 2px,
        calc(0*var(--d)) calc(-1*var(--d)) 0 2.5px;
    animation: l27 1s infinite steps(8);
}

@keyframes l27 {
    100% {
        transform: rotate(1turn)
    }
}

/* Style Button */

.sec-head {
    position: relative;
    margin-bottom: 20px;
    align-items: center;
}

.sec-head h2 {
    position: relative;
    display: inline-block;
    color: #000;
    font-size: 16px;
}

.sec-head h2 span {
    color: var(--sub-color);
    font-size: 10px;
    border: 1px solid rgb(0 0 0 / 10%);
    border-radius: 10px;
    width: 25px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    right: -40px;
    transform: translateY(-50%)
}

.rtl-style .sec-head h2 span {
    left: -40px;
    right: unset;
}

.sec-head ul {
    align-items: center;
    gap: 10px;
}

.btn-site {
    height: 40px;
    font-size: 15px;
    padding: 12px 25px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    justify-content: center;
    background: var(--main-color);
    width: max-content;
    position: relative;
    overflow: hidden;
}

.btn-site:before {
    background: #EBEBEB;
    position: absolute;
    content: "";
    top: 0;
    height: 110%;
    left: -10px;
    width: 0%;
    transform: skew(-10deg);
    transition-duration: .6s;
    z-index: 0;
}

.btn-site:hover:before {
    position: absolute;
    content: "";
    top: 0;
    left: -10px;
    width: 200%;
    z-index: 0
}

.btn-site span {
    color: #fff;
    position: relative;
    font-weight: 400;
    font-size: 13px;
    display: flex;
    align-items: center;
}

.btn-site small {
    color: #fff;
    position: relative;
    font-weight: 400;
    font-size: 13px;
    align-items: center;
    gap: 10px
}

.btn-site:hover span {
    color: var(--main-color);
}

.btn-site span i,
.btn-site span svg {
    font-size: 15px;
}

.rtl-style .btn-site span i,
.rtl-style .btn-site span svg {
    margin-left: 8px;
    margin-right: unset;
}

.btn-export {
    border: 1px solid rgb(130 130 130 / 30%);
    background: transparent;
}

.btn-export span {
    color: rgb(0 0 0 / 60%);
}

/* Style Main Header */

.main-header {
    position: fixed;
    width: calc(100% - 250px);
    top: 0;
    height: 65px;
    background: #fff;
    border-bottom: 1px solid rgb(206 206 206 / 30%);
    z-index: 99;
}

.content-financial .main-header {
    width: calc(100% - 320px);
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding-right: var(--bs-gutter-x, 1rem);
    padding-left: var(--bs-gutter-x, 1rem);
}

.dta-content {
    position: relative;
}

.dta-content h5 {
    color: #000;
    font-size: 18px;
    margin-bottom: 5px;
}

.dta-content p {
    color: #828282;
    font-size: 12px;
    display: flex;
    align-items: center;
}

.dta-content p i {
    margin-right: 8px;
    width: 12px;
    height: 12px;
}

.rtl-style .dta-content p i {
    margin-left: 8px;
    margin-right: unset;
}

.lst-menu {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.lst-menu > ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.lst-menu > ul > li > a {
    position: relative;
    color: #828282;
    font-size: 20px;
}

.lst-menu > ul > li.active > a,
.lst-menu > ul > li > a.dropdown-toggle.show {
    color: var(--main-color);
}

.lst-menu > ul > li.active > a:before,
.lst-menu > ul > li > a.dropdown-toggle.show:before {
    content: "";
    background: #FAFAFA;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.tg-notif:before {
    content: "";
    background: #DD2323;
    border: 2px solid #fff;
    width: 8.5px;
    height: 8.5px;
    border-radius: 50%;
    position: absolute;
    top: 1px;
    right: 0;
}

.dropdown:nth-child(2) .tg-notif:before {
    right: -2px;
    top: -1px;
}

.rtl-style .tg-notif:before {
    right: unset;
    left: 0;
}

.rtl-style .dropdown:nth-child(2) .tg-notif:before {
    left: -2px;
    right: auto;
}

.lst-menu .dropdown-toggle::after {
    display: none;
}

.lst-proflie {
    margin-left: 20px;
    position: relative;
    padding-right: 20px;
}

.rtl-style .lst-proflie {
    margin-left: unset;
    margin-right: 20px;
    padding-right: unset;
    padding-left: 20px;
}

.lst-proflie:before {
    content: "";
    background: rgb(206 206 206 / 50%);
    width: 1px;
    height: 35px;
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
}

.rtl-style .lst-proflie:before {
    left: auto;
    right: -25px;
}

.lst-proflie .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lst-proflie .dropdown-toggle:before {
    content: "";
    background: url(../images/icon-svg/icon-aside-menu/icon-angles-up-down.svg);
    background-size: 100% 100%;
    width: 7px;
    height: 17px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -20px;
}

.rtl-style .lst-proflie .dropdown-toggle:before {
    left: -20px;
    right: auto;
}

.lst-proflie .dropdown-toggle figure {
    margin-bottom: 0;
    width: 35px;
    height: 35px;
}

.lst-proflie .dropdown-toggle figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    object-position: top;
}

.lst-proflie .txt-profile h5 {
    font-size: 13px;
    color: #000;
}

.lst-proflie .txt-profile p {
    font-size: 10px;
    color: var(--sub-color);
}

.main-header-mobile {
    display: none;
}

.dropdown-menu.dropmenu-profile {
    min-width: 260px;
    padding: 20px;
    transform: translate(0, 47px) !important;
}

.user-prof {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgb(206 206 206 / 50%)
}

.user-prof figure {
    width: 40px;
    height: 40px;
    margin-bottom: 0;
    background: #eee;
    border-radius: 50%;
}

.user-prof figure img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: contain;
    object-position: center;
}

.txt-user-prof {
    width: calc(100% - 50px);
}

.txt-user-prof h5 {
    color: #000;
    display: inline-block;
    font-size: 14px;
    margin-bottom: 1px;
    position: relative;
}

.txt-user-prof h5 span {
    display: block;
    padding: 2px 4px;
    background: rgb(15 105 57 / 15%);
    color: var(--main-color);
    font-size: 12px;
    border-radius: 25px;
    border: 1px solid var(--main-color);
    position: absolute;
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
    line-height: 1;
}

.txt-user-prof p {
    color: #828282;
    font-size: 12px;
}

.lst-prof li {
    display: block;
}

.lst-prof li.logout {
    border-top: 1px solid rgb(206 206 206 / 50%);
    margin-top: 10px;
    padding-top: 10px;
}

.lst-prof li a {
    position: relative;
    color: #000;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lst-prof li a:hover:before {
    content: "";
    background-color: rgb(206 206 206 / 30%);
    width: 120%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.lst-prof li a i {
    font-size: 16px;
}

.dropdown-menu.dropdown-big {
    width: 390px;
    border-radius: 10px;
    box-shadow: 0 0 4px rgb(0 0 0 / 16%);
    right: -20px !important;
    top: 18px !important;
}

.sec-head-dropdown {
    position: relative;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgb(206 206 206 / 30%);
}

.sec-head-dropdown a {
    color: #828282;
}

.body-dropdown {
    position: relative;
    padding: 15px 20px;
    height: 450px;
    overflow: auto;
}

.sec-notification:not(:last-child),
.sec-chat:not(:last-child),
.sec-reminder:not(:last-child) {
    border-bottom: 1px solid rgb(206 206 206 / 30%);
}

.sec-notification:not(:first-child),
.sec-chat:not(:first-child),
.sec-reminder:not(:first-child) {
    padding-top: 20px;
}

.sec-notification > span,
.sec-chat > span,
.sec-reminder > span {
    color: var(--sub-color);
    font-size: 12px;
    display: block;
    margin-bottom: 10px;
}

.item-notification,
.item--chat,
.item-reminder {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.item-reminder {
    align-items: flex-start;
}

.item-notification figure,
.item--chat figure,
.item-reminder figure {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-bottom: 0;
    position: relative;
}

.item-notification figure img,
.item--chat figure img,
.item-reminder figure img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.status-noti {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -3px;
    right: -3px
}

.dtls-noti,
.dtls-chat,
.dtls-reminder {
    width: calc(100% - 45px);
    padding-left: 15px;
}

.dtls-chat h6,
.dtls-reminder h6 {
    color: #000;
    font-size: 12px;
    margin-bottom: 5px;
    font-weight: 600;
}

.dtls-noti p,
.dtls-chat p,
.dtls-reminder p {
    color: #000;
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dtls-chat p,
.dtls-reminder p {
    -webkit-line-clamp: 1;
}

.dtls-noti p span {
    font-weight: 600;
}

.dtls-noti time,
.dtls-chat time,
.dtls-reminder time {
    font-size: 10px;
    color: var(--sub-color);
    display: block;
    text-transform: capitalize;
}

.dtls-chat span {
    background: #DD2323;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 8px;
    font-weight: 700;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.date-reminder {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 5px;
}

.date-reminder > div {
    display: flex;
    align-items: center;
    gap: 5px;
}

.date-reminder .icon {
    width: 13px;
    height: 13px;
}

.date-reminder p {
    color: #000;
    font-size: 10px;
    margin-bottom: 0;
}

.see-all-dropdown {
    position: relative;
    padding: 15px;
    text-align: center;
    border-top: 1px solid rgb(206 206 206 / 30%);
}

.see-all-dropdown a {
    color: #000;
    font-size: 12px;
    text-transform: capitalize;
}

/* Style Sub Menu */

.sub-header {
    display: flex;
    align-items: center;
    background: #fff;
    height: 55px;
    width: 100%;
    border-bottom: 1px solid rgb(206 206 206 / 30%);
}

.sub-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: var(--bs-gutter-x, 1rem);
    padding-left: var(--bs-gutter-x, 1rem);
}

.form-search .form-group {
    position: relative;
}

.form-search .form-group .form-control {
    border: 0;
    padding-left: 20px;
    background: transparent;
}

.rtl-style .form-search .form-group .form-control {
    padding-left: unset;
    padding-right: 20px;
}

.form-search .form-group .form-control::placeholder {
    color: rgb(130 130 130 / 60%);
    font-size: 14px;
}

.form-search .form-group .form-control:focus {
    box-shadow: none;
}

.form-search .form-group .icon {
    color: #828282;
    font-size: 13px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.rtl-style .form-search .form-group .icon {
    left: auto;
    right: 0;
}

.filter-proj {
    display: flex;
    align-items: center;
    gap: 30px;
}

.filter-proj > li {
    position: relative;
}

.filter-proj > li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgb(0 0 0 / 60%) !important;
    font-size: 13px;
}

.filter-proj > li a i {
    font-size: 17px;
}

.filter-proj > li:not(:last-child):before {
    content: "";
    background: rgb(206 206 206 / 50%);
    width: 1px;
    height: 35px;
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
}

.rtl-style .filter-proj > li:not(:last-child):before {
    left: -15px;
    right: auto;
}

.filter-proj .icon {
    font-size: 17px;
}

.filter-proj .dropdown {
    padding-right: 20px;
}

.rtl-style .filter-proj .dropdown {
    padding-left: 20px;
    padding-right: unset;
}

.dropdown .dropdown-toggle::after {
    border: 0;
    font: normal normal normal 13px / 1 FontAwesome;
    content: "\f107";
    font-size: 13px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

.rtl-style .dropdown .dropdown-toggle::after {
    right: auto;
    left: 0;
}

.sub-header .dropdown-menu {
    top: 25px !important;
}

.filter-proj .dropdown-menu {
    transform: translate(0, 13px) !important;
}

.dropdown-filter {
    width: 390px;
    border-radius: 10px;
    box-shadow: 0 0 4px rgb(0 0 0 / 16%);
    right: -20px !important;
    top: 18px !important;
}

.form-filter {
    padding: 15px 20px;
}

.form-filter .form-group {
    position: relative;
    margin-bottom: 10px;
    width: 100%;
}

.form-filter .form-group > label {
    color: #000;
    font-size: 13px;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
    text-transform: capitalize;
}

.form-filter .form-group .form-control {
    height: 46px;
    font-size: 14px;
    border: 1px solid rgb(206 206 206 / 40%);
    border-radius: 10px;
}

.form-filter .select2-container--default .select2-selection--multiple,
.form-filter .select2-container--default .select2-selection--single {
    padding-left: 5px;
}

.form-filter ul {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    margin-top: 30px;
}

.form-filter ul li {
    flex: 0 0 auto;
    width: 50%;
}

.form-filter ul li .btn-site {
    width: 100%;
}

.form-filter ul li .btn-site i,
.form-filter ul li .btn-site svg {
    font-size: 14px;
}

/* Style Dashboard */

.calendar-wroke {
    width: 100%;
    background-color: #fff;
    padding: 20px;
}

.calendar-wroke .head-calender {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(206, 206, 206, .7);
}

.head-calender h4 {
    color: #000;
    font-size: 17px;
    margin-bottom: 5px;
}

.head-calender p {
    display: flex;
    align-items: center;
    grid-gap: 8px;
    color: #828282;
    font-size: 13px;
}

.head-calender p .icon {
    width: 12px;
    height: 12px;
}

.head-calender .d-flex {
    display: flex;
    align-items: center;
    gap: 15px;
}

.head-calender .d-flex .form-control {
    position: relative;
    border: 1px solid rgb(206 206 206 / 30%);
    border-radius: 10px;
    padding: 10px 35px 10px 20px;
    font-size: 14px;
    width: 160px;
}

.head-calender .d-flex span::after {
    border: 0;
    font: normal normal normal 13px / 1 FontAwesome;
    content: "\f107";
    font-size: 12px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
}

.btn-ellipsisi {
    color: rgb(0 0 0 / 60%);
}

.btn-ellipsisi:hover {
    color: #000;
}

.btn-ellipsisi::after {
    display: none;
}

.btn-site.btn-ellipsisi {
    border: 1px solid rgb(206 206 206 / 30%);
    background: #fff;
    padding: 12px 15px;
}

.btn-site.btn-ellipsisi span {
    color: rgb(0 0 0 / 60%);
}

.body-calender {
    position: relative;
    display: flex;
    overflow: hidden;
}

.timeline-calender {
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(206, 206, 206, .5);
    width: 80px;
}

.timeline-calender span {
    display: block;
    position: relative;
    padding: 20px 0;
    font-size: 12px;
    color: rgb(0 0 0 / 40%)
}

.timeline-calender span:before,
.timeline-calender span:after {
    content: "";
    border: 0.1px solid rgba(206, 206, 206, .3);
    width: 1000%;
    height: 1px;
    position: absolute;
    left: 80px;
    top: 50%;
    transform: translateY(-50%);
}

.timeline-calender span:after {
    bottom: -2px;
    top: auto;
}

.cont-event {
    width: calc(100% - 80px);
}

.item-event {
    display: flex;
    align-items: center;
    padding: 5px;
    gap: 5px;
}

.card-event {
    position: relative;
    width: max-content;
    max-width: 100%;
    background: rgba(241, 251, 245, 1);
    border-left: 5px solid var(--main-color);
    border-radius: 0 5px 5px 0;
    padding: 15px;
}

.card-event h6 {
    color: #000;
    font-size: 10px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.card-event p {
    color: #000;
    font-size: 8px;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-event time {
    color: #828282;
    font-size: 7px;
}

.status {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
    gap: 40px;
}

.status span {
    position: relative;
    display: block;
}

.status span:before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: -15px;
    transform: translateY(-50%);
}

.status span.new:before {
    background: #0095FF;
}

.status span.in-progress:before {
    background: #FF862F;
    ;
}

.status span.completed:before {
    background: #0F6939;
}

.status span.cancel:before {
    background: #DD2323;
}


.fc-theme-standard td,
.fc-theme-standard th {
    border: 1px solid rgb(206 206 206 / 30%) !important;
    background: #fff;
}

.fc .fc-timegrid-axis-cushion,
.fc .fc-timegrid-slot-label-cushion {
    color: rgb(0 0 0 / 40%);
    font-size: 13px;
    padding: 10px !important;
}

.fc-theme-standard .fc-scrollgrid {
    border: 0 !important;
}




.cont-chart {
    background: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    margin-top: 15px;
}

.head-chart {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px
}

.head-chart h4 {
    font-size: 15px;
}

.head-chart span {
    font-size: 12px;
    color: #828282;
}

.head-chart .form-select {
    font-size: 13px;
    border: 1px solid rgb(206 206 206 / 30%);
    border-radius: 8px;
    padding: 8px 30px 8px 10px;
    background-position: right 0.50rem center;
}

.editor-container.editor-dash {
    margin-top: 15px;
}

.customize-dash {
    position: relative;
    background: #fff;
    padding: 60px;
    text-align: center;
    border-radius: 10px;
    margin-top: 15px;
}

.customize-dash figure {
    margin-bottom: 30px;
    text-align: center;
}

.customize-dash p {
    color: #000;
    font-size: 12px;
    line-height: 1.2;
    margin-bottom: 30px;
}

.customize-dash .btn-site {
    margin: auto;
}

.cont-calendar {
    position: relative;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

.head-calender-task {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.head-calender-task h5 {
    color: #000;
    font-size: 17px;
}

.head-calender-task .btn-site {
    background: #fff;
    border: 1px solid rgb(206 206 206 / 30%);
}

.head-calender-task .btn-site span {
    color: #000;
}

.dynamic-calendar {
    background-color: #fff;
    border: 1px solid rgb(206 206 206 / 30%);
    border-radius: 25px;
    width: 100%;
    padding: 20px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid rgb(206 206 206 / 30%);
    padding-bottom: 20px;
}

.calendar-header h6 {
    color: var(--main-color);
    font-size: 14px;
}

.calendar-header h6 span {
    font-weight: 400;
}

.calendar-header button {
    background: none;
    border: none;
    cursor: pointer;
    color: #000;
    font-size: 12px;
}

.calendar-days {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.calendar-day {
    flex: 1;
    text-align: center;
    font-weight: bold;
}

.calendar-dates {
    display: flex;
    flex-wrap: wrap;
}

.calendar-date {
    flex: 0 0 calc(100% / 7);
    text-align: center;
    padding: 10px 0;
    border-radius: 5px;
    position: relative;
    height: 46.71px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.calendar-date.empty {
    visibility: visible;
    color: #d0d0d0;
}

.event-dot {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background-color: red;
    border-radius: 50%;
}

.calendar-date.current-day {
    background-color: var(--main-color);
    color: #fff;
    border-radius: 50%;
}

.event-list {
    margin-top: 5px;
    font-size: 0.8em;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
}

.event-list span {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

.event-list .new {
    background-color: #0095FF;
}

.event-list .progress {
    background-color: #FF862F;
}

.event-list .completed {
    background-color: #0F6939;
}

.event-list .cancel {
    background-color: #DD2323;
}

.event-list div {
    margin: 2px 0;
    padding: 2px;
    border-radius: 3px;
    background-color: #f0f0f0;
}

.lst-tasks-calendar {
    margin-top: 15px;
}

.lst-tasks-calendar > span {
    color: rgb(0 0 0 / 40%);
    display: block;
    margin-bottom: 10px;
}

.item-task-dash {
    position: relative;
    border: 1px solid rgb(206 206 206 / 30%);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
}

.item-task-dash h6 {
    color: #000;
    font-size: 12px;
    padding-inline-end: 95px;
}

.item-task-dash small {
    color: #828282;
    font-size: 9px;
    display: block;
    margin-bottom: 10px;
}

.item-task-dash p {
    color: #000;
    font-size: 11px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.item-task-dash p a {
    color: #000;
    font-weight: 700;
}

.item-task-dash span {
    position: absolute;
    top: 20px;
    right: 20px;
    border-radius: 10px;
    height: 22px;
    padding: 5px 15px;
    font-size: 10px;
}

.item-task-dash span.tag-new {
    background: rgba(0, 149, 255, .1);
    color: #0095FF
}

.item-task-dash span.tag-progress {
    background: rgba(255, 134, 47, .1);
    color: rgba(255, 134, 47, 1)
}

/* Style Projects */

.body-content {
    position: relative;
    padding: 10px 0 40px;
    min-height: calc(100vh - 120px);
}

.projectSection {
    position: relative;
    min-height: calc(100vh - 120px);
}

.cont-projects {
    position: relative;
    padding-top: 20px;
    border-radius: 15px;
    background: #fff;
    min-height: calc(100vh - 160px);
}

.cont-projects .sec-head {
    padding: 0 15px
}

.body-content .container {
    padding-right: var(--bs-gutter-x, 1rem);
    padding-left: var(--bs-gutter-x, 1rem);
}

.cont-empty {
    position: relative;
    padding: 100px 0;
    text-align: center;
    width: 60%;
    margin: 0 auto;
}

.cont-empty figure {
    margin-bottom: 20px;
}

.cont-empty figure img {
    width: 150px;
}

.cont-empty .txt-empty h5 {
    color: #000;
    font-size: 17px;
    margin-bottom: 8px;
}

.cont-empty .txt-empty p {
    margin-bottom: 20px;
    font-size: 14px;
    color: #4F4F4F;
}

.cont-empty .txt-empty .btn-site {
    margin: 0 auto;
}

.table-container {
    max-width: 100%;
    margin: auto;
}

.table-container table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
    table-layout: auto;
}

.table-container thead th {
    background-color: rgb(130 130 130 / 5%);
    padding: 13px 21px;
    color: var(--sub-color);
    font-size: 12px;
    font-weight: 400;
    text-transform: capitalize;
}

.table-container tbody td {
    padding: 21px;
    color: #000;
    font-size: 12px;
    border: 1px solid rgb(206 206 206 / 30%);
    border-top: 0;
    /*max-width: 200px;*/
}

.table-container tbody td strong {
    font-weight: 500;
}

.info-proj {
    display: flex;
    gap: 10px;
}

.info-proj figure {
    width: 32px;
    height: 32px;
    margin-bottom: 0;
}

.info-proj figure img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
}

.txt-info-proj {
    width: calc(100% - 42px);
    position: relative;
}

.txt-info-proj h6 {
    color: #000;
    font-size: 13px;
    font-weight: 600;
}

.txt-info-proj p {
    color: var(--sub-color);
    font-size: 12px;
}

.status-proj {
    position: relative;
    padding: 5px 10px 5px 20px;
    border-radius: 5px;
    font-size: 12px;
    min-width: 110px;
    border: 1px solid var(--status-color, rgba(0, 0, 0, 0.2));
    color: var(--text-color, #000);
    text-align: center;
    display: inline-block;
}

.status-proj:before {
    content: "";
    background: var(--text-color, #000);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.status-proj.in-progress {
    color: #FF862F;
    border: 1px solid rgb(255 134 47 / 20%);
}

.status-proj.in-progress:before {
    content: "";
    background: #FF862F;
}

.status-proj.not-started {
    color: var(--sub-color);
    border: 1px solid #E6E6E6;
}

.status-proj.completed {
    color: #1ECF70;
    border: 1px solid rgb(30 207 112 / 20%);
}

.status-proj.completed:before {
    content: "";
    background: #1ECF70;
}

.pagination-wrapper {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: end;
}

.page-link {
    color: rgb(0 0 0 / 60%);
    border: 1px solid rgb(206 206 206 / 30%);
}

.page-item.active .page-link {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.page-link:focus,
.page-link:hover {
    z-index: 3;
    color: #000;
    background-color: #e9ecef;
    outline: 0;
    box-shadow: none;
}

/* Modal Add Project */

.modal-header {
    padding: 20px 30px;
    width: 100%;
}

.modal-header h5 {
    font-size: 18px;
    color: #000;
}

.modal-body {
    padding: 40px 30px;
}

.modal .modal-dialog {
    transform: none;
    max-width: 1020px;
}

.form-modal {
    position: relative;
}

.form-modal .d-flex .form-group:first-child {
    padding-right: 35px;
}

.form-modal .d-flex .form-group {
    flex: 0 0 auto;
    width: 50%;
}

.form-modal .form-group {
    position: relative;
    margin-bottom: 24px;
    width: 100%;
}

.form-modal .form-group > label {
    color: #000;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.required {
    position: relative;
}

.required:before {
    content: "*";
    color: #ff0000;
    font-size: 13px;
    position: absolute;
    top: 0;
    right: -10px;
}

.form-modal .form-group .form-control {
    height: 46px;
    font-size: 14px;
    border: 1px solid rgb(206 206 206 / 40%);
    border-radius: 10px;
    padding-left: 55px !important;
}

.select2-container--default .select2-selection--multiple,
.select2-container--default .select2-selection--single {
    min-height: 46px;
    font-size: 14px;
    border: 1px solid rgb(206 206 206 / 40%);
    border-radius: 10px;
    padding-left: 55px;
    padding-bottom: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid rgb(206 206 206 / 40%);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #000;
    line-height: 46px;
}

.select2-results__option span img {
    height: 22px;
    border-radius: 50%;
}

.form-group .custom-select {
    position: relative;
    width: 100%;
    padding: 5px;
    min-height: 46px;
    font-size: 14px;
    border: 1px solid rgb(206 206 206 / 40%);
    border-radius: 10px;
    padding-left: 55px;
}

.selected-items {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    cursor: text;
}

.selected-items .tag {
    background-color: rgb(206 206 206 / 20%);
    border-radius: 6px;
    padding: 7px 30px 7px 7px;
    position: relative;
    height: max-content;
    display: flex;
    align-items: center;
    gap: 8px;
}

.selected-items .tag img {
    width: 22px;
    height: 22px;
    border-radius: 50%;
}

.selected-items .tag .remove {
    background-color: transparent;
    border: 0;
    border-radius: 0;
    color: rgb(0 0 0 / 60%);
    font-size: 18px;
    font-weight: 500;
    padding: 0;
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer
}

.selected-items input::placeholder {
    font-size: 13px;
}

#searchBox {
    padding: 5px;
    border: none;
    outline: none;
    font-size: 16px;
    background: transparent;
}

.form-group .custom-select.open {
    border-radius: 10px 10px 0 0 !important;
}

.options-list {
    list-style: none;
    border: 1px solid rgb(206 206 206 / 40%);
    border-radius: 0 0 8px 8px;
    display: none;
    margin-top: 5px;
    position: absolute;
    width: calc(100% + 1px);
    background: #fff;
    max-height: 220px;
    overflow-y: auto;
    z-index: 10;
    left: -0.5px;
    box-shadow: 0px 26px 50px 0px rgba(82, 63, 105, 0.15);
}

.options-list li {
    padding: 10px;
    cursor: pointer;
}

.options-list li:hover {
    background: rgb(206 206 206 / 30%);
    color: #000;
}

.form-modal .form-group textarea.form-control {
    height: 245px;
    padding: 15px !important;
}

.form-modal .form-group .form-control::placeholder {
    color: rgb(0 0 0 / 30%);
    font-size: 14px;
}

.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 0.25px rgb(15 105 57 / .25);
}

.form-modal .form-group > i {
    position: absolute;
    top: 45px;
    left: 15px;
    font-size: 17px;
    color: rgb(0 0 0 / 40%);
}

.form-modal .form-group:before {
    content: "";
    background: rgb(206 206 206 / 50%);
    width: 1px;
    height: 35px;
    position: absolute;
    left: 44px;
    top: 35.5px;
    z-index: 1;
}

.form-modal .form-group.notbf:before {
    display: none;
}

.form-modal .form-group .errorSpan {
    position: absolute;
    font-size: 10px !important;
    top: 5px;
    right: 35px;
}

.btn-attach {
    background: rgba(206, 206, 206, 20%);
    border-radius: 6px;
    font-size: 13px;
    color: #000;
    padding: 7px 12px
}

.upload-label.form-control {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.select-name {
    font-size: 14px;
    color: #000;
}

.notes {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#uploadedFiles {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.file-item {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(206, 206, 206, 15%);
    border-radius: 10px;
    padding: 8px 50px 8px 15px;
    width: calc(33.33333% - 20px);
}

.file-item img {
    width: 35px;
    height: 35px;
    object-fit: cover;
    margin-right: 10px;
    border-radius: 8px;
}

.file-item span {
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 500;
    font-size: 13px;
    color: #000;
}

.file-item .remove-file {
    color: #333;
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}

.form-modal .form-group .logo-upload-container {
    height: 245px;
    padding: 15px;
}

.logo-label {
    width: 100%;
    display: block;
}

.logo-label .drag-drop {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(206, 206, 206, 0.08);
    border: 2px dashed rgba(206, 206, 206, 0.4);
    border-radius: 10px;
    width: 100%;
    height: 150px;
    padding: 25px 0;
    margin-bottom: 20px;
}

.logo-label .btn-site {
    margin: 0 auto;
}

.logo-label .drag-drop .drag-drop-img {
    width: 28px;
    height: 28px;
    opacity: 20%;
}

.logo-label .drag-drop > span {
    display: block;
    margin: 10px 0;
    color: var(--sub-color);
    font-size: 12px;
    font-weight: 500;
}

.logo-item {
    position: relative;
    width: 100px;
    height: 110px;
}

.logo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.remove-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F8F8F8;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    color: #333;
    position: absolute;
    top: -5px;
    right: -15px;
}

.btn-modal {
    display: flex;
}

.btn-modal li {
    flex: 0 0 auto;
    width: 50%;
}

.btn-modal li:first-child {
    padding-right: 35px;
}

.btn-modal .btn-site {
    width: 100%;
    height: 46px;
    text-align: center;
}

.btn-site.btn-cancel {
    background: rgb(206 206 206 / 20%);
}

.btn-site.btn-cancel span {
    color: #000
}

.checkbox-role .cbx {
    border: 0;
    gap: 10px
}

.select2-container {
    width: 100% !important
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 1px solid rgb(206 206 206 / 30%);
    min-height: 46px;
    outline: 0;
    padding: 0 50px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: rgb(206 206 206 / 20%);
    border: 0;
    border-radius: 6px;
    margin-left: 5px;
    margin-top: 5px;
    padding: 7px 30px 7px 7px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    background-color: transparent;
    border: 0;
    border-radius: 0;
    color: rgb(0 0 0 / 60%);
    font-size: 18px;
    font-weight: 500;
    padding: 0;
    right: 10px;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
}

.select2-selection__choice__display span img {
    border-radius: 50%;
    width: 22px;
    height: 22px;
    object-fit: cover;
}

.select2-container .select2-search--inline .select2-search__field {
    height: 38px;
    line-height: 38px;
}

.select2-container--default .select2-results__option--selected {
    background-color: rgb(206 206 206 / 30%);
    border-bottom: 0;
}

.select2-dropdown {
    border: 1px solid rgb(206 206 206 / 30%);
    border-radius: 6px;
}

.select2-results__option {
    font-size: 12px;
    padding: 10px 30px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow:before {
    border: 0;
    font: normal normal normal 14px / 1 FontAwesome;
    content: "\f107";
    color: #343a40;
    position: absolute;
    top: 15px;
    right: 10px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none
}

.select2-container--default .select2-results__option--selected {
    background-color: rgb(206 206 206 / 30%);
    border-bottom: 0;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: rgb(206 206 206 / 30%);
    color: #000;
}

/* Style Project Overview */

.name-proj {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 50%;
}

.name-proj figure {
    margin-bottom: 0;
    width: 40px;
    height: 40px;
}

.name-proj figure img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.txt-name-proj {
    width: calc(100% - 50px);
}

.txt-name-proj h5 {
    color: #000;
    font-size: 17px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.txt-name-proj p {
    font-size: 12px;
    color: var(--sub-color);
}

.str-header ul {
    display: flex;
    align-items: center;
    gap: 8px;
}

.str-header ul li a {
    position: relative;
    padding: 10px;
    height: 55px;
    color: var(--sub-color);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: capitalize;
}

.str-header ul li.active a {
    color: #000;
    border-bottom: 2px solid var(--main-color);
}

.str-header ul li a i {
    fill: var(--sub-color);
    font-size: 18px;
}

.str-header ul li.active a i {
    fill: #000;
}

.opt-proj {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lst-member {
    display: flex;
    align-items: flex-end;
}

.lst-member figure {
    margin-bottom: 0;
    position: relative;
    width: 30px;
    height: 30px;
    margin-left: -10px;
}

.lst-member figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 50%;
}

.lst-member span {
    background: var(--main-color);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -10px;
    position: relative;
    z-index: 1;
}

.btn-member,
.btn-share {
    border: 1px solid rgb(206 206 206 / 30%);
    background: #fff;
    padding: 12px 15px;
}

.btn-member span,
.btn-share span {
    color: rgb(0 0 0/ 60%);
}

.dropdown .dropdown-toggle.btn-member::after,
.dropdown .dropdown-toggle.btn-site::after {
    display: none;
}

.welcome-customize {
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    margin-bottom: 15px;
}

.txt-welc h5 {
    font-size: 20px;
    color: #000;
    margin-bottom: 10px;
}

.txt-welc p {
    color: #000;
    font-size: 14px;
    line-height: 1.8;
    width: 50%;
    margin: 0 auto 30px;
}

.txt-welc p span {
    color: var(--main-color);
}

.txt-welc .btn-site {
    margin: 0 auto;
}

.str-date {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    color: #000;
    font-size: 14px;
    position: absolute;
    top: 15px;
    right: 15px;
}

.str-date svg {
    color: var(--sub-color);
    font-size: 17px;
}

.item-feature {
    position: relative;
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 15px;
}

.txt-feat span {
    display: block;
    font-weight: 500;
    color: var(--sub-color);
    font-size: 14px;
    margin-bottom: 10px;
}

.txt-feat h3 {
    color: #000;
    font-size: 21px;
    margin-bottom: 30px;
}

.txt-feat p {
    display: flex;
    align-items: center;
    grid-gap: 8px;
    color: var(--sub-color);
    font-size: 14px;
}

.txt-feat .icon {
    width: 12px;
    height: 12px;
}

.arrow-feat {
    background: url(../images/arrow-feat.svg);
}

.arrow-down-feat {
    background: url(../images/arrow-down-feat.svg);
}

.ups strong {
    color: var(--main-color);
}

.decline strong {
    color: #DD2323;
}

.item-feature figure {
    background: rgb(130 130 130 / 5%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    position: absolute;
    top: 20px;
    right: 20px;
}

.editor-container {
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 25px 20px;
    margin: auto;
}

.editor-container > span {
    color: #000;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
}

.editor-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.editor-toolbar button {
    background: transparent;
    cursor: pointer;
    font-size: 14px;
}

.editor-toolbar button i {
    margin: 0;
}

.font-size-control {
    display: flex;
    align-items: center;
    gap: 15px;
}

.font-size-display {
    font-size: 14px;
    font-weight: bold;
    min-width: 30px;
    text-align: center;
}

.emoji-picker {
    position: relative;
}

.emoji-menu {
    display: none;
    position: absolute;
    top: 40px;
    left: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    max-width: 200px;
    z-index: 10;
}

.emoji-menu span {
    font-size: 24px;
    cursor: pointer;
    margin: 5px;
    transition: transform 0.2s;
}

.emoji-menu span:hover {
    transform: scale(1.2);
}

.editor {
    border: 1px solid rgb(206 206 206 / 30%);
    border-radius: 10px;
    height: 270px;
    outline: none;
    padding: 20px;
    font-size: 14px;
    line-height: 1.7;
    color: #000;
    margin-bottom: 15px;
}

.abt-proj {
    position: relative;
    background: #fff;
    border-radius: 12px;
}

.abt-proj > div {
    padding: 20px;
}

.abt-proj > div:not(:last-child) {
    position: relative;
}

.abt-proj > div:not(:last-child):before {
    content: "";
    background: rgb(206 206 206 / 30%);
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.stus-proj strong {
    display: block;
    margin-bottom: 10px;
    color: #000;
}

.list-status {
    display: flex;
    flex-wrap: wrap;
}

.list-status li {
    flex: 0 0 auto;
    width: 50%;
    padding-right: 15px;
    margin-bottom: 15px;
}

.list-status li:nth-child(even) {
    padding-right: 0;
}

.list-status li:nth-child(3),
.list-status li:nth-child(4) {
    margin-bottom: 0;
}

.list-status .cbx span {
    background: transparent;
}

.list-status .inp-cbx:checked + .cbx span {
    border-color: transparent;
    background: transparent;
}

.list-status .cbx span svg {
    stroke: var(--main-color);
}

.list-status .cbx p {
    position: relative;
    padding-left: 20px;
}

.list-status .cbx p:before {
    content: "";
    background-color: var(--bg-color, transparent);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}


.list-status .cbx[for="progress"] p:before {
    background: #FF862F;
}

.list-status .cbx[for="completed"] p:before {
    background: #1ECF70;
}

.list-status .cbx[for="cancel"] p:before {
    background: #DD2323;
}

.list-status .inp-cbx:checked + .cbx {
    border-color: var(--color);
}

.list-status .inp-cbx:checked + .cbx p:before {
    background-color: var(--bg-color, transparent);
}

.list-status .inp-cbx:checked + .cbx[for="cancel"] {
    border: 1px solid rgb(221 35 35 / 30%);
}

.proj-completion h4 {
    display: flex;
    color: #000;
    grid-gap: 10px;
    font-size: 14px;
    margin-bottom: 15px;
}

.progress-container {
    width: 100%;
    height: 4px;
    background-color: rgb(15 105 57 / 10%);
    border-radius: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.progress-bar {
    height: 100%;
    width: 0;
    border-radius: 10px;
    background: var(--main-color);
    transition: width 0.5s ease-in-out;
}

.completion-rate {
    font-size: 9px;
    color: #000;
    font-weight: 500;
    display: block;
    margin-left: 5px;
}

.proj-client h4 {
    color: #000;
    font-size: 14px;
    margin-bottom: 15px;
}

.dta-client {
    display: flex;
    grid-gap: 10px;
    align-items: center;
    border: 1px solid rgb(206 206 206 / 30%);
    padding: 12px;
    border-radius: 8px;
}

.dta-client figure {
    width: 40px;
    height: 40px;
    margin-bottom: 0;
}

.dta-client figure img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.txt-dta-client h6 {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.txt-dta-client p {
    color: var(--sub-color);
    font-size: 12px;
    display: flex;
    align-items: center;
    grid-gap: 10px;
}

/* Style Input (Radio & Checkbox) */

.inp-cbx {
    display: none;
}

.cbx {
    -webkit-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    display: flex;
    border: 1px solid rgb(206 206 206 / 30%);
    padding: 11px;
    border-radius: 8px;
    justify-content: space-between;
}

.cbx span {
    display: inline-block;
    vertical-align: middle;
    border: 0;
    transform: translate3d(0, 0, 0);
}

.cbx span {
    position: relative;
    width: 17px;
    height: 17px;
    background: #eee;
    border-radius: 3px;
    border: 0;
    transform: scale(1);
    vertical-align: middle;
    transition: all 0.2s ease;
    top: 0;
}

.cbx span svg {
    position: absolute;
    z-index: 1;
    top: 5px;
    left: 3px;
    fill: none;
    stroke: white;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 16px;
    stroke-dashoffset: 16px;
    transition: all 0.3s ease;
    transition-delay: 0.1s;
    transform: translate3d(0, 0, 0);
}

.cbx span:before {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--main-color);
    display: block;
    transform: scale(0);
    opacity: 1;
    border-radius: 50%;
    transition-delay: 0.2s;
}

.cbx span {
    margin-left: 8px;
}

.cbx span:after {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    height: 0;
    width: 100%;
    background: var(--main-color);
    transform-origin: 0 0;
    transform: scaleX(0);
}

.cbx:hover span {
    border-color: var(--main-color);
}

.inp-cbx:checked + .cbx span {
    border-color: var(--main-color);
    background: var(--main-color);
    animation: check 0.6s ease;
}

.inp-cbx:checked + .cbx span svg {
    stroke-dashoffset: 0;
}

.inp-cbx:checked + .cbx span:before {
    transform: scale(2.2);
    opacity: 0;
    transition: all 0.6s ease;
}

.inp-cbx:checked + .cbx span {
    color: #B9B8C3;
    transition: all 0.3s ease;
}

.inp-cbx:checked + .cbx span:after {
    transform: scaleX(1);
    transition: all 0.3s ease;
}

@keyframes check {
    50% {
        transform: scale(1.2);
    }
}


/* Style Breadcrumb */

.breadcrumb-bar {
    width: max-content;
    margin-bottom: 20px;
    position: relative;
}

.breadcrumb-bar .breadcrumb {
    background-color: transparent;
    border-radius: 0;
    margin: 0;
    padding: 0px 35px;
}

.breadcrumb-bar .breadcrumb a {
    color: rgb(0 0 0 / 50%);
    padding-right: 15px;
}

.breadcrumb-bar .breadcrumb li {
    color: #000;
    font-size: 13px;
    position: relative;
    padding-right: 10px;
}

.breadcrumb-bar .breadcrumb li:last-child {
    padding-right: 0;
}

.breadcrumb > li:not(:last-child):before {
    border: 0;
    font: normal normal normal 14px / 1 FontAwesome;
    color: rgb(0 0 0 / 50%);
    content: "\f101" !important;
    font-size: 12px;
    position: absolute;
    top: 4px;
    right: 8px;
}

.breadcrumb-bar .breadcrumb a:hover {
    color: var(--main-color);
}


/* Style Project Task */

.body-content.no-padd .container {
    padding-right: var(--bs-gutter-x, .8rem);
    padding-left: var(--bs-gutter-x, .8rem);
}

.body-content.no-padd .row {
    margin-right: calc(var(--bs-gutter-x)* -.3);
    margin-left: calc(var(--bs-gutter-x)* -.3);
}

.body-content.no-padd .row > * {
    padding-right: calc(var(--bs-gutter-x)* .3);
    padding-left: calc(var(--bs-gutter-x)* .3);
}

.body-content.no-padd .sortable-table thead th {
    position: relative;
    background-color: transparent;
    border-bottom: 1px solid rgb(206 206 206 / 30%);
    padding: 13px 0 13px 10px;
}

.sortable-table thead th span {
    position: relative;
}

.sortable-table thead th span:before {
    content: "";
    background: url(../images/icon-svg/icon-sort.svg);
    background-size: 100% 100%;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
}

.sortable-table tbody td {
    border: 0;
    position: relative;
    padding: 10px;
}

.sortable_table thead th span {
    position: relative;
}

.sortable_table thead th span:before {
    content: "";
    background: url(../images/icon-svg/icon-sort.svg);
    background-size: 100% 100%;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
}

.rtl-style .sortable_table thead th span:before {
    left: -20px;
    right: auto;
}

.body-content .table-other thead th {
    background-color: rgb(130 130 130 / 5%);
    padding: 13px 21px;
    color: var(--sub-color);
    font-size: 12px;
    font-weight: 400;
    border: 1px solid rgb(206 206 206 / 30%);
}

.body-content .table-other tbody td {
    padding: 21px;
    color: #000;
    font-size: 12px;
    border: 1px solid rgb(206 206 206 / 30%);
    border-top: 0;
    max-width: 240px;
}

.body-content .table-other tbody td:first-child {
    width: 50px;
    padding: 21px 8px;
}

.drag-handle {
    position: relative;
    padding-left: 20px;
    font-weight: 500;
    color: #000;
}

.drag-handle:before {
    content: "";
    background: url(../images/icon-svg/icon-drag.svg);
    background-size: 100% 100%;
    width: 12px;
    height: 10px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.name-task a {
    color: #000;
    font-size: 13px;
    font-weight: 500;
}

.tag-task {
    position: relative;
    border: 1px solid;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 30px;
    padding: 0 10px;
    font-size: 13px;
    text-align: center;
    width: max-content;
}

.priority-high {
    border-color: rgb(221 35 35 / 20%);
    color: #DD2323;
}

.priority-normal {
    border-color: rgb(15 105 57 / 20%);
    color: var(--main-color);
}

.priority-low {
    border-color: rgb(130 130 130 / 20%);
    color: #000;
}

.phase-design {
    border-color: rgb(130 130 130 / 20%);
    color: #000;
}

.status-new {
    border-color: rgb(0 149 255 / 20%);
    color: #0095FF;
}

.status-progress {
    border-color: rgb(255 134 47 / 20%);
    color: #FF862F;
}

.status-complet {
    border-color: rgb(15 105 57 / 20%);
    color: var(--main-color);
}

.status-cancel {
    border-color: rgb(221 35 35 / 20%);
    color: #DD2323;
}

.custom-select {
    position: relative;
    display: inline-block;
    width: 100%;
}

.select-display {
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    text-transform: capitalize;
    width: 100%;
}

.select-display:after {
    border: 0;
    font: normal normal normal 10px / 1 FontAwesome;
    content: "\f107";
    margin-left: 5px;
}

.rtl-style .select-display:after {
    margin-right: 5px;
    margin-left: unset;
}


.select-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: auto;
    min-width: 100%;
    background-color: #fff;
    border: 1px solid rgb(206 206 206 / 30%);
    border-radius: 5px;
    z-index: 1000;
}

.select-options div {
    padding: 10px;
    cursor: pointer;
    text-transform: capitalize;
    border-bottom: 1px solid #f4f4f4;
    font-size: 12px;
}

.select-options div:last-child {
    border-bottom: none;
}

.select-options div:hover {
    background-color: #e9e9e9;
}

.lst-file {
    display: flex;
    align-items: center;
}

.lst-file figure {
    width: 30px;
    height: 30px;
    margin-bottom: 0
}

.lst-file figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.lst-file a {
    position: relative;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sub-color);
    background: #f8f8f8;
    border-radius: 50%;
    margin-left: -10px;
    z-index: 8
}

.content-task {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.head-table {
    position: relative;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.name-table {
    display: flex;
    align-items: center;
}

.name-table p {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    padding: 0 10px 0 15px;
}

.rtl-style .name-table p {
    padding: 0 15px 0 10px;
}

.name-table p small {
    background: #0095FF;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.rtl-style .name-table p small {
    right: 0;
    left: auto;
}

/*.name-table p:before {*/
/*    content: "";*/
/*    background: #0095FF;*/
/*    width: 8px;*/
/*    height: 8px;*/
/*    border-radius: 50%;*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    left: 0;*/
/*    transform: translateY(-50%);*/
/*}*/

/*.table-progress-task .name-table p:before {*/
/*    background: #FF862F;*/
/*}*/

/*.table-completed-task .name-table p:before {*/
/*    background: var(--main-color);*/
/*}*/

/*.table-cancel-task .name-table p:before {*/
/*    background: #DD2323;*/
/*}*/

.name-table span {
    color: var(--sub-color);
    font-size: 10px;
    font-weight: 500;
    border: 1px solid rgb(0 0 0 / 10%);
    border-radius: 10px;
    display: block;
    padding: 3px 5px;
    line-height: 12px;
}

.head-table > ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.head-table .btn-site {
    padding: 12px;
    width: 25px;
    height: 25px;
    border-radius: 5px;
}

.head-table .btn-site span {
    font-size: 12px;
}

.head-table .btn-site span svg {
    margin: 0;
}

.head-table .btn-site:hover:before {
    left: -4px;
}

.icon-ellipsisi {
    width: 12px;
}

.head-border {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgb(206 206 206 / 30%);
}

.head-border .dropdown-toggle::after {
    display: none;
}

.sortable-table {
    width: 100%;
}

.item-task {
    position: relative;
    padding: 15px;
    background: #fff;
    border: 1px solid rgb(206 206 206 / 30%);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 1px 2px rgb(0 0 0 / 16%);
}

.dragging.ui-sortable-helper {
    transform: rotate(3deg);
}

.opt-task {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.opt-task .select-display,
.opt-task .custom-select {
    width: max-content;
}

.opt-task .tag-task {
    height: 20px;
    padding: 5px 10px;
    font-size: 11px;
}

.option-task {
    position: absolute;
    top: 20px;
    right: 20px;
}

.option-task .dropdown-toggle::after {
    display: none;
}

.dropdown-menu {
    padding: 0;
    font-size: 14px;
    border: 0;
    border-radius: 10px;
    box-shadow: 0 0 4px rgb(0 0 0 / 20%);
    left: auto !important;
    right: 0 !important;
    top: 3px !important;
    transform: translate(0, 29px) !important;
}

.dropdown-item {
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
}

.dropdown-item.active,
.dropdown-item:active {
    color: #000;
    background-color: rgb(15 105 57 / 10%);
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: #000;
    background-color: rgb(206 206 206 / 30%);
}

.dropdown-item .icon {
    width: 13px;
    height: 13px;
}

.dta-task {
    position: relative;
    margin-bottom: 20px;
}

.dta-task h6 a {
    color: #000;
    font-weight: 700;
    font-size: 13px;
    display: block;
    margin-bottom: 10px;
}

.dta-task p {
    color: #000;
    font-size: 12px;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dta-task span {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
    font-size: 11px;
    color: var(--sub-color);
}

.dta-task span .icon {
    width: 14px;
    height: 14px;
}

.info-task {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.info-task .lst-member {
    margin-left: 12px;
}

.info-task .lst-member figure {
    width: 25px;
    height: 25px;
    margin-left: -12px;
}

.other-task {
    display: flex;
    align-items: center;
    gap: 8px;
}

.other-task div {
    border: 1px solid rgb(130 130 130 / 50%);
    border-radius: 10px;
    padding: 3px 7px;
    display: flex;
    align-items: center;
    gap: 3px;
    width: max-content;
    font-size: 10px;
}

.other-task div .icon {
    max-height: 10px;
    max-width: 10px;
    margin: 0;
}

.progress-task .d-flex {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.progress-task p {
    font-size: 10px;
    color: var(--sub-color);
}

.content-task-table {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 20px 0;
}

.content-task-table .sec-head {
    padding: 0 20px;
}

.content-task-table .sec-head .btn-site {
    padding: 12px;
    width: 25px;
    height: 25px;
    border-radius: 5px;
}

.content-task-table .sec-head .btn-site span i,
.content-task-table .sec-head .btn-site span svg {
    margin: 0;
}

.content-project-file {
    position: relative;
}

.content-project-file .form-group {
    background: #fff;
    padding: 30px 20px;
    border-radius: 10px;
}

.content-project-file .form-group > label {
    font-weight: 700;
    font-size: 15px;
    display: block;
    margin-bottom: 10px;
}

.content-project-file .logo-label {
    padding: 35px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(206, 206, 206, 0.08);
    border: 2px dashed rgba(206, 206, 206, 0.4);
    border-radius: 10px;
    width: 100%;
    padding: 25px 0;
    margin-bottom: 20px;
}

.content-project-file .logo-label img {
    width: 38px;
    height: 38px;
    opacity: 20%;
}

.lst-attachments {
    background: #fff;
    border-radius: 10px;
    margin-top: 10px;
    padding: 15px;
}

.file-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.file-preview .file-item {
    border: 1px solid rgb(206 206 206 / 30%);
    background: #fff;
    flex: 0 0 auto;
    width: 32.7%;
    padding: 15px;
    gap: 10px
}

.file-preview .file-item figure {
    margin-bottom: 0;
    width: 40px;
    height: 40px;
}

.file-preview .file-item figure img {
    width: 100%;
    height: 100%;
}

.file-details h6 {
    font-size: 14px;
    color: #000;
    font-weight: 500;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding-right: 70px;
}

.file-details p {
    font-size: 12px;
    color: var(--sub-color);
}

.file-details {
    width: calc(100% - 95px);
}

.options-container {
    display: flex;
    align-items: center;
    gap: 5px;
}

.user-image {
    width: 20px;
    height: 20px;
}

.user-image img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
}

.options-container .dropdown-menu {
    inset: 10px -10px auto auto !important
}

.lst-attachments > h5 {
    font-weight: 700;
    font-size: 15px;
    display: block;
    margin-bottom: 10px;
}

/* Style Project Team */

.content-project-team {
    position: relative;
    background: #fff;
    padding: 20px 15px;
    border-radius: 10px;
}

.cont-member {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cont-member figure {
    width: 30px;
    height: 30px;
    margin-bottom: 0;
}

.cont-member figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.info-member h6 {
    color: #000;
    font-size: 12px;
    margin-bottom: 4px;
    font-weight: 500;
}

.info-member p {
    color: var(--sub-color);
    font-size: 11px;
}

.type-status {
    position: relative;
    border: 1px solid rgb(130 130 130 / 20%);
    color: #828282;
    font-size: 13px;
    border-radius: 5px;
    display: block;
    width: 100%;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 12px;
}

.type-status:before {
    content: "";
    background: #828282;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
}

.status-online {
    border-color: #73D578;
    color: #73D578;
}

.status-online:before {
    background: #73D578;
}

.type-activity {
    position: relative;
    border: 1px solid rgb(15 105 57 / 20%);
    color: #0F6939;
    font-size: 13px;
    border-radius: 5px;
    display: block;
    width: 100%;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.type-activity.type-out {
    border-color: rgb(231 195 0 / 20%);
    color: #E7C300
}

.content-project-team .sortable-table.table-other thead th,
.content-fncal .sortable-table.table-other thead th {
    background-color: rgb(130 130 130 / 5%);
    border: 0;
}

.content-project-team .sortable-table.table-other tbody td:first-child,
.content-fncal .sortable-table.table-other tbody td:first-child {
    padding: 21px 5px;
}


/* Style Task Details */

#show_task_details {
    z-index: 1050;
}

#task-dtls .modal-xl {
    max-width: 1390px;
}

#task-dtls .modal-header {
    padding: 15px 20px;
}

#show_task_details .fullscreen.modal-xl {
    max-width: 100%;
}

.opt-task-mdl {
    display: flex;
    align-items: center;
    gap: 15px;
}

.opt-task-mdl .btn-site {
    padding: 12px 15px;
}

.btn-oth {
    background: transparent;
    border: 1px solid rgba(130, 130, 130, 0.3);
    width: 40px;
    height: 40px;
    padding: 0;
}

.btn-site.btn-oth i {
    margin: 0;
}

.btn-site.btn-oth span {
    color: rgb(0 0 0 / 60%);
}

.close-modal svg {
    color: rgb(0 0 0 / 60%);
    font-size: 22px;
}

.modal-header .breadcrumb-bar {
    margin-bottom: 0;
}

.modal-header .breadcrumb-bar .breadcrumb {
    padding: 0;
}

.modal-header .breadcrumb-bar .breadcrumb > li:not(:last-child):before {
    content: "\f105" !important;
    font-size: 10px;
    top: 5px;
    right: 5px;
}

.modal-header .breadcrumb-bar .breadcrumb li {
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
}

.modal-header .breadcrumb-bar .breadcrumb a {
    padding-right: 5px;
    font-size: 12px;
}

.modal-header .modal-content {
    border-radius: 20px;
}


.abt-task {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.name-task h3 {
    color: #000;
    font-size: 28px;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 4px;
}

#editableText[contenteditable="true"] {
    border: 1px dashed rgb(206 206 206 / 60%)
}

.name-task h3 span {
    cursor: pointer;
    font-size: 14px;
}

.name-task p {
    color: var(--sub-color);
    font-size: 12px;
}

.modal-xl .modal-body {
    padding: 20px 30px;
}

.dropdown-menu.dropmenu-addmember {
    transform: translate(0, 40px) !important;
    width: 280px;
}

.dropmenu-addmember .form-search {
    position: relative;
    padding: 15px;
    border-bottom: 1px solid rgb(206 206 206 / 30%);
}

.dropmenu-addmember .form-search .form-group {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dropmenu-addmember .form-search .form-group .form-control {
    padding: 0
}

.dropmenu-addmember .chats_items {
    padding: 15px;
}

.row.row-cards-task > * {
    padding-left: 7.5px;
    padding-right: 7.5px;
}

.card-task {
    position: relative;
    padding: 10px;
    border-radius: 10px;
    background: rgb(206 206 206 / 10%);
    margin-bottom: 15px;
    height: 75px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.card-task .d-flex {
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.card-task .d-flex i {
    font-size: 16px;
    color: rgb(0 0 0 / 60%);
}

.card-task .d-flex span {
    color: var(--sub-color);
    font-size: 13px;
    display: block;
}

.card-task p {
    color: #000;
    font-weight: 500;
    font-size: 13px;
}

.card-task .select-display {
    padding: 10px 15px;
    border-radius: 30px;
    width: max-content;
}

.card-task .status-new {
    background: rgb(0 149 255 / 5%);
    border: 0;
}

.card-task .priority-high {
    background: rgb(221 35 35 / 5%);
    border: 0;
}

.card-task .phase-design {
    background: rgb(130 130 130 / 5%);
    border: 0;
}

.card-task .priority-normal {
    background: rgb(15 105 57 / 5%);
    border: 0;
}

.card-task .priority-low {
    background: rgb(130 130 130 / 5%);
    border: 0;
}

.card-task .status-progress {
    background: rgb(255 134 47 / 5%);
    border: 0;
}

.card-task .status-complet {
    background: rgb(15 105 57 / 5%);
    border: 0;
}

.card-task .status-cancel {
    background: rgb(221 35 35 / 5%);
    border: 0;
}

.card-task .select-display:after {
    font: normal normal normal 12px / 1 FontAwesome;
    color: var(--sub-color);
}

.card-task .tag-task {
    height: 24px;
}

.editor-container.editor-task {
    border: 1px solid rgb(206 206 206 / 30%);
    padding: 20px;
    margin-bottom: 25px;
    margin-top: 10px;
}

.ck.ck-editor__main > .ck-editor__editable {
    border: 1px solid rgb(206 206 206 / 30%) !important;
    padding: 0 15px;
    border-radius: 15px !important;
    height: 240px;
}

.ck.ck-editor__editable.ck-focused:not(.ck-editor__nested-editable) {
    box-shadow: none !important;
}

.ck.ck-toolbar.ck-toolbar_grouping {
    border: 0;
}

.ck.ck-editor__top.ck-reset_all {
    position: absolute;
    width: 100%;
    bottom: -10px;
}

.ck.ck-editor {
    position: relative;
    padding-bottom: 40px !important;
}

.ck.ck-editor__editable_inline > :last-child {
    word-break: break-word;
}

.cont-checklist,
.cont-attachments {
    position: relative;
    border: 1px solid rgb(206 206 206 / 30%);
    border-radius: 10px;
    margin-bottom: 25px;
}

.head-checklist,
.head-cont-attachments {
    padding: 20px;
    border-bottom: 1px solid rgb(206 206 206 / 30%);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.head-checklist h6,
.head-cont-attachments h6 {
    font-size: 14px;
    color: #000;
}

.head-checklist h6 span,
.head-cont-attachments h6 span {
    font-size: 13px;
    color: var(--sub-color);
    font-weight: 400;
}

.cont-attachments .custom-file-upload {
    padding: 20px;
}

.add-checklist .btn-site {
    background: transparent;
    padding: 12px 15px;
    border: 1px solid rgb(206 206 206 / 30%);
}

.add-checklist .btn-site span {
    color: rgb(0 0 0 / 60%);
}

.wid-prog {
    width: 270px;
}

.wid-prog .progress-container {
    height: 8px;
}

.head-checklist .d-flex {
    gap: 20px;
}

.head-checklist .completion-rate {
    font-size: 12px;
}

.item-checklist {
    position: relative;
    border: 1px solid rgb(206 206 206 / 30%);
    border-radius: 10px;
}

.item-checklist:not(:last-child) {
    margin-bottom: 10px;
}

.sec-head-check {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    position: relative;
    background: rgb(130 130 130 / 5%);
}

.sec-head-check h6 {
    font-weight: 500;
    font-size: 13px;
}

.sec-head-check h6 span {
    font-size: 11px;
    color: var(--sub-color);
    font-weight: 400;
}

.sec-head-check .option-task {
    top: 15px;
    right: 15px;
}

.lst-checklist {
    position: relative;
    padding: 15px;
}

.li-checklist > li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid rgb(206 206 206 / 30%);
}

.li-checklist li:last-child {
    border: 0;
}

.li-checklist li .cbx {
    border: 0;
    padding: 0;
}

.li-checklist li .d-flex {
    position: relative;
    gap: 15px;
}

.li-checklist .dropdown .dropdown-toggle::after {
    display: none;
}

.li-checklist .dropdown-menu {
    inset: 7px -7px auto auto !important
}

.li-checklist .cbx span {
    margin-right: 8px;
    margin-left: 0;
    background: transparent;
    border: 1px solid rgb(206 206 206 / 50%);
}

.li-checklist .inp-cbx:checked + .cbx {
    color: var(--sub-color);
    text-decoration: line-through;
    text-decoration-color: var(--sub-color);
}

.li-checklist .cbx span svg {
    top: 4px;
    left: 2px;
}

.todolist_item .d-flex i {
    color: rgb(0 0 0 / 60%);
}

.date-checklist {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px
}

.date-checklist p {
    color: var(--sub-color);
    font-size: 10px;
}

.date-checklist .icon {
    width: 13px;
    height: 13px;
}

.add-item-checklist a {
    color: var(--sub-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.delete-item {
    color: #DD2323
}

.li-checklist .lst-member figure {
    width: 24px;
    height: 24px;
}

.lst-attachment {
    position: relative;
    padding: 20px;
}

.lst-attachment .file-preview {
    display: flex;
    /*flex-wrap: wrap-reverse;*/
    /*flex-direction: row-reverse;*/
    /*justify-content: flex-end;*/
    gap: 10px
}

.lst-attachment .file-preview .file-item {
    border: 1px solid rgb(206 206 206 / 30%);
    background: #fff;
    flex: 0 0 auto;
    width: 49%;
    padding: 15px;
    gap: 10px;
    /*z-index: 0;*/
    height: 70px;
}

.attach-file-task .upload-label {
    width: 70px;
    height: 70px;
    border: 1px solid rgb(206 206 206 / 30%);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sub-color);
    font-size: 14px;
    border-radius: 10px;
    cursor: pointer
}

.nav-tabs {
    border-bottom: 1px solid rgb(206 206 206 / 30%);
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
    border-color: transparent;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    color: #000;
    font-weight: 700;
    border: 0;
    border-bottom: 2px solid var(--main-color);
}

.nav-tabs .nav-link {
    margin-bottom: 0;
    border: 0;
    color: rgb(0 0 0 / 30%);
    padding: 15px 20px;
}

.aside-task {
    border: 1px solid rgb(206 206 206 / 30%);
    border-radius: 10px;
    height: 540px;
    max-height: 540px;
    overflow: auto;
    position: relative;
}

.head-comment {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.cont-comment {
    height: 400px;
    overflow: auto;
}

.item-comment {
    position: relative;
    padding: 20px 20px 0;
}

.commentator {
    display: flex;
    align-items: center;
    gap: 10px;
}

.commentator figure {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    background: #8950FC;
    font-weight: 700;
    font-size: 12px;
    color: #fff;
    border-radius: 50%;
}

.commentator figure img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.commentator h6 {
    font-weight: 500;
    font-size: 13px;
    color: #000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.commentator span {
    font-size: 10px;
    color: rgb(0 0 0 / 60%);
}

.form-edit-comment .form-group textarea {
    width: 100%;
    font-size: 13px;
    height: 100px;
    border: 1px solid rgb(206 206 206 / 30%);
    background: rgb(255 255 255 / 80%);
}

.form-edit-comment ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 5px;
}

.form-edit-comment .btn-site {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    padding: 0;
}

.form-edit-comment .btn-site span i,
.form-edit-comment .btn-site span svg {
    font-size: 13px;
}

.opt-comment > ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.opt-comment li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.opt-comment .option-task {
    position: relative;
    top: unset;
    right: unset;
}

.ph-comment {
    border: 1px solid rgb(0 0 0 / 5%);
    background: rgb(130 130 130 / 5%);
    padding: 15px;
    border-radius: 10px;
}

.ph-comment p,
.ph-comment a {
    font-size: 11px;
    line-height: 1.7;
    color: #000;
    word-break: break-word;
}

.ph-comment a {
    text-decoration: underline !important
}

.form-comment {
    position: absolute;
    padding: 20px;
    border-top: 1px solid rgb(206 206 206 / 30%);
    bottom: 0;
    width: 100%;
}

.form-comment .form-group .form-control {
    border: 0;
    padding: 0;
    padding-inline-end: 120px;
}

.form-comment .form-group .btn-site {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: rgb(15 105 57 / 50%);
}

.form-comment .form-group .btn-site span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-comment .form-group .form-control:focus,
.form-comment .form-group .form-select:focus {
    box-shadow: none;
}

.form-comment .form-group .form-control::placeholder {
    color: rgb(130 130 130 / 60%);
    font-size: 13px;
}

.cont-activity {
    position: relative;
    padding: 20px;
}

.item-activity {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.item-activity p {
    color: #000;
    font-size: 11px;
    position: relative;
    padding: 0 15px;
}

.item-activity p:before {
    content: "";
    background: #000;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    position: absolute;
    top: 6px;
    left: 0;
}

.item-activity time {
    color: var(--sub-color);
    font-size: 10px;
}

.fullscreen-mode .modal-dialog.modal-xl {
    max-width: 100%;
    margin: 0;
}

/* Style Payments & Expenses & Reminder */

.content-project-payments {
    position: relative;
    background: #fff;
    padding: 20px 0;
    border-radius: 10px;
}

.sec-head .dropdown {
    margin-left: 15px;
}

.content-project-payments .sec-head {
    padding: 0 15px;
}

.sec-head .dropdown .dropdown-toggle::after {
    display: none;
}

.status-paid,
.status-unpaid {
    position: relative;
    padding: 5px 10px 5px 20px;
    border-radius: 5px;
    font-size: 12px;
    width: 100%;
    display: block;
    color: var(--main-color);
    border: 1px solid rgb(15 105 57 / 20%);
    text-align: center;
}

.status-unpaid {
    color: #DD2323;
    border: 1px solid rgb(221 35 35 / 20%)
}

.status-paid span,
.status-unpaid span {
    display: inline-block;
    position: relative
}

.status-paid span:before,
.status-unpaid span:before {
    content: "";
    background: var(--main-color);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
}

.status-unpaid span:before {
    background: #DD2323;
}

.status-reminder {
    position: relative;
    padding: 5px 10px 5px 20px;
    border-radius: 5px;
    font-size: 12px;
    width: 100%;
    display: block;
    color: var(--main-color);
    border: 1px solid rgb(15 105 57 / 20%);
    text-align: center;
}

.status-reminder span:before {
    content: "";
    background: var(--main-color);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
}

.status-reminder.reminder-new {
    color: #0095FF;
    border: 1px solid rgb(0 149 255 / 20%)
}

.status-reminder.reminder-new span:before {
    background: #0095FF;
}

.status-reminder span {
    position: relative;
}

.dropdown-task .btn-site {
    padding: 12px 35px 12px 25px
}

.rtl-style .dropdown-task .btn-site {
    padding: 12px 25px 12px 35px
}

.dropdown.dropdown-task .dropdown-toggle.btn-site span::after {
    display: block;
    border: 0;
    font: normal normal normal 13px / 1 FontAwesome;
    content: "\f107";
    font-size: 13px;
    color: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -14px;
}

.rtl-style .dropdown.dropdown-task .dropdown-toggle.btn-site span::after {
    right: auto;
    left: -14px;
}

.dropdown.dropdown-task .dropdown-toggle.btn-site:hover span::after {
    color: var(--main-color);
}

.dropdown.not-drop .dropdown-toggle::after {
    display: none
}

.not-drop {
    margin-left: 10px;
}

/* Style Chat */

.modal .modal-dialog.modal-fullscreen {
    max-width: 98%;
    height: calc(100vh - 40px);
    margin: 20px auto 0;
}

.modal-fullscreen .modal-content {
    border-radius: 20px;
}

.modal-header > ul {
    display: flex;
    align-items: center;
    gap: 15px
}

.modal-header .dropdown .dropdown-toggle {
    border: 1px solid rgb(130 130 130 / 30%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: rgb(0 0 0 / 60%);
}

.modal-header .dropdown .dropdown-toggle::after {
    display: none;
}

.modal-fullscreen .modal-header {
    border-bottom: 1px solid rgb(206 206 206 / 30%);
}

.modal-fullscreen .modal-body {
    padding: 0
}

.cont-chat {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
}

.cont-chat:before {
    content: "";
    background: url(../images/bg-chat.svg);
    background-repeat: repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 5%
}

.chat-area {
    position: relative;
    width: 70%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px
}

.bdy-chat {
    position: relative;
    height: 85%;
    padding: 20px;
    overflow: auto;
}

.sender {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.sender-msg {
    position: relative;
    background: #D3E2DA;
    border-radius: 12px 12px 0 12px;
    padding: 12px 12px 8px;
    max-width: 410px;
    margin-left: auto;
    margin-bottom: 10px;
}

.all-is-images .sender-msg {
    padding: 5px;
    border-radius: 5px 5px 0 5px;
}

.msg-file {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #000;
    text-decoration: underline !important;
}

.msg-file:not(:last-child) {
    margin-bottom: 10px;
}

.msg-file:hover,
.msg-file:focus {
    color: var(--main-color);
    text-decoration: underline !important;
}

.msg-file figure {
    background: rgb(255 255 255 / 40%);
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 0;
}

.member-msg .msg-file figure {
    background: rgb(247 247 247);
}

.sender-msg p {
    color: #000;
    font-size: 13px;
    line-height: 1.7;
}

.sender-msg time {
    color: rgb(0 0 0 / 80%);
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.sender-msg .oth-chat,
.member-msg .oth-chat {
    position: absolute;
    top: 50%;
    left: -40px;
    transform: translateY(-50%);
    z-index: 9;
    display: none;
    transition: .3s opacity;
}

.member-msg .oth-chat {
    right: -40px;
    left: auto;
}

.sender:hover .oth-chat,
.member-msg:hover .oth-chat {
    display: block;
}

.sender-msg .oth-chat .dropdown-toggle,
.member-msg .oth-chat .dropdown-toggle {
    background: #fff
}

.member-msg .dropdown-menu {
    right: auto !important;
    left: 0 !important;
}

.only-attachment .message_content {
    display: flex;
    gap: 10px;
    margin-bottom: 4px;
    flex-direction: column;
}

.all-is-images .message_content .chat-attachments {
    display: flex;
    gap: 10px;
    flex-direction: row;
}

.all-is-images .message_content .chat-attachments figure {
    margin-bottom: 0;
    flex: 1;
    height: 280px;
}

.all-is-images .message_content .chat-attachments figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.all-is-images .message_content .copy_text {
    margin-top: 5px;
}

.message_content > a {
    color: #000;
    display: flex;
    gap: 5px;
    align-items: center;
    text-decoration: underline !important;
}

.member-msg .message_content > a {
    color: #000;
}

.member-msg .replay-msg {
    background: rgb(247 247 247)
}

.member-msg .replay-msg span {
    color: #000000;
}

.member-msg .replay-msg p {
    color: #000000;
}

.member-msg {
    max-width: 470px;
    padding-right: 50px;
    margin-right: auto;
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.member-msg .dta-memb-msg {
    position: relative;
    width: calc(100% - 35px);
}

.member-msg .dta-memb-msg > div {
    position: relative;
    background: #fff;
    border-radius: 12px 12px 12px 0;
    padding: 12px 12px 8px;
    margin-bottom: 10px;
    width: fit-content;
    box-shadow: 0 0px 4px rgb(0 0 0 / 8%);
}

.member-msg > figure {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00C7BE;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    border-radius: 50%;
}

.member-msg > figure img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover
}

.dta-memb-msg p {
    color: #000;
    font-size: 13px;
    line-height: 1.7;
}

.dta-memb-msg span {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 12px;
}

.dta-memb-msg figure img {
    border-radius: 10px
}

.dta-memb-msg time {
    color: rgb(0 0 0 / 50%);
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.replay-msg {
    background: rgb(255 255 255 / 40%);
    border-radius: 12px;
    padding: 10px 15px;
    margin-bottom: 8px;
}

.replay-msg span {
    color: var(--main-color);
    font-weight: 500;
    font-size: 12px;
}

.replay-msg p {
    color: #000;
    line-height: 1.7;
    font-size: 12px;
}

.reply-chat {
    background: #fff;
    width: 100%;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: absolute;
    bottom: 90px;
    left: 0;
}

.reply-chat .cont-replay {
    position: relative;
    padding: 15px 10px;
    width: calc(100% - 60px);
    background: #f7f7f7;
    border-radius: 6px;
    border-left: 5px solid var(--main-color);
    cursor: pointer;
}

.text-reply-alt {
    display: block;
    margin-bottom: 4px;
    color: #000;
    font-weight: 600;
    font-size: 13px;
}

.text-reply .message_content p {
    color: rgb(0 0 0 / 60%);
    font-size: 13px;
}

.cancel-reply {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    font-size: 20px;
    color: rgb(0 0 0 / 60%);
}

.inpt-chat {
    height: 15%;
    background: #fff;
    padding: 20px;
    z-index: 9;
}

.form-chat .form-group {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px
}

.write_msg {
    height: 40px;
    padding: 8px;
}

.form-chat .btn-site span {
    display: flex;
    align-items: center;
}

.oth-chat .dropdown-toggle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--main-color);
    color: rgb(0 0 0 / 60%);
}

.oth-chat.add-att .dropdown-toggle {
    color: #fff
}

.oth-chat.add-att .dropdown-menu .dropdown-item i,
.oth-chat.add-att .dropdown-menu .dropdown-item svg {
    color: rgb(0 0 0 / 60%);
    font-size: 14px;
}

.oth-chat.add-att .dropdown-menu {
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: translate(0px, -136px) !important;
}

.btns-sty-chat {
    position: absolute;
    top: -55px;
    right: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 7px rgb(0 0 0 / 16%);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 10px;
}

.btns-sty-chat .format-btn {
    background: transparent;
    transition: 0.2s;
    padding: 10px;
    color: var(--sub-color);
}


#AttchBoxUpload {
    background: #fff;
    width: 100%;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    position: absolute;
    bottom: 15%;
    left: 0;
    border-bottom: 1px solid rgb(206 206 206 / 30%);
}

.remove-chat-file {
    position: absolute;
    right: 10px;
    top: 18px;
}

.oth-chat .dropdown-item i {
    font-size: 15px;
    color: rgb(0 0 0 / 60%);
}

.oth-chat .dropdown-item.delete-item i {
    color: #DD2323;
}

.oth-chat .dropdown-toggle::after {
    display: none;
}

.form-chat .form-control {
    border: 0;
    box-shadow: none;
}

.form-chat .form-control::placeholder {
    font-size: 13px;
    color: var(--sub-color);
}

.sidebar {
    position: relative;
    background: #fff;
    width: 30%;
    height: 100%;
    overflow: auto;
}

.head-sidebar {
    position: relative;
    padding: 20px;
    border-bottom: 1px solid rgb(206 206 206 / 30%);
}

.head-sidebar p {
    color: #000;
    font-size: 16px;
    font-weight: 500;
}

.name-chat {
    position: relative;
    padding: 20px;
    text-align: center;
}

.name-chat figure {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
}

.name-chat figure img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.name-chat h5 {
    color: #000;
    font-size: 18px;
    margin-bottom: 5px;
}

.name-chat span {
    display: block;
    color: var(--sub-color);
    font-size: 13px;
}

.des-chat {
    position: relative;
    padding: 0 20px 20px;
}

.des-chat strong {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    display: block;
    text-transform: capitalize;
    margin-bottom: 7px;
}

.des-chat p {
    color: #000;
    font-size: 12px;
    line-height: 1.7
}

.link-chat,
.member-chat {
    position: relative;
    padding: 20px;
    border-bottom: 1px solid rgb(206 206 206 / 30%);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.link-chat strong,
.member-chat strong {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    display: block;
    text-transform: capitalize;
}

.link-chat a {
    color: var(--main-color);
    text-decoration: underline !important;
    display: block;
    font-size: 13px;
}

.file-chat {
    position: relative;
    padding: 20px;
    border-bottom: 1px solid rgb(206 206 206 / 30%);
}

.file-chat > strong {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    display: block;
    text-transform: capitalize;
    cursor: pointer;
}

.file-chat > strong::after {
    border: 0;
    font: normal normal normal 14px / 1 FontAwesome;
    content: "\f105";
    font-size: 15px;
    position: absolute;
    top: 24px;
    right: 20px;
}

.file-chat .nav-tabs {
    border-bottom: 0;
    background: rgb(130 130 130 / 5%);
    padding: 8px 15px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.file-chat .nav-tabs .nav-item {
    flex: 0 0 auto;
    width: 33.333334%;
}

.file-chat .nav-tabs .nav-item a {
    font-size: 16px;
    color: rgb(0 0 0 / 60%);
    text-transform: capitalize;
    text-align: center;
    display: block;
    padding: 8px 20px;
    border-radius: 30px;
}

.file-chat .nav-tabs .nav-link.active,
.file-chat .nav-tabs .nav-item.show .nav-link {
    border: 0;
    background: #fff;
    font-weight: 500;
    color: var(--main-color);
}

.cont-files {
    margin-top: 20px;
}

.cont-media {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}

.cont-media figure {
    flex: 0 0 auto;
    width: 33.3333334%;
    margin-bottom: 0;
    height: 135px;
}

.cont-media figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.accordion-item {
    border: 0;
}

.cont-links-chat {
    position: relative;
    margin-top: 15px;
}

.cont-links-chat .item-link {
    border: 1px solid rgb(0 0 0 / 5%);
    background: rgb(130 130 130 / 5%);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.cont-links-chat .item-link a {
    text-decoration: underline !important;
    font-size: 11px;
    line-height: 1.7;
    color: #000;
}

.chats_items {
    max-height: 400px;
    overflow: auto;
    padding: 15px 30px;
}

.chatUserItem {
    margin-bottom: 15px;
}

.info-per {
    display: flex;
    align-items: center;
    gap: 10px;
    width: calc(100% - 27px);
}

.info-per figure {
    width: 30px;
    height: 30px;
    margin-bottom: 0;
}

.info-per figure img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.info-per .txt-pre {
    width: calc(100% - 40px);
}

.info-per .txt-pre h6 {
    font-size: 13px;
    color: #000;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.info-per .txt-pre p {
    font-size: 12px;
    color: #828282;
}

.chatUserItem .cbx {
    width: 100%;
    align-items: center;
}

.chatUserItem .cbx span {
    border-radius: 50%;
}

#forwardMessageModal .modal-sm .modal-header {
    border-bottom: 1px solid rgb(206 206 206 / 30%);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#forwardMessageModal .modal-sm .modal-header .btn-close {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 14px;
}

.cont-lst-forward {
    padding: 0 !important
}

.cont-lst-forward .form-search {
    position: relative;
    padding: 15px 30px;
    border-bottom: 1px solid rgb(206 206 206 / 30%);
}

.cont-lst-forward .form-search .form-group {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cont-lst-forward .form-search .form-group .form-control {
    padding: 0
}

.send-forward {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    padding: 15px 30px;
    border-top: 1px solid rgb(206 206 206 / 30%);
}

.send-forward p {
    color: #000;
    font-size: 14px;
    font-weight: 600;
    width: calc(100% - 75px);
}

.send-forward .btn-site {
    width: 65px;
}

.send-forward .btn-site i {
    margin: 0;
}

/* Style Employees */

.cont-breadcrumb {
    position: relative;
}

.employeeSection,
.clientSection {
    position: relative;
    min-height: calc(100vh - 230px);
}

.cont-breadcrumb:before {
    content: "";
    background: var(--main-color);
    width: 100%;
    height: 230px;
    position: absolute;
    top: 0;
    left: 0;
}

.cont-breadcrumb .breadcrumb-bar .breadcrumb {
    padding: 20px 15px;
}

.cont-breadcrumb .breadcrumb-bar .breadcrumb li {
    color: #fff;
}

.cont-breadcrumb .breadcrumb-bar .breadcrumb li a {
    color: rgb(255 255 255 / 50%);
}

.aside-info {
    background: #fff;
    border-radius: 16px;
}

.aside-info > div:not(:last-child) {
    border-bottom: 1px solid rgb(206 206 206 / 30%);
}

.cont-info {
    position: relative;
    text-align: center;
    padding: 20px;
}

.cont-info figure {
    margin: 0 auto 15px;
    width: 100px;
    height: 100px;
}

.cont-info figure img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
}

.txt-info h6 {
    color: #000;
    font-size: 16px;
    margin-bottom: 5px;
}

.txt-info p {
    color: #828282;
    font-weight: 500;
    font-size: 12px;
    margin-bottom: 20px;
}

.cont-info > ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cont-info > ul li a {
    background: var(--main-color);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
}

.option-info {
    position: absolute;
    top: 20px;
    right: 20px;
}

.option-info .dropdown-toggle::after {
    display: none;
}

.personal-info {
    position: relative;
    padding: 20px;
}

.personal-info > h4 {
    color: #000;
    font-size: 16px;
    margin-bottom: 20px;
}

.item-prs {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.item-prs:last-child {
    margin-bottom: 0;
}

.item-prs figure {
    margin-bottom: 0;
}

.item-prs figure i {
    font-size: 17px;
    color: rgb(0 0 0 / 60%);
}

.txt-prs span {
    color: rgb(0 0 0 / 50%);
    display: block;
    margin-bottom: 2px;
}

.txt-prs p {
    color: #000;
    font-size: 14px;
    font-weight: 500;
}

.join-date {
    position: relative;
    padding-top: 100px;
    text-align: center;
}

.join-date span {
    color: rgb(0 0 0 / 60%);
    font-size: 12px;
    display: block;
    padding: 10px 0;
}

.bdy-info {
    background: #fff;
    border-radius: 16px;
}

.header-info {
    position: relative;
    padding: 0 20px;
    border-bottom: 1px solid rgb(206 206 206 / 30%);
}

.header-info .menu-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-info .menu-info li a {
    position: relative;
    padding: 10px;
    height: 55px;
    color: var(--sub-color);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: capitalize;
}

.header-info .menu-info li.active a {
    color: #000;
    border-bottom: 1px solid var(--main-color);
}

.header-info .menu-info li a i {
    color: var(--sub-color);
    font-size: 16px;
}

.header-info .menu-info li.active a i {
    color: #000;
}

.cont-empl .item-feature {
    border: 1px solid rgb(130 130 130 / 10%);
}

.cont-empl {
    padding: 20px 0;
}

.cont-empl.pd {
    padding: 20px;
}

.cont-empl .sec-head {
    padding: 0 20px;
}

.cont-activity {
    position: relative;
    padding: 0 20px;
}

.tab-pane .cont-activity {
    margin-top: 20px;
}

.cont-activity:before {
    content: "";
    background: rgb(206 206 206 / 30%);
    width: 1px;
    height: calc(100% - 40px);
    position: absolute;
    left: 37.5px;
    top: 20px;
}

.tab-pane .cont-activity:before {
    display: none;
}

.card-activity {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.card-activity figure {
    position: relative;
    width: 35px;
    height: 35px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--main-color);
    margin-bottom: 0;
}

.txt-activity {
    width: calc(100% - 45px);
    border: 1px solid rgb(206 206 206 / 30%);
    padding: 15px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
}

.txt-activity > div {
    flex: 0 0 auto;
    width: 50%;
}

.info-activity p {
    color: #000;
    font-size: 14px;
    line-height: 1.7;
}

.info-activity p strong {
    font-weight: 600;
}

.info-activity p small {
    color: var(--main-color);
    font-weight: 600;
}

.date-activity {
    text-align: right;
}

.date-activity span {
    color: #828282;
    font-size: 11px;
}


.cont-empl .upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(206, 206, 206, 0.08);
    border: 2px dashed rgba(206, 206, 206, 0.4);
    border-radius: 10px;
    width: 100%;
    padding: 25px 0;
    margin-bottom: 20px;
}

.upload-label > img {
    width: 28px;
    height: 28px;
    opacity: 20%;
}

.upload-label > span {
    display: block;
    margin: 10px 0;
    color: rgb(0 0 0 / 60%);
    font-size: 12px;
    font-weight: 500;
}

.form-files .form-group > label {
    color: #000;
    font-size: 15px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.cont-empl .lst-attachments {
    padding: 0;
}

.cont-empl .file-preview .file-item {
    width: 49%;
}

/* Style Financial */

.logo-site h4 {
    font-size: 16px;
    color: #000;
}

.menu-categ {
    border-top: 1px solid rgb(206 206 206 / 30%);
}

.menu-categ p {
    padding: 20px 15px 5px;
    color: rgba(72, 72, 72, .8);
}

.content-fncal {
    background: #fff;
    padding: 20px 0;
    border-radius: 16px;
}

.content-fncal .sec-head {
    padding: 0 20px;
}


.head-acco {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(130, 130, 130, .3)
}

.head-acco h5 {
    color: var(--main-color);
    font-size: 18px;
}

.item-account {
    position: relative;
    margin-bottom: 10px;
}

.item-account .d-flex .form-group {
    flex: 0 0 auto;
    width: 30%;
    padding-right: 20px !important;
}

.item-account .d-flex .form-group:nth-child(2),
.item-account .d-flex .form-group:nth-child(3) {
    width: 20%;
}

.item-account .d-flex .form-group:last-child {
    padding-right: 0 !important;
}

.item-account > span {
    display: block;
    margin-bottom: 10px;
    color: var(--main-color);
}

.remove-item-account {
    width: 30px;
    height: 30px;
    background: rgba(221, 35, 35, .05);
    border-radius: 50%;
    color: #DD2323;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 25px;
    right: 0;
    cursor: pointer
}

.lst-account {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #000;
}

.total-acco {
    margin-bottom: 50px;
}

.total-acco > div {
    position: relative;
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.total-acco > div:not(:last-child) {
    border-bottom: 1px solid rgba(206, 206, 206, .3)
}

.total-acco > div p {
    color: #000;
    font-weight: 700;
}

.total-acco > div strong {
    color: var(--main-color);
    font-size: 18px;
}

/* Style Sign */

.section_sign_page {
    position: relative;
    background: rgb(206 206 206 / 2%);
}

.section_sign_page:before {
    content: "";
    background: rgb(15 105 75 / 2%);
    width: 50%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1
}

.wlc-sign {
    padding: 80px 0 0;
}

.txt-wlc-sign {
    position: relative;
    margin-bottom: 50px;
}

.txt-wlc-sign figure {
    margin-bottom: 30px;
}

.txt-wlc-sign figure img {
    max-width: 120px;
}

.txt-wlc-sign h2 {
    color: #000;
    font-size: 46px;
    line-height: 1.3;
}

.txt-wlc-sign h2 span {
    color: var(--main-color);
}

.thumb-sign {
    text-align: center;
}

.thumb-sign img {
    max-width: 335px;
}

.cont-sign {
    position: relative;
    padding: 40px 0 40px 80px;
    height: 100%
}

.icon-google {
    background: url(../images/google.svg);
    width: 20px;
    height: 20px;
}

.tp-reg {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 40px;
}

.tp-reg p {
    color: #000;
    font-weight: 500;
    font-size: 14px;
}

.tp-reg .btn-site span {
    display: flex;
    align-items: center;
    text-transform: capitalize;
}

.head-sign {
    position: relative;
    margin-bottom: 20px;
}

.head-sign h2 {
    font-size: 30px;
    color: #000;
}

.head-sign p {
    color: var(--sub-color);
    font-size: 13px;
}

.sign-google {
    position: relative;
    margin-bottom: 20px;
}

.sign-google a {
    border: 1px solid rgb(206 206 206 / 40%);
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 10px;
    height: 45px;
    font-size: 15px;
    font-weight: 500;
    color: #000;
    margin-bottom: 20px;
}

.sign-google p {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    text-align: center;
}

.sign-google p:before,
.sign-google p:after {
    content: "";
    background: rgb(206 206 206 / 40%);
    width: 47%;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.sign-google p:after {
    right: 0;
    left: auto;
}

.form-sign .form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-sign .form-group label {
    font-size: 13px;
    display: block;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}

.form-sign .form-group .form-control {
    height: 45px;
    border: 1px solid rgb(206 206 206 / 40%);
    background-color: #fff;
    border-radius: 10px;
    padding-left: 60px;
    font-size: 14px;
    color: #000;
}

.form-sign .form-group .form-control::placeholder {
    color: rgb(0 0 0 / 30%);
    font-size: 14px;
}

.form-sign .form-group > i {
    position: absolute;
    bottom: 14px;
    left: 15px;
    color: rgb(0 0 0 / 40%);
    font-size: 15px;
}

.form-sign .form-group:before {
    content: "";
    background: rgb(206 206 206 / 40%);
    width: 1px;
    height: 30px;
    position: absolute;
    bottom: 7.5px;
    left: 45px;
}

.form-sign .form-group.nbef:before {
    display: none;
}

.form-sign .form-group .cbx {
    border: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    font-weight: 500;
    text-transform: capitalize;
    font-size: 14px
}

.form-sign .form-group .cbx span {
    margin-left: 0;
    margin-right: 8px;
}

.form-sign .form-group .btn-site {
    width: 100%;
    height: 45px;
    margin-top: 40px;
}

.form-sign .form-group .btn-site span {
    display: flex;
    align-items: center;
}

.forgot-password,
.resend-code {
    color: #000;
    font-size: 13px;
    text-decoration: underline !important;
    font-weight: 500;
    text-align: center;
    display: block;
}

.forgot-password:hover,
.resend-code:hover {
    color: var(--main-color);
    text-decoration: underline !important;
}

.form-sign .form-group.mab0 {
    margin-bottom: 20px;
}

.btn-send svg {
    margin-left: 20px
}

.form-inpt .cont-loder {
    background-color: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}

iframe .CardBrandIcon-container {
    display: none !important;
}

#card-element {
    display: flex;
    align-items: center;
    width: 100%;
}

.__PrivateStripeElement {
    width: 100% !important;
}

.errorSpan {
    position: absolute;
    font-size: 10px !important;
    top: 5px;
    right: 0;
}

.policy-sign {
    position: absolute;
    bottom: 20px;
    left: calc(50% + 40px);
    transform: translateX(-50%);
}

.policy-sign p {
    color: #000;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
}

.policy-sign p a {
    color: var(--main-color);
}

.thumb-verify {
    text-align: center;
    margin-bottom: 20px;
}

.form-group.form-verify label {
    font-size: 18px;
    margin-bottom: 20px;
}

.form-verify .d-flex {
    gap: 15px;
}

.form-verify .d-flex .form-control {
    max-width: 110px;
    height: 80px;
    font-size: 18px;
    padding: 0;
    text-align: center;
}

.wizard-container {
    display: flex;
}

.aside-timeline {
    position: fixed;
    left: 0;
    height: 100vh;
    width: 450px;
    background-color: var(--main-color);
    color: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.aside-timeline .logo-site {
    padding: 30px 50px;
    height: auto;
}

.timeline {
    padding: 30px 40px 30px 80px;
}

.step {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    opacity: 60%;
    transition: opacity 0.3s;
}

.step:before {
    content: "";
    border: 1px solid #fff;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
}

.step.current:before {
    border: 1px dashed #fff
}

.complete-step:before {
    border: 0;
    font: normal normal normal 13px / 1 FontAwesome;
    content: "\f058";
}

.step:after {
    content: "";
    background: #fff;
    width: 1px;
    height: 40px;
    position: absolute;
    bottom: -40px;
    left: -22px;
}

.step:last-child:after {
    display: none;
}

.step.current,
.complete-step {
    opacity: 100%;
}

.icon-step {
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgb(255 255 255 / 10%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step.current .icon-step {
    border: 1px solid #fff;
    background: transparent;
}

.complete-step .icon-step {
    background: #fff;
}

.complete-step .icon-step svg path {
    fill: var(--main-color);
}

.txt-step {
    position: relative;
}

.txt-step h3 {
    font-size: 15px;
    color: #fff;
    margin-bottom: 5px;
}

.txt-step p {
    color: rgb(255 255 255 / 90%);
    font-size: 12px;
}

.wizard-container .tab-content {
    min-height: 100vh;
    padding-left: 450px;
    width: 100%;
    background-color: #f9f9f9;
}

.wizard-container .tab-content .tab {
    display: none;
    padding: 40px
}

.wizard-container .tab.active {
    display: block;
}

.navigation-buttons {
    width: 650px;
    margin: 80px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
    gap: 20px;
}

.navigation-buttons button {
    width: 50%;
    height: 55px;
}

.prev.btn-site {
    background: rgb(206 206 206 / 20%);
}

.prev.btn-site span {
    color: #000;
}

.navigation-buttons .btn-site span svg {
    margin-left: 15px;
}

.prev.btn-site span svg {
    margin-right: 15px;
    margin-left: 0;
}

.tab .sec-head {
    position: relative;
    text-align: center;
    margin: 0 auto 40px;
}

.tab .sec-head span {
    color: var(--sub-color);
    font-size: 12px;
    display: block;
    margin-bottom: 5px;
}

.tab .sec-head h2 {
    color: #000;
    font-size: 32px;
    margin-bottom: 5px;
}

.tab .sec-head p {
    color: var(--sub-color);
    font-size: 12px;
}


.item-plan > label {
    position: relative;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgb(206 206 206 / 40%);
    background: #fff;
    margin-bottom: 25px;
    cursor: pointer;
    display: block;
}

.item-plan input:checked + label:before {
    content: "";
    background: url(../images/shape-plan.svg);
    background-size: 100% 100%;
    width: 100%;
    height: 190px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 10%;
}

.item-plan input:checked + label {
    background: var(--main-color);
}

.name-paln {
    position: relative;
    border-bottom: 1px solid rgb(206 206 206 / 30%);
    margin-bottom: 20px;
    padding-bottom: 20px;
    height: 170px;
}

.name-paln h5 {
    font-size: 15px;
    color: #000;
    margin-bottom: 5px;
}

.item-plan input:checked + label .name-paln h5 {
    color: #fff;
}

.name-paln p {
    font-size: 13px;
    color: rgb(0 0 0 / 60%);
}

.item-plan input:checked + label .name-paln p {
    color: rgb(255 255 255 / 60%)
}

.name-paln strong {
    font-size: 45px;
    display: block;
    color: var(--main-color);
    line-height: 1;
    margin: 15px 0 5px;
}

.item-plan input:checked + label .name-paln strong {
    color: #fff;
}

.name-paln strong sup {
    font-size: 14px;
    top: -1.5em;
}

.name-paln strong small {
    font-size: 12px;
    color: rgb(0 0 0 / 60%);
    font-weight: 500;
}

.item-plan input:checked + label .name-paln strong small {
    color: rgb(255 255 255 / 60%);
}

.name-paln > span {
    display: block;
    margin-bottom: 5px;
    font-size: 12px;
    color: var(--main-color);
    font-weight: 700;
}

.item-plan input:checked + label .name-paln > span {
    color: #fff;
}

.feat-paln {
    margin-bottom: 20px;
    height: 200px;
}

.feat-paln li p {
    position: relative;
    margin-bottom: 10px;
    padding-left: 20px;
    color: #000;
    font-size: 11px;
}

.item-plan input:checked + label .feat-paln li p {
    color: #fff;
}

.feat-paln li p:before {
    content: "\f05d";
    font: normal normal normal 12px / 1 FontAwesome;
    color: var(--main-color);
    position: absolute;
    left: 0;
    top: 3px;
}

.item-plan input:checked + label .feat-paln li p:before {
    color: #fff;
}

.see-all a {
    color: var(--main-color);
    text-decoration: underline !important;
    font-size: 13px;
    display: block;
}

.item-plan input:checked + label .see-all a {
    color: #fff;
}

.choose-plan {
    position: relative;
    margin-top: 50px;
}

.choose-plan label {
    display: block;
}

.choose-plan .btn-site {
    width: 100%;
    background: rgb(206 206 206 / 20%);
}

.item-plan.active .choose-plan .btn-site {
    background: #fff
}

.choose-plan .btn-site span {
    color: #000;
}

.item-plan.active .choose-plan .btn-site span {
    color: var(--main-color);
}

.tab .form-inpt {
    position: relative;
    width: 650px;
    margin: 0 auto;
}

.show-password {
    position: absolute;
    right: 15px;
    bottom: 15px;
}

.lst-many {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.lst-many li {
    flex: 0 0 auto;
    width: 33.3333334%;
    padding: 0 10px;
}

.form-sign .form-group .lst-many .cbx {
    position: relative;
    height: 55px;
    border: 1px solid rgb(206 206 206 / 40%);
    background-color: #fff;
    border-radius: 10px;
    padding-left: 60px;
    margin-bottom: 20px;
}

.form-sign .form-group .lst-many .cbx span {
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgb(206 206 206 / 40%);
    position: absolute;
    left: 15px;
    top: 19px;
}

.form-sign .form-group .lst-many .cbx:before {
    content: "";
    background: rgb(206 206 206 / 40%);
    width: 1px;
    height: 40px;
    position: absolute;
    bottom: 8px;
    left: 45px;
}

.form-sign .form-group .lst-many .inp-cbx:checked + .cbx span {
    background: var(--main-color);
    border: 1px solid var(--main-color);
}

.form-sign .form-group .lst-many .inp-cbx:checked + .cbx {
    border: 1px solid var(--main-color)
}

.form-sign .form-group .lst-many .cbx span svg {
    top: 3px;
    left: 3px;
    stroke-width: 1px;
    stroke-dasharray: 13px;
}

.form-sign .form-group.agree .cbx p,
.form-sign .form-group .lst-many .cbx p {
    font-size: 13px;
    color: #000;
}

.form-sign .form-group.agree .cbx p a {
    color: var(--main-color);
}

.form-sign .form-group.agree .cbx span {
    border: 1px solid rgb(206 206 206 / 40%);
    background-color: #fff;
}

.form-sign .form-group.agree .inp-cbx:checked + .cbx span {
    background: var(--main-color)
}

.form-sign .form-group.agree .cbx span svg {
    top: 4px;
    left: 1px;
}

.form-sign .form-group .lst-pay .cbx {
    margin-bottom: 0;
    padding-left: 40px;
    height: 70px;
}

.form-sign .form-group .lst-pay .cbx:before {
    display: none;
}

.form-sign .form-group .lst-pay .cbx img {
    max-width: 130px;
}

.form-sign .form-group .lst-pay .cbx span {
    top: 25px;
}

.total-pay {
    position: relative;
    border-top: 2px solid #000;
    margin-top: 80px;
    padding-top: 30px;
}

.row-pay {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.row-pay:not(:last-child) {
    border-bottom: 1px solid rgb(206 206 206 / 30%);
}

.row-pay h5 {
    color: #000;
    font-size: 14px;
}

.row-pay p {
    color: rgb(0 0 0 / 60%);
    font-size: 12px;
    margin-top: 5px;
}

.row-pay p span {
    color: var(--main-color);
}

.row-pay strong {
    color: var(--main-color);
    font-size: 25px;
}

.row-pay strong span {
    color: rgb(0 0 0 / 60%);
    font-size: 12px;
    font-weight: 400;
}

.modal .modal-dialog.modal-sm {
    max-width: 450px;
}

.modal .modal-dialog.modal-sm .modal-content {
    border-radius: 20px;
}

.modal .modal-dialog.modal-sm .modal-body {
    padding: 0 30px 40px 30px;
}

.modal-sm .modal-header {
    border: 0;
    text-align: center;
    display: block;
}

.modal-sm .modal-header .btn-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 14px;
}

.modal-sm .modal-header span {
    color: #000;
    font-size: 12px;
}

.cont-succ {
    position: relative;
    text-align: center;
}

.cont-succ figure {
    margin-bottom: 25px;
}

.txt-succ {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgb(206 206 206 / 30%);
}

.txt-succ h4 {
    font-size: 17px;
    color: #000;
    margin-bottom: 10px;
}

.txt-succ p {
    font-size: 12px;
    color: rgb(0 0 0 / 50%);
    margin-bottom: 10px;
}

.opt-succ strong {
    display: block;
    color: var(--main-color);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 50px;
}

.opt-succ .btn-site {
    margin: 0 auto;
    padding: 12px 45px;
}

.opt-succ .btn-site span svg {
    margin-left: 10px;
}


.switch-button {
    background: rgba(255, 255, 255, 0.56);
    border-radius: 30px;
    overflow: hidden;
    width: 240px;
    text-align: center;
    font-size: 18px;
    letter-spacing: 1px;
    color: #155FFF;
    position: relative;
    padding-right: 120px;
    position: relative;
}

.switch-button:before {
    content: "Year";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    pointer-events: none;
}

.switch-button-checkbox {
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 2;
}

.switch-button-checkbox:checked + .switch-button-label:before {
    transform: translateX(120px);
    transition: transform 300ms linear;
}

.switch-button-checkbox + .switch-button-label {
    position: relative;
    padding: 15px 0;
    display: block;
    user-select: none;
    pointer-events: none;
}

.switch-button-checkbox + .switch-button-label:before {
    content: "";
    background: #fff;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 30px;
    transform: translateX(0);
    transition: transform 300ms;
}

.switch-button-checkbox + .switch-button-label .switch-button-label-span {
    position: relative;
}

/* Style Business Email */

.content-email {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
}

.msg-instructions {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgb(206 206 206 / 40%);
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.msg-instructions figure {
    width: 55px;
    height: 55px;
    background: rgba(15, 105, 57, .05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.icon-instructionss {
    background: url(../images/instructions.svg);
    background-size: 100% 100% !impotrant;
    width: 25px;
    height: 25px;
}

.txt-instructions h3 {
    color: #000;
    font-size: 16px;
    margin-bottom: 3px;
}

.txt-instructions p {
    color: rgb(0 0 0 / 80%);
    font-size: 13px;
}

.head-dmin {
    position: relative;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 25px;
}

.head-dmin h4 {
    color: #000;
    font-size: 16px;
}

.alert-email {
    position: relative;
    padding: 10px;
    border-radius: 10px;
    background: rgba(242, 201, 76, .2);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1;
}

.alert-email::before {
    content: "";
    position: absolute;
    left: -16px;
    top: 50%;
    width: 20px;
    height: 20px;
    background: rgba(242, 201, 76, .2);
    clip-path: polygon(80% 0%, 20% 50%, 80% 100%);
    transform: translateY(-50%);
    z-index: -1;
}

.alert-email figure {
    margin-bottom: 0;
}

.icon-alert {
    background: url(../images/alert.svg);
    background-size: 100% 100% !important;
    width: 15px;
    height: 15px;
    display: block;
}

.form-email label {
    position: relative;
    color: #000;
    font-weight: 500;
    font-size: 14px;
    display: block;
    margin-bottom: 8px;
    padding-left: 20px;
}

.form-email.form-domain label {
    width: 200px;
    font-size: 13px;
    margin-bottom: 0;
}

.form-email label:before {
    content: "";
    background: var(--main-color);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.form-email .d-flex {
    gap: 15px;
}

.form-email .d-flex .form-group {
    position: relative;
    width: calc(33.33334% - 10px);
    margin-bottom: 25px;
}

.form-email.form-domain .d-flex {
    margin-bottom: 25px;
    align-items: center;
}

.form-email.form-domain .form-group {
    margin-bottom: 0;
}

.form-email.form-domain .d-flex .form-group {
    position: relative;
    width: calc(25% - 10px);
}

.form-email .form-control {
    border: 1px solid rgb(206 206 206 / 40%);
    height: 40px;
    padding: 10px 60px 10px 10px;
    border-radius: 8px;
}

.form-email .form-control::placeholder {
    font-size: 14px;
    color: #828282;
}

.form-email.form-domain .form-control::placeholder {
    font-size: 13px;
    color: #828282;
}

.form-email .form-group > span {
    position: absolute;
    bottom: 10px;
    left: 10px;
}

.copy-input {
    color: var(--main-color);
    position: absolute;
    right: 15px;
    bottom: 12.5px;
    font-size: 14px;
    height: 15px;
    cursor: pointer;
}

.copy-input:before {
    content: "";
    background: rgb(206 206 206 / 40%);
    width: 1px;
    height: 34px;
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
}

.content-additional {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
}

.head-additional {
    position: relative;
    border-bottom: 1px solid rgb(206 206 206 / 40%);
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.head-additional h4 {
    color: #000;
    font-size: 16px;
}

.dta-additional {
    position: relative;
    padding: 20px 25px;
    border-radius: 12px;
    background: rgb(15 105 57 / 5%);
}

.dta-additional li {
    position: relative;
    font-size: 13px;
    margin-bottom: 15px;
    padding-left: 20px;
}

.dta-additional li:last-child {
    margin-bottom: 0;
}

.dta-additional li:before {
    content: "";
    border: 3.5px solid var(--main-color);
    border-radius: 50%;
    width: 12px;
    height: 12px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.cont-setup {
    position: relative;
    padding: 20px 20px 0;
    height: 100%;
    border-radius: 12px;
    border: 1px solid rgb(206 206 206 / 40%);
}

.cont-setup > h4 {
    color: var(--main-color);
    font-size: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgb(206 206 206 / 40%);
}

.cont-setup .form-email .d-flex .form-group {
    width: 100%;
}

.hd-stg {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgb(206 206 206 / 40%);
}

.dta-email .col-lg-6 {
    position: relative;
}

.dta-email .col-lg-6:not(:last-child):before {
    content: "OR";
    background: var(--main-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    padding-top: 12px;
    font-size: 11px;
}

.dta-email .col-lg-6:not(:last-child):after {
    content: "";
    background: url(../images/or.svg);
    background-size: 100% 100%;
    width: 15px;
    height: 15px;
    position: absolute;
    top: 49%;
    right: -8px;
    transform: translateY(-50%);
}

.body-content.no-padd .dta-email .row > * {
    padding-right: calc(var(--bs-gutter-x)* 1.3);
    padding-left: calc(var(--bs-gutter-x)* 1.3);
}

.body-content.no-padd .dta-email .row {
    margin-right: calc(var(--bs-gutter-x)* -1.3);
    margin-left: calc(var(--bs-gutter-x)* -1.3);
}

.opt-mail .btn-ellipsisi {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgb(206 206 206 / 40%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

/* Style Templete */

.cont-template {
    position: relative;
    padding: 20px;
}

.cont-template .row {
    margin-right: calc(var(--bs-gutter-x)* -.3);
    margin-left: calc(var(--bs-gutter-x)* -.3);
}

.cont-template .row > * {
    padding-right: calc(var(--bs-gutter-x)* .3);
    padding-left: calc(var(--bs-gutter-x)* .3);
}

.item-template {
    position: relative;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgb(206 206 206 / 40%);
    background: #fff;
    margin-bottom: 24px;
}

.item-template figure {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-template figure img {
    max-width: 100%;
    max-height: 100%;
}

.txt-template {
    position: relative;
    text-align: center;
}

.txt-template h5 {
    color: #000;
    font-size: 16px;
    margin-bottom: 5px;
}

.txt-template p {
    color: #000;
    font-size: 13px;
}

.txt-template ul {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.txt-template ul li {
    width: 50%;
}

.txt-template .btn-site {
    width: 100%;
    border-radius: 5px;
    padding: 10px;
}

.txt-template span {
    gap: 4px;
    font-size: 12px;
}

.txt-template .btn-site span svg {
    font-size: 12px;
}

.txt-template .btn-privew {
    background: transparent;
    border: 1px solid rgb(206 206 206 / 40%);
}

.txt-template .btn-privew span {
    color: #000;
}

/*  */

.content-dta-setting {
    padding: 0 20px;
}

.content-dta-setting .d-flex.wbig .form-group {
    width: 25%;
    gap: 30px;
    align-items: center;
}

.switch input {
    display: none;
}

.switch label {
    cursor: pointer;
    /*text-indent: -9999px;*/
    width: 70px;
    height: 30px;
    background: #e9e9e9;
    display: block;
    border-radius: 100px;
    position: relative;
}

.switch label:after {
    content: "\f00d";
    font: normal normal normal 13px / 1 FontAwesome;
    position: absolute;
    top: 5px;
    left: 5px;
    width: 20px;
    height: 20px;
    background: #fff;
    color: #bfbfbf;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.switch input:checked + label {
    background: var(--main-color);
}

.switch input:checked + label:after {
    content: "\f00c";
    color: var(--main-color);
    left: calc(100% - 5px);
    transform: translateX(-100%);
}

.switch + label:active:after {
    width: 70px;
}


/* Style Calender */

.calendar {
    display: none;
    position: absolute;
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 99999;
}

.calendar table {
    width: 100%;
    border-collapse: collapse;
}

.calendar th {
    color: var(--main-color);
    background: transparent;
}

.calendar th,
.calendar td {
    width: 40px;
    height: 40px;
    text-align: center;
    cursor: pointer;
    background: #fff;
    padding: 0;
    border: 0;
    font-weight: 400;
}

.calendar th {
    color: var(--main-color);
}

.calendar td:hover {
    background: #f0f0f0;
}

.calendar .selected {
    background: var(--main-color);
    color: #fff;
}

.calendar .calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    background: var(--main-color);
    padding: 10px;
}

.calendar-header select {
    padding: 3px;
    background: transparent;
    color: #fff;
    max-height: 200px;
}

.calendar-header select option {
    color: #000;
}