* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Rubik', sans-serif;
}

a {
    text-decoration: none;
}

html {
    background-color: #F8F8F8;
}

:root {
    ---main-color: #071F45;
    --second-color: #E9662D;
    --bgcolor: #fff;
    --second-bgcolor: #F8F8F8;
    --gray-color: #ccc;
    --nav-width: 68px;

}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.body-con {
    position: relative;
    margin: 100px 0 0 0;
    padding: 1rem;
    transition: .5s;
    background-color: #F8F8F8;
}

a {
    text-decoration: none
}

.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    z-index: var(--z-fixed);
    transition: .5s;
    height: 100px;
    z-index: 20;
    background-color: #F8F8F8;

}

.header_toggle {
    cursor: pointer
}

.header_img {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden
}

.header_img img {
    width: 40px
}

@media (max-width:575px) {
    .header {
        height: 150px;
    }

    .body-con {
        margin-top: 150px;

    }
}

.l-navbar {
    position: fixed;
    top: 0;
    right: -268px;
    width: var(--nav-width);
    height: 100vh;
    background-color: var(--bgcolor);
    padding: 0px;
    transition: .5s;
    z-index: var(--z-fixed);
    z-index: 50;
    border-left: 1px solid rgba(224, 224, 224, 1);
}

.l-navbar .nav {
    height: 100%;
    background-color: var(---main-color);
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
}

.l-navbar .nav .nav_logo {
    margin: 10px auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;

}

.nav_logo,
.nav_link {
    display: flex;
    align-items: center;
}

.nav_logo-icon {
    font-size: 1.25rem;
    color: var(--bgcolor)
}

.nav_link {
    transition: .3s;
    padding: 10px 0;
    border-radius: 5px;
    margin-bottom: 16px;
    font-size: 16px;
    color: var(--bgcolor)
}

.nav_link:hover,
.nav_link.active,
.nav_link:active {
    color: var(--second-color);
}

.l-navbar .nav .people-group {
    list-style: none;
    padding: 0;
    margin: 16px 0;
    display: flex;
}

.l-navbar .nav .people-group li {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-left: 5px;
}

.l-navbar .nav .people-group li img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.l-navbar .nav .people-group li button {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid var(--bgcolor);
    background-color: transparent;
    color: var(--bgcolor);
}

.l-navbar.show {
    width: calc(var(--nav-width) + 200px);
    right: 0;
}

.l-navbar.show .nav {
    padding: 10px;
}

.close-btn {
    background-color: #f96e5b;
    color: #fff;
    font-size: 20px;
    height: 42px;
    width: 42px;
    line-height: 42px;
    border-radius: 0;
    border: none;
    position: absolute;
    top: 0;
    right: 267px;
    display: none;
    align-items: center;
    justify-content: center;
}

.l-navbar.show .close-btn {
    display: flex;
}

@media screen and (min-width: 992px) {
    .body-con {
        margin: 100px 0 0 0;
        padding-right: calc(var(--nav-width) + 1rem);
    }

    .header {
        padding: 0 calc(var(--nav-width) + 2rem) 0 1rem;
    }

    .header_img {
        width: 40px;
        height: 40px
    }

    .header_img img {
        width: 45px
    }

    .l-navbar {
        right: 0;
    }

    .l-navbar .close-btn {
        display: none !important;
    }

    .body-pd {
        padding-right: calc(var(--nav-width) + 208px)
    }
}

.l-navbar .res-bar {
    width: 68px;
    min-width: 68px;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-top: 80px;
}

.l-navbar .res-bar .header_toggle .bx-menu {
    width: 44px;
    height: 44px;
    background-color: var(--bgcolor);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--second-color);
    border-radius: 10px;
    color: var(--second-color);
}

.l-navbar .res-bar .header_toggle .bx-menu.bx-x {
    color: var(--bgcolor);
    background-color: var(--second-color);
}

.l-navbar .res-bar .user-account {
    width: 48px;
    height: 48px;
    margin-top: 20px;
    border: 2px solid #FBBE37;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--second-color);
}

.l-navbar .res-bar .user-account img {
    border-radius: 10px;
    width: 35px;
    height: 35px;
    border-radius: 10px;

}




.header .search-con {
    display: flex;
    align-items: center;
    padding: 0 10px;
    height: 50px;
    width: 400px;
    border-radius: 30px;
    background: #F1F2F7;
}


.header .search-con input {
    border: none;
    outline: none;
    background-color: transparent;
    height: 100%;
    width: 100%;
}

.header .search-con button {
    height: 50px;
    padding: 5px 8px;
    color: var(--main-color);
    align-items: center;
    justify-content: center;
    border: none;
    background-color: transparent;
    outline: none;
    box-shadow: none;
    display: flex;
}

.header .user-acc {
    background-color: transparent;
    border: none;
    outline: none;
}

.header .user-acc img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.header .user-acc p {
    color: var(---main-color);
}

.header .user-acc span {
    font-size: 12px;
    color: #8B8B8B;
    font-weight: 400;
}

.useroptions {
    list-style: none;
    border-radius: 5px;
    padding: 0;
    width: 260px;

}

.useroptions li {
    display: flex;
    border-bottom: 1px solid #E4E4EF;
}

.useroptions li a {
    width: 100%;
    height: 100%;
    padding: 16px 20px;
    color: #333;
    opacity: .7;
    display: flex;
    align-items: center;
    justify-content: start;

}

.useroptions li a:hover {
    opacity: 1;
    background-color: #efefef;
}


.header-left .notif-drop>button {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: transparent;
    outline: none;
    box-shadow: none;
    width: 50px;
    height: 40px;
    color: #717986;
}

.header-left .dropdown>button span.rounded-circle {
    top: 11px;
    right: 20px;
    padding: 6px;

}

.header-left .notif-menu {
    width: 250px;
    transform: translate(0px, 42px) !important;
}

.header-left .notif-menu li {
    border-bottom: 1px solid #ccc;
}

.header-left .notif-menu li a {
    font-size: 14px;
}

.header-left .notif-menu li a p {
    color: var(--main-color);
    font-size: 12px;
}

.header-left .notif-menu .notfim-bottom a {
    color: var(--main-color);

}

.header-left .user-data img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-left: 10px;
}

.header-left>a {
    width: 50px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    box-shadow: none;
    margin-left: 16px;
    font-size: 22px;
    color: #717986;
}

.header-left>a:hover {
    color: var(--second-color);
}

.header h4 {
    color: var(--second-color);
    font-weight: 500;
}

/* -------------------------------- */
/* index page  */
.tasks-bar {
    background-color: var(--bgcolor);
    border-radius: 6px;
    padding: 20px 16px;
    margin: 10px 0;
}

.tasks-bar .task-con {
    background-color: #FFEEE6;
    padding: 25px 16px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    position: relative;
}

.tasks-bar .task-con.balck-c {
    background-color: #F2F4FA;
}

.tasks-bar .task-con.create-pr {
    justify-content: space-between;
    background-color: var(---main-color);
}

.tasks-bar .task-con.create-pr p,
.tasks-bar .task-con.create-pr h5 {
    color: var(--bgcolor);
}

.tasks-bar .task-con .task-img-con {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background-color: #FDE1D4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--second-color);
    margin-left: 10px;

}

.tasks-bar .task-con.balck-c .task-img-con {
    color: #071F45;
    background-color: rgba(119, 32, 87, 0.11);
}

.tasks-bar .task-con.create-pr .task-img-con {
    background-color: var(--bgcolor);
    color: #3C21F7;

}

.tasks-bar .task-con h5 {
    color: #192434;
    font-size: 15px;
    font-weight: 700;
}

.tasks-bar .task-con p {
    color: #243A5C;
    font-size: 10px;
    font-weight: 600;
}

.tasks-bar .task-con span {
    position: absolute;
    color: #625F6D;
    font-size: 12px;
    font-weight: 500;
    width: 20px;
    height: 20px;
    background-color: #E0E0E0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 7px;
    left: 7px;
}

.home-statics {
    background-color: var(--bgcolor);
    padding: 16px;
    border-radius: 17px;
    box-shadow: 0px 21px 94px 0px rgba(0, 0, 0, 0.03);
}

.home-statics .form-select {
    display: flex;
    padding: 6px 14px;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    box-shadow: none;
    border-radius: 20px;
    color: #9AA0A4;
}


.time-select {
    margin: 10px;
}

.time-select .soption {
    cursor: pointer;
    color: #C4CCD0;
    font-size: 11px;
    font-weight: 700;

}

.time-select>input {
    width: 0;
    height: 0;
    position: absolute;
}

.time-select>input:checked~.soption,
.soption:hover {
    color: var(--second-color);
}

.morris-hover.morris-default-style {
    background-color: var(--bgcolor);
    border: none;
    padding: 0;
}

.morris-hover.morris-default-style .morris-hover-row-label {
    background-color: var(--second-color);
    color: var(--bgcolor);
    width: 100%;
    padding: 5px;
    margin-top: 0;
    border-radius: 5px;
    height: 100%;
}

.morris-hover.morris-default-style .morris-hover-point {
    padding: 2px 5px;
    color: var(---main-color) !important;
}

.massages-area {
    background-color: var(--bgcolor);
}

.massages-area h5 {
    padding: 16px;
    border-bottom: 1px solid #dddddd55;
}

.massages-area .massageslist .message {
    padding: 12px 16px;
}

.massages-area .massageslist .message .message-send-img {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #FCA89E;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    margin-left: 12px;

}

.massages-area .massageslist .message .message-send-img img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.massages-area .massageslist .message p {
    font-size: 18px;
    color: #000;
}

.massages-area .massageslist .message span {
    color: #65676D;
    font-size: 12px;
}

.projects-table {
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.05);
}

.projects-table thead tr th {
    background-color: #F8F8F8;
    padding: 20px 0;
    text-align: center;
    color: #25364F;
    font-size: 16px;
    font-weight: 500;
    border-bottom: .5px solid #D7DADC !important;

}

.projects-table td {
    text-align: center;
    vertical-align: middle;
    padding: 12px 8px;
}

.projects-table td .project-info img {
    border-radius: 7px;
    width: 34px;
    height: 34px;
    margin-left: 5px;
}

.projects-table td .pro-members img {
    border-radius: 50%;
    width: 25px;
    height: 25px;
    margin-left: 5px;
}

.projects-table td .dropdown .dropdown-toggle {
    color: #8B8B8B;
}

.projects-table td .status {
    width: 74px;
    height: 30px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.projects-table td .status.not-active {
    color: #F26E6E;
    background: #FFF5F5;
}

.projects-table td .status.active {
    color: #56C456;
    background: #F5FBF5;
}

/* ------------------------------------------------------- */
/* allproject page  */
.allprojects .allprojects-header {
    background-color: var(--bgcolor);
    border-radius: 8px;
    border: 1px solid #F1F2F7;
    padding: 16px 8px;
}

.allprojects .allprojects-header .create-pr {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--second-color);
    color: var(--bgcolor);
    border: none;
    width: 147px;
    height: 48px;
    border-radius: 26px;
    font-size: 18px;
    font-weight: 300;

}



.allprojects .allprojects-header .soption {
    font-size: 14px;
    font-weight: 400;
    position: relative;
}

.allprojects .allprojects-header .time-select>input:checked~.soption {
    color: var(---main-color);
    font-weight: 700;
}

.allprojects .allprojects-header .time-select>input:checked~.soption::after {
    content: "";
    position: absolute;
    top: -5px;
    right: 50%;
    transform: translateX(50%);
    width: 4px;
    height: 4px;
    background-color: var(--second-color);
    border-radius: 50%;
}

.allprojects .allprojects-header .nav-pills .nav-link {
    color: #ccc;
}

.allprojects .allprojects-header .nav-pills .nav-link.active {
    background-color: var(---main-color);
    color: var(--bgcolor);
}

.prodject-card {
    background-color: var(--bgcolor);
    border-radius: 8px;
    border: 1px solid #E5E5E5;
    padding: 16px;
    color: #717986;
}

.prodject-card .prodject-name {
    color: #3C557A;
    font-size: 18px;
    font-weight: 500;
    margin-top: 0;
}

.prodject-card .projects-status p {
    font-size: 13px;
    font-weight: 500;
}

.prodject-card .projects-status span {
    width: 6px;
    height: 6px;
    display: inline-block;
    background-color: red;
    border-radius: 50%;
    margin-left: 10px;

}

.prodject-card .projects-status.active {
    color: #3754DB;
}

.prodject-card .projects-status.active span {
    background-color: #3754DB;
}

.prodject-card .projects-status.wait {
    color: #F0BB00;
}

.prodject-card .projects-status.wait span {
    background-color: #F0BB00;
}

.prodject-card .projects-status.notactive {
    color: #FF285C;
}

.prodject-card .projects-status.notactive span {
    background-color: #FF285C;
}

.task-content .dropdown .dropdown-toggle,
.prodject-card .dropdown .dropdown-toggle {
    color: #8B8B8B;
    padding-left: 0;
}

.task-content .dropdown .dropdown-menu,
.prodject-card .dropdown .dropdown-menu {
    top: 0;
    left: 120px !important;
}

@media (max-width:768px) {

    .task-content .dropdown .dropdown-menu,
    .prodject-card .dropdown .dropdown-menu {
        left: 35px !important;
    }
}


.prodject-card .project-numbers {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 7px;
    background: #F9F9F9;
    padding: 8px;

}

.prodject-card .project-numbers>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 8px;
    width: 50%;

}

.prodject-card .project-numbers>div>p {
    color: #3C557A;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.prodject-card .project-numbers>div>span {
    color: #717986;
    font-size: 12px;
    font-weight: 400;
}

.prodject-card .project-numbers>div:first-child {
    border-left: 1px solid #CDDCEE;
    ;
}

.prodject-card .project-memebers img {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    margin-left: 5px;
}

.prodject-card .project-memebers button {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: var(--bgcolor);
    border: 1px solid #8B8B8B;
}

.prodject-card .progress {
    height: 7px;
}

.progress-bar {
    background-color: #071F45;
}

.create-modal .modal-content {
    border-radius: 20px;
    padding: 20px;

}

.create-modal .modal-content .modal-header {
    border: none;
}

.create-modal .modal-content .modal-header button {
    width: 43px;
    height: 43px;
    box-shadow: 1px 1px 6px -3px rgb(0 0 0 / 65%);
    border-radius: 50%;
    background-color: #f6f8fd;
    padding: 0;

}

.form-label {
    width: 100%;
    text-align: start;
    margin-bottom: 10px;
    color: #2C2E3A;
    font-size: 16px;
    font-weight: 400;
}

.fileupload {
    border: 2px solid #C1C2C4;
    border-radius: 15px;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 20px;
    margin-top: 20px;
    cursor: pointer;
    color: #ddd;
}

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

.formInput {
    height: 50px;
    width: 100%;
    padding: 8px 16px;
    outline: none;
    box-shadow: none;
    border: 1px solid #D9D9D9;
    border-radius: 7px;
    font-size: 18px;
    color: #4D5163;
}

.formInput::placeholder {
    color: #D9D9D9;
}

.formInput:focus,
.formInput:hover {
    outline: none;
    box-shadow: none;
}

textarea.formInput {
    height: 200px;
    resize: none;
}

.form-submit {
    width: 250px;
    height: 50px;
    background: transparent;
    border-radius: 8px;
    color: var(---main-color);
    border: 1px solid var(---main-color);
    font-size: 18px;
}

.form-submit:hover {
    background: var(---main-color);
    color: var(--bgcolor);
}

/* ------------------------------------------------ */
/* alltasks */
.tasks-hesader {
    border-radius: 8px;
    border: 1px solid #F1F2F7;
    background: #FFF;
    padding: 16px 8px;
}

.tasks-hesader .invite-ntn {
    background-color: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 16px;
    padding: 3px 8px;
}

.tasks-hesader .invite-ntn span {
    width: 15px;
    height: 15px;
    border-radius: 5px;
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(80, 48, 229, 0.20);
}

.company-members {
    height: 35px;
    align-items: center;
}

.company-members>div {
    border: 2px solid var(--bgcolor);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    padding: 0;

}

.company-members>div img,
.company-members>div button {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.company-members>div button {
    border: none;
    background-color: #F4D7DA;
    color: #D25B68;
    font-size: 13px;
    font-weight: 500;
}

.tasks-hesader .form-select {
    border-radius: 6px;
    border: 1px solid #787486;
    width: 122px;
    height: 40px;
    outline: none;
    box-shadow: none;
    color: #787486;
}

.task-List {
    min-height: 20px;
}

.tasks-group {
    border-radius: 16px;
    background: var(--bgcolor);
    padding: 16px;
}


.tasks-group-head {
    padding: 16px 0;
}

.tasks-group-head span {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.tasks-group.inprogress .tasks-group-head {
    border-bottom: 4px solid #FFA500;
}

.tasks-group.inprogress .tasks-group-head span {
    background-color: #FFA500;
}

.tasks-group.active .tasks-group-head {
    border-bottom: 4px solid #071F45;
}

.tasks-group.active .tasks-group-head span {
    background-color: #071F45;
}

.tasks-group.inreview .tasks-group-head {
    border-bottom: 4px solid #6197E9;
}

.tasks-group.inreview .tasks-group-head span {
    background-color: #6197E9;
}

.tasks-group.finished .tasks-group-head {
    border-bottom: 4px solid #8BC48A;
}

.tasks-group.finished .tasks-group-head span {
    background-color: #8BC48A;
}

.tasks-group-head h5 {
    color: #0D062D;
    font-size: 16px;
    font-weight: 500;
}

.tasks-group-head p {
    background-color: #E0E0E0;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #625F6D;
    font-size: 12px;
    font-weight: 500;
}

.task-content {
    border-radius: 8px;
    border: 1px solid #E5E5E5;
    background: var(--bgcolor);
    transition: all .5s;
    cursor: grab;
    position: relative;
}

.task-content .task-des {
    color: #787486;
    font-size: 12px;
    font-weight: 400;
}

.task-content .task-staus {
    border-radius: 4px;
    background: rgba(223, 168, 116, 0.20);
    color: #D58D49;
    font-size: 12px;
    font-weight: 500;
    padding: 5px;
}

.task-content h5 {
    color: #0D062D;
    font-size: 18px;
    font-weight: 600;
}

.task-content .task-info p {
    color: #787486;
    font-size: 12px;
    font-weight: 500;

}

.task-card.sortable-chosen,
.task-card.ghost {

    border-radius: 10px;
    border: 1px dashed rgba(80, 48, 229, 0.59);
    background: rgba(80, 48, 229, 0.06);
}

.task-card.sortable-chosen .task-contentas,
.task-card.ghost .task-content {
    opacity: 1 !important;
    transform: rotate(-5deg) translateY(-20px);
    cursor: grab;

}

.task-card .task-shadow {
    width: 100%;
    height: 100%;
    background-color: green;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 8px;

}

.addtask-btn {
    border-radius: 6px;
    border: 1px dashed #071F45;
    background: #F3F0FD;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: #0D062D;
    font-size: 16px;
    font-weight: 500;
}


.multiselect-container>li {
    padding: 0;
    font-size: 14px;
    margin: 12px;
}

.multiselect-container>li.multiselect-group label {
    margin: 0;
    padding: 3px 20px 3px 20px;
    height: 100%;
    font-weight: 700;
}

.multiselect-container>li.multiselect-group-clickable label {
    cursor: pointer;
}

.multiselect-container>li>a {
    padding: 5px 0;
    color: #000;
    display: block;
}

.multiselect-container>li>a>label {
    display: block;
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.multiselect-container>li>a>label:before {
    content: "";
    display: inline-block;
    position: relative;
    height: 20px;
    width: 20px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    background-color: transparent;
    margin-right: 15px;
    vertical-align: middle;
}

.multiselect-container>li.active>a>label:before {
    font-family: 'fontAwesome';
    content: "✓";
    color: #fff;
    background-color: #52de97;
    border: 0;
    display: inline-block;
    text-align: center;
    padding: 0;
    line-height: 1.2;
    padding-left: 2px;
}

.multiselect-container>li>a>label.radio,
.multiselect-container>li>a>label.checkbox {
    margin: 0;
}

.multiselect-container>li>a>label>input[type=checkbox] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}


.form-inline .multiselect-container label.checkbox,
.form-inline .multiselect-container label.radio {
    padding: 3px 20px 3px 40px;
}

.form-inline .multiselect-container li a label.checkbox input[type=checkbox],
.form-inline .multiselect-container li a label.radio input[type=radio] {
    margin-left: -20px;
    margin-right: 0;
}

.btn-group {
    width: 100% !important;
}

.multiSelect .btn-group-vertical>.btn,
.btn-group>.btn {
    background-color: green;
    width: 100% !important;
    background-color: transparent;
    outline: none;
    box-shadow: none;
    text-align: start;
}

.multiSelect .btn-group-vertical>.btn::after,
.multiSelect .btn-group>.btn::after {
    left: 20px;
    top: 20px;
    position: absolute;
}

.multiSelect .dropdown-menu {
    width: 100%;
}

/* ------------------------ */
/* alltasks-empty page  */
.alltasks-empty {
    width: 100%;
    height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.alltasks-empty h5 {
    color: #000;
    font-size: 28px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.56px;
}

.alltasks-empty p {
    color: #6D6C6C;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.32px;
}

.alltasks-empty button {
    display: flex;
    width: 213px;
    height: 57px;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    background: #071F45;
    border: none;
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
}

.emp-select img {
    width: 35px;
    height: 35px;
    margin-left: 10px;
}

.emp-select p {
    color: #121212;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
    letter-spacing: 0.5px;
}

.emp-select h5 {
    color: #41475E;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 10px;
}

.bootstrap-select {
    width: 100% !important;
}

.bootstrap-select>.dropdown-toggle {
    height: 50px;
    width: 100%;
    outline: none;
    box-shadow: none;
    border: 1px solid #D9D9D9;
    border-radius: 7px;
    font-size: 18px;
    color: #4D5163;
    background-color: transparent;
}

.bootstrap-select .dropdown-toggle .filter-option {
    text-align: start;

}

.filter-option {
    display: flex;
    align-items: center;
    font-size: 16px;
}

.bootstrap-select .dropdown-menu li a {
    display: flex;
    align-items: center;
}

.bootstrap-select span.text {
    margin-right: 0 !important;
    width: 100%;
    padding-left: 20px !important;
}

.bootstrap-select .bs-ok-default:after {
    color: #5fc55f9b;
}

.bootstrap-select.show-tick .dropdown-menu .selected span.check-mark {
    position: absolute;
    display: inline-block;
    right: unset;
    left: 15px;
    top: 50% !important;
    transform: translateY(-50%);
}

.bs-searchbox .form-control {
    border-radius: 200px;
    background: #F4F7FC;

}

.dropify-wrapper {
    height: 100px !important;
    border-radius: 7px;
}

.fileupload-preogress img {
    height: 41px;
    width: 35px;
    margin-left: 16px;

}

.fileupload-preogress button {
    background-color: transparent;
    border: none;
    text-decoration: underline;
    color: var(--second-color);
    font-size: 12px;
    padding: 0 10px;

}

.fileupload-preogress .progress {
    height: 5px;
    border: 10px;
    background: #089ff72e;

}

.fileupload-preogress .progress-bar {
    background-color: #08A0F7;
}

.active-check p {
    color: #0D062D;
    font-size: 14.573px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
}

.active-check span {
    color: #787486;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
}

.active-check.form-switch .form-check-input {
    height: 30px;
    width: 60px;
    cursor: pointer;
}

/* ------------------- */
/* task details page  */
.breadcrumb {
    background-color: var(--bgcolor);
    border-radius: 8px;
    border: 1px solid #F1F2F7;
    display: flex;
    align-items: center;

}

.breadcrumb a {
    color: var(---main-color);
    font-size: 23px;
    letter-spacing: -0.46px;
}

.breadcrumb li.active {
    color: var(--second-color);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.8px;
}

.task-details-con {
    border-radius: 16px;
    background: #FFF;
}

.task-details-con .task-details-header .task-title p {
    color: #A3A1A1;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}

.task-details-con .task-details-header .task-title h5 {
    color: #000;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.48px;
}

.task-details-con .task-details-header .task-actions button {
    border-radius: 4px;
    border: 1px solid var(---main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    padding: 10px;
    margin: 5px;
    background-color: transparent;
    color: var(---main-color);
    font-size: 16px;
    font-weight: 400;

}

.task-details-con .task-details-header .task-actions button:hover {
    border-color: var(--second-color);
    background-color: var(--second-color);
    color: var(--bgcolor);
}

.task-comments,
.task-description,
.task-feaxtures {
    border-bottom: 1px solid #D4D4D4;
}

.task-feaxture p {
    color: #A3A1A1;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;

}

.task-feaxture h5 {
    color: #16171D;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.42px;

}

.task-feaxture img,
.task-feaxture button {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    margin-left: 5px;
}

.task-feaxture button {
    margin-left: 0;
    background-color: transparent;
    border: 1px solid #8B8B8B;
    color: #8B8B8B;
}

.task-feaxture .task-level {
    border-radius: 4px;
    background: rgba(223, 168, 116, 0.20);
    color: #D58D49;
    font-size: 12px;
    font-weight: 500;
    padding: 5px;
    text-align: center;
}

.task-feaxture .t-status {
    border-radius: 4px;
    background: rgba(223, 168, 116, 0.20);
    color: #F26E6E;
    font-size: 12px;
    font-weight: 500;
    padding: 5px;
    text-align: center;
}

.task-description h5 {
    color: #A3A1A1;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}

.task-description h4 {
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.48px;
}

.add-comment img.user-img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    margin-left: 12px;
}

.add-comment form {
    border-radius: 4px;
    border: 0.6px solid var(--gray-5, #E0E0E0);
    background: #FFF;
    width: 100%;
    padding: 8px;
}

.add-comment #mceu_7-body {
    display: none;
}


.mce-panel {
    background-color: transparent !important;
    border: none !important;
    width: 100% !important;
}

.add-comment .mce-toolbar-grp {
    position: absolute !important;
    bottom: 0;
    right: 0;
    left: unset;
    display: flex;
    justify-content: flex-end;
}

.add-comment .mce-toolbar-grp .mce-btn button {
    border: none;
}

.add-comment .mce-toolbar-grp .mce-btn button:hover {
    border: none;
}


.add-comment .mce-btn-group .mce-btn {
    background-color: transparent;
}

.add-comment .mce-btn-group .mce-btn:hover {
    background-color: transparent;
    border: none;
}

.add-comment .mce-reset {
    width: 50% !important;
    margin: 0 auto !important;
    display: flex;
    flex-direction: column;
    background-color: #f2f0f0 !important;
}

.add-comment .comment-sub {
    border-radius: 8px;
    background: #071F45;
    display: flex;
    width: 84.49px;
    height: 33.75px;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    border: none;
    color: #F2F2F2;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.task-comment img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    margin-left: 12px;

}

.task-comment .u-name {
    color: #333;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.task-comment .c-date {
    color: #636468;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.task-comment h5 {
    color: #A3A1A1;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}

.submenuModal .modal-content,
.ckecklistModal .modal-content {
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0px 30px 60px 0px rgba(32, 56, 85, 0.15);
}

.newcardModal .modal-header,
.submenuModal .modal-header,
.ckecklistModal .modal-header {
    border: none;
}

.newcardModal .modal-header button,
.submenuModal .modal-header button,
.ckecklistModal .modal-header button {
    color: #95A3B9;
    font-size: 12px;
    font-weight: bold;
}

.ckecklistModal label {
    color: #121212;
    font-size: 15px;
    font-weight: 400;
    line-height: 23px;
    letter-spacing: 0.3px;
    margin-bottom: 8px;
}

.ckecklistModal .list-title-input {
    display: flex;
    align-items: center;
    justify-content: var(--bgcolor);
    padding: 5px 16px;
    width: 100%;
    justify-content: space-between;
    border-radius: 8px;
    border: 1px solid rgba(137, 137, 137, 0.40);
    background: #F6F8FD;
    height: 37px;

}

.ckecklistModal .list-title-input input {
    width: 100%;
    height: 100%;
    margin: 0 10px;
    background-color: transparent;
    border: none;
    box-shadow: none;
    outline: none;
    color: #121212;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px;
    letter-spacing: 0.3px;
}

.ckecklistModal .list-title-input button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 4px;
    border: 1px solid #DBDBDB;
    background: #FFF;
}

.ckecklistModal .list-input-con {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #F6F8FD;
    padding: 20px;
}

.ckecklistModal .list-input-con input {
    height: 57px;
    width: 100%;
    border-radius: 8px;
    border: 1px solid #CACACA;
    background: #FFF;
    border: none;
    box-shadow: none;
    outline: none;
    padding: 16px;
}

.submit-addlist {
    width: 129px;
    height: 33px;
    color: #071F45;
    font-size: 14px;
    font-weight: 300;
    border: 1px solid #071F45;
    background-color: transparent;
    border-radius: 7px;
    margin-top: 16px;
}

.ckecklistModal .submit-addlist:hover {
    background-color: #070707;
    color: var(--bgcolor);
}

.submenuModal .form-con {
    border-radius: 8px;
    border: 1px solid rgba(137, 137, 137, 0.40);
    background: #F6F8FD;
    padding: 16px;
}

.newcardModal textarea {
    border-radius: 8px;
    border: 1px solid #CACACA;
    background: #FFF;
    height: 250px;
    padding: 16px;
    resize: none;
    outline: none;
    width: 100%;
}

.newcardModal hr {
    margin: 0;
    color: inherit;
    background-color: currentColor;
    border: 0;
    opacity: .25;
}

.newcardModal .newcard-user svg,
.newcardModal .newcard-taskname svg {
    color: #C4CAD3;
}

.newcardModal .newcard-user button,
.newcardModal .newcard-taskname button {
    width: 24px;
    height: 24px;
    border: 1.2px dashed #D0D0D0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D0D0D0;
    background-color: transparent;
    border-radius: 50%;
}

.newcardModal .newcard-taskname .card-task-name {
    padding: 12px 16px;
    border-radius: 200px;
    background: #089ff72f;
    color: #1778B0;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 12px;
    letter-spacing: 0.5px;
}

.newcardModal .newcard-user img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-left: 12px;
}

.newcardModal .submit-newcard {
    border-radius: 8px;
    background: #071F45;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 16px auto;
    height: 42px;
    width: 150px;
    border: none;
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
}

/* ---------------------------- */
/* report page  */
.pageheader {
    background-color: #fff;
    padding: 16px 20px;
}

.pageheader h4 {
    color: #101C56;
    font-size: 23px;
    font-weight: 400;
    letter-spacing: -0.46px;
}

.report-emp img {
    width: 39px;
    height: 39px;
    border-radius: 50%;
    margin-left: 5px;

}

.reports-table th {
    color: #25364F;
}

.reports-table td {
    color: #4D5163;
}

.emp-repo-status {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 34px;
    background: #F0F6FF;
    color: #25364F;
    font-size: 14px;
    font-weight: 400;
    padding: 8px;

}

.emp-repo-status.not-fin {
    background-color: #FCE1E1;
}

.show-report {
    width: 121px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    border: 1px solid #071F45;
    color: #E9662D;
    font-size: 14px;
    font-weight: 400;
}


.show-report:hover {
    border-color: #E9662D;
    background-color: #E9662D;
    color: var(--bgcolor);
}


/* ----------------------------- */
/* empreport page  */
.task-staticts {
    border-radius: 17px;
    background: #FFF;
    box-shadow: 0px 2.767256498336792px 2.2138051986694336px 0px rgba(0, 0, 0, 0.02);
}

.task-staticts-header p {
    color: #1C2D70;
    font-weight: 500;
}

.task-staticts-header {
    border-bottom: 1px solid #D9D9D9;
}

.task-staticts-header span {
    font-size: 14px;
}

.task-staticts-header .form-select {
    width: 100px;
    border: none;
    outline: none;
    box-shadow: none;
    font-size: 14px;
    padding: 0;
    color: var(--second-color);
    font-weight: 300;

}

.empreport-header {
    border-radius: 8px;
    border: 1px solid #F1F2F7;
    background: #FFF;
    padding: 8px 16px;
}

.empreport-header .form-select {
    border-radius: 6px;
    border: 1px solid #787486;
    width: 150px;
    height: 40px;
    color: #787486;
    font-size: 16px;
    font-weight: 500;
    outline: none;
    box-shadow: none;
}

.empreport-header .breadcrumb {
    border: none;
    padding: 0;
}

/* -------------------- */
/* employees */

.memebers-page .pageheader button,
.meeting-page .pageheader button,
.employees-page .pageheader button {
    border-radius: 26px;
    background: #E9662D;
    width: 181px;
    height: 48px;
    flex-shrink: 0;
    border: none;
    color: var(--bgcolor);
}

/* ---------------------- */
/* emp screens page  */
.screen-con {
    position: relative;
    border-radius: 10px;
    background-color: var(--bgcolor);
}

.screen-con .open-screenModal {
    position: absolute;
    border: 2px solid var(--bgcolor);
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 5px;
    top: 5px;
    right: 5px;
    z-index: 10;
    color: var(--bgcolor);
}

.screen-con .screenimg-con {
    position: relative;
    width: 100%;
    height: 150px;
}

.screen-con .screenimg-con img {
    width: 100%;
    height: 100%;
}

.screen-con .screenimg-con .screen-num {
    position: absolute;
    background-color: #cccccc5f;
    color: #fff;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    left: 10px;
    bottom: 10px;
}

.screen-con .time-spend {
    width: 100%;
    align-items: center;
}

.screen-con .time-spend span {
    color: #ccc;
    margin: 0 8px;
}

.screen-con .time-spend .progress {
    width: 100%;
    height: 12px;
}

.screen-con .time-spend .progress-bar {
    background-color: #a2e7a2;
}

.screenModal .modal-header button {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: none;
    color: #dd8787;
}

/* ----------------------- */
/* meetting page  */
.meeting-card {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #E1E0E0;
    background: #FFF;
    border-right: 10px solid var(---main-color);
}

.meeting-card img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-left: 12px;

}

.meeting-card h5 {
    color: #25364F;
    font-size: 16px;
    font-weight: 500;
}

.meeting-card p {
    color: #4D5163;
    font-size: 16px;
    font-weight: 400;
}

/* ------------------------- */
/* chat page  */
.chat-list {
    background-color: var(--bgcolor);
}

.chat-list .serarchbox {
    display: flex;
    align-items: center;
    padding: 0 10px;
    height: 50px;
    width: 95%;
    border-radius: 30px;
    background: #F1F2F7;
}


.chat-list .serarchbox input {
    border: none;
    outline: none;
    background-color: transparent;
    height: 100%;
    width: 100%;
}

.chat-list .serarchbox button {
    height: 50px;
    padding: 5px 8px;
    color: var(--main-color);
    align-items: center;
    justify-content: center;
    border: none;
    background-color: transparent;
    outline: none;
    box-shadow: none;
    display: flex;
}

.chat-list .in-chat {
    background-color: var(--bgcolor);
}

.chat-list .in-chat.active,
.chat-list .in-chat:hover {
    background-color: #F5F5F5;
}

.in-chat-con {
    margin-left: 10px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border: 2px solid #FCA89E;
}

.in-chat-con img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.chat-header {
    background-color: var(--bgcolor);
    border-right: 1px solid #eeeeee92;
}

.chat-messages {
    overflow: auto;
    height: 500px !important;

}

.chat-box {
    background-color: #dbe5ff;
    padding: 16px;
    padding-bottom: 50px;
    position: relative;
    overflow-y: auto;
}

.chat-box .chat-message {
    display: flex;
    width: 100%;
    justify-content: flex-start;
}


.chat-box .chat-message.inbox-mes {
    justify-content: flex-end;
}


.chat-box .chat-message .message-content {
    border: 1px solid var(--main-color);
    border-radius: 5px;
    background-color: var(--main-color);
    color: var(--bgcolor);
}

.chat-box .chat-message .message-content span {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: #011627;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
}

.chat-box .chat-message.sended-mes .message-content {
    color: var(--main-color);
    background-color: var(--bgcolor);
    color: #011627;
    text-align: right;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}

.chat-box .chat-message.inbox-mes .message-content {
    color: var(--bgcolor);
    background-color: var(---main-color)
}

.chat-box .chat-message.inbox-mes .message-content span {
    color: var(--bgcolor);
}

.chat-box .send-message {
    height: 50px;
    padding: 5px 10px;
    border-radius: 8px;
    border: 1px solid rgba(0, 47, 45, 0.10);
    display: flex;
    align-items: center;
    background-color: var(--bgcolor);
    margin-top: 5px;
}

.chat-box .send-message input {
    height: 100%;
    border: none;
    width: 100%;
    outline: none;
    box-shadow: none;
}

.chat-box .send-message .file-upload {
    background-color: transparent;
    border: none;
    margin: 0 16px;
    color: var(--main-color);
    width: 45px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-box .send-message .sub-message {
    border: none;
    color: var(--bgcolor);
    width: 50px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    color: var(---main-color);
    background-color: transparent;

}

/* ----------------------- */
.member-card .member-img-con {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    position: relative;
    margin-bottom: 12px;


}

.member-card .member-img-con span {
    position: absolute;
    color: #071F45;
    right: -15px;
}

.member-card .member-img-con img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
}

.member-card p {
    color: #000;
    font-size: 13px;
    font-weight: 500;
}

.manger-btn {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
    background-color: #EBEFFF;
    color: #071F45;
}

.members-conut {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--second-color);
    color: var(--bgcolor);
    height: 24px;
    padding: 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: -0.12px;
}

.members-area .member-card .member-img-con::before {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    background-color: #ccc;
    border-radius: 50%;
}

.profile-header {
    border-radius: 20px;
    background: #DEE3FB;
    padding: 16px;
    position: relative;

}

.profile-header h5 {
    color: #101010;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.48px;
}

.profile-header p {
    color: #1B1E29;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.32px;
}

.profile-header .profile-img-con {
    position: absolute;
    top: -30px;
    width: 70px;
    height: 70px;
    border-radius: 12px;
    border: 2px solid var(--bgcolor);

}

.profile-header .profile-img-con img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.profile-header .bottom-img {
    position: absolute;
    bottom: 0;
    left: 10%;

}

.profile-header .top-img {
    position: absolute;
    top: 0;
    left: 0;
}

.pro-data-con {
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
}

.pro-data-con .pro-data-header {
    padding: 12px 16px;
    border-bottom: 1px solid #DDDDE5;

}

.pro-data-con .pro-data-header button {
    background-color: transparent;
    border: none;
    color: #717986;
}

.pro-data-details p {
    color: #808080;
    margin-left: 5px;
}

.pro-data-details h5 {
    color: #333;
    font-size: 16px;
}

/* ------------------------------- */
/* joinorder page */
.joinorder-page .join-card {
    background: #FFF;
}

.joinorder-page .join-card .join-card-head {
    background-color: var(---main-color);
    padding: 16px;
}

.joinorder-page .join-card h4 {
    color: var(--second-color);
    font-size: 30px;
    font-weight: 500;
    line-height: 69px;
    letter-spacing: -1.2px;
}

.joinorder-page .join-card h5 {
    color: #071F45;
    font-size: 21px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 0.42px;
}

.joinorder-page .join-card p {
    color: #4F5665;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.joinorder-page .join-card button {
    width: 250px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 16px auto;
    border: none;
    background-color: var(--second-color);
    color: var(--bgcolor);
    border-radius: 5px;
}

.joinorder-page .join-card ul {
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 16px 0;
}

.joinorder-page .join-card .social-links {
    border-top: 1px solid #D9D9D9;
    border-bottom: 1px solid #D9D9D9;

}

.joinorder-page .join-card .social-links li {
    display: flex;
}

.joinorder-page .join-card .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: var(--second-color);
    margin: 0 5px;
    border-radius: 50%;
    box-shadow: 2px 5px 8px 0px rgb(0 0 0/ 8%);
}

.joinorder-page .join-card .join-footer h5 {
    color: #071F45;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}

.joinorder-page .join-card .join-footer h5 span {
    color: var(--second-color);
}

.joinorder-page .join-card .join-footer p {
    color: #000;
    font-size: 10px;
    font-weight: 400;
    line-height: 20px;
}

.joinorder-page .join-card .join-footer a {
    margin: 0 5px;
    color: rgba(0, 0, 0, 0.70);
    font-size: 12px;
    font-weight: 400;
    text-decoration: underline;
}

/* ---------------------------- */
/* ----------------------------------- */
/* login_page */
/* loginpage page  */
.loginpage .formright {
    min-height: 100vh;
}

.loginpage .formright h5 {
    font-weight: 700;
}

.loginpage .formright h6 {
    font-size: 20px;
    font-weight: 500;
    color: rgba(47, 47, 47, 1);
}

.loginpage .formright .form-floating input {
    height: 50px;
    padding: 6px 12px;
    outline: none;
    box-shadow: none;
}

.loginpage .formright .form-floating label {
    padding: 6px;
    display: flex;
    align-items: center;
    opacity: 1;
    right: 10px;
}



.loginpage .formright .form-floating input:focus~label,
.loginpage .form-floating>.form-control:not(:placeholder-shown)~label {
    opacity: 1;
    top: -8px;
    height: 30px;
    background-color: var(--bgcolor);
}

.loginpage .formright .form-floating input:focus~label {
    color: var(--second-color);
}

.loginpage .formright .form-floating input:focus {
    border-color: var(--second-color);
}

.loginpage .formright .form-floating.floatpassword input {
    padding-left: 46px;
}

.loginpage .formright .form-floating.floatpassword .passwordspan {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    border: none;
    background: transparent;
    cursor: pointer;
}

.loginpage a {
    color: var(--second-color);
}

.goolge_login {
    position: relative;
    width: 100%;
    height: 60px;
    background-color: var(--bgcolor);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.11);
    border-radius: 8px;
    border: none;
    font-size: 16px;
    color: rgba(79, 86, 101, 1);
    font-weight: 500;
    margin: 30px 0;

}

.loginpage .goolge_login img {
    position: absolute;
    height: 35px;
    top: 12px;
    right: 15px;
    background-color: var(--bgcolor);
}

.loginpage .or-line {
    border-bottom: 1px solid rgba(191, 191, 191, 1);
    position: relative;
    height: 30px;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
}

.loginpage .or-line span {
    position: absolute;
    width: 70px;
    background-color: var(--bgcolor);
    text-align: center;
    left: 50%;
    transform: translateX(-35px);
    bottom: -10px;
}

.loginpage .form-check-label {
    cursor: pointer;
    color: #ccc;
}

.loginpage .form-check-input {
    cursor: pointer;
    outline: none;
    border-color: #eee;
    background-color: #eee;
    outline: none;
}

.loginpage .form-check-input:focus {
    box-shadow: none;
    border-color: #eee;
}


.loginpage .form-check-input[type=checkbox]:checked {
    background-color: var(--second-color);
    border-color: var(--second-color)
}

.loginpage .form-check.approve label {
    font-weight: 300;
    font-size: 14px;
    color: #000;
}

.loginpage .form-check.approve label a {
    text-decoration: underline;
}

.loginpage .submit {
    width: 100%;
    height: 50px;
    background-color: var(--bgcolor);
    color: var(--second-color);
    border: 1px solid var(--second-color);
    font-size: 18px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.loginpage .submit:hover {
    background-color: var(--second-color);
    color: var(--bgcolor);
}


.loginpage .formleft {
    padding: 0;
    background-color: var(--second-bgcolor);
    min-height: 100vh;
}

.loginpage .formleft .topImag {
    position: relative;
}

.loginpage .formleft .logoImg {
    position: absolute;
    right: 30px;
    top: 20px;
}

.loginpage .formleft h2 {
    color: rgba(7, 31, 69, 1);
    font-weight: 700;
}


/* ------------------------------------------------------------ */


.loginpage .nav-item {
    width: 31px;
    height: 31px;
    background: #E7EEF1;
    margin: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    border-top: 1px solid #D1D9E3;
    border-bottom: 1px solid #D1D9E3;
}

.loginpage .nav-item .nav-link {
    width: 20px;
    height: 20px;
    background-color: var(--bgcolor);
    border-radius: 50%;
    padding: 0;
    margin: 0;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #D1D9E3;
    color: #071F45;
    font-weight: 500;
}

.loginpage .nav-item .nav-link.done ,
.loginpage .nav-item .nav-link.active {
    background-color: var(--second-color);
    color: var(--bgcolor);
    border-color: var(--second-color);
}

.loginpage .nav-pills .line {
    width: 100px;
    height: 10px;
    border-top: 1px solid #D1D9E3;
    border-bottom: 1px solid #D1D9E3;
    background: #E7EEF1;

}

.loginpage .tab-content .form-check {
    padding: 16px 30px 16px 5px;
    border-radius: 4px;
    border: 1px solid #8895A5;
    background: #FCFBFB;
}

.loginpage .tab-content .form-check .form-check-label h5 {
    color: #222324;
    font-size: 18px;
    font-weight: 500;
}

.loginpage .tab-content .form-check .form-check-label p {
    color: #8895A5;
    font-size: 14px;
    font-weight: 400;
}

.features-list {
    padding: 0;
    margin: 16px 0;
    list-style: none;
}

.features-list li {
    color: #000;
    font-size: 18px;
    font-weight: 400;
    margin: 16px 0;
}
.features-list li span{
    color: var(--second-color);
}
.taptitle h3 span{
    color: var(--second-color);
}
