:root {
    --main-color: #970047;
}

* {
    font-family: "Lexend", sans-serif;
    padding: 0;
    margin: 0;
    /* font-weight: 300; */
}

.hide {
    display: none !important;
}

.show {
    display: revert !important;
}

.bg-light-grey {
    background-color: #f2f2f2;
}

.input_box {
    position: relative;
    margin-top: 30px;
    width: 100%;
    height: 40px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

.input_box input, .input_box select {
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    padding: 0 30px;
    color: #000000;
    transition: all 0.2s ease;
    border-bottom: 1.5px solid #aaaaaa;
    font-weight: 300;
}

.input_box input::placeholder {
    color: black;
    font-weight: 300;
}

.input_box input:focus {
    border-color: var(--main-color);
}

/* .input_box i {
    position: absolute;
    top: 36%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #707070;
} */

.input_box i {
    position: relative;
    top: -85%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #707070;
}

.input_box img.field-icon {
    left: 2px;
}

.input_box input:focus ~ img.field-icon {
    color: var(--main-color);
}

.input_box i.pw_hide {
    right: 0;
    font-size: 18px;
    cursor: pointer;
}

.input_box img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #707070;
    margin: 0 0px;
}

.input_box img.pw_hide {
    right: 0;
    font-size: 18px;
    cursor: pointer;
    width: auto;
}

/* Login page css */
.main-container-for-logo-red {
    display: flex;
    justify-content: left;
    align-items: center;
    margin: auto;
    width: 330px;
}


.main-container-for-logo-red-v2 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-container-for-logo-red .abbey-logo-top {
    margin-top: 20%;
    margin-left: 0px;
    margin-bottom: 30px;
}

.main-conatainer-login {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    background-color: white;
    height: 80vh;
    /* margin: 0 auto; */
}
.main-conatainer-login .login-form-container {
    width: 80% !important;
}

.main-conatainer-forgot-password {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    background-color: white;
}

.login-heading h5 {
    color: var(--Black, #000);
    font-family: Lexend;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px;
    /* 128.571% */
}

.login-heading h6 {
    color: var(--Dark, #1e1e1e);
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
    /* 166.667% */
}

.login-heading a,
.login-heading-modal a {
    color: var(--Main, #970047);
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    /* 122.222% */
}

.login-heading-modal h4 {
    color: var(--Black, #000);
    font-family: Lexend;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
    /* 128.571% */
}

.login-heading-modal h6 {
    color: var(--Dark, #1e1e1e);
    font-family: Lexend;
    font-size: 18px !important;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
    /* 166.667% */
}

.main-conatainer-login-v2 {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    background-color: white;
    height: auto;
    /* width: 40vw; */
    /* margin: 0 auto; */
}

.login-form {
    background: #fff;
    width: 330px;
    height: 570px;
    margin: 65px auto;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    border-radius: 4px;
}

.login-form.for-forgot-password-form {
    background: #fff;
    width: 330px;
    height: 420px;
    margin: 65px auto 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    border-radius: 4px;
}

.login-form h1 {
    padding: 35px 35px 0 35px;
    font-weight: 300;
}

.login-form .content {
    padding: 0px;
    text-align: center;
    width: 100%;
}

.login-form .input-field {
    padding: 12px 5px;
}

.login-form .input-field input {
    font-size: 16px;
    display: block;
    font-family: "Rubik", sans-serif;
    width: 100%;
    padding: 10px 1px;
    border: 0;
    border-bottom: 1px solid #747474;
    outline: none;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.login-form .input-field input::-webkit-input-placeholder {
    text-transform: uppercase;
}

.login-form .input-field input::-moz-placeholder {
    text-transform: uppercase;
}

.login-form .input-field input:-ms-input-placeholder {
    text-transform: uppercase;
}

.login-form .input-field input::-ms-input-placeholder {
    text-transform: uppercase;
}

.login-form .input-field input::placeholder {
    text-transform: capitalize;
}

.login-form .input-field input:focus {
    border-color: #222;
}

.login-form a.link {
    text-decoration: none;
    color: #747474;
    letter-spacing: 0.2px;
    text-transform: capitalize;
    display: inline-block;
    margin-top: 20px;
}

.login-form .action {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
}

.login-form .action button {
    width: 100%;
    border: none;
    padding: 18px;
    font-family: "Rubik", sans-serif;
    cursor: pointer;
    text-transform: uppercase;
    background: #e8e9ec;
    color: #777;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 0;
    letter-spacing: 0.2px;
    outline: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.login-form .action button:hover {
    background: #d8d8d8;
}

.login-form .action button:nth-child(2) {
    background: #2d3b55;
    color: #fff;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 4px;
}

.login-form .action button:nth-child(2):hover {
    background: #3c4d6d;
}

.remember-checkbox-lable-login-form {
    margin-bottom: 0.20rem;
}

.forgot-password-and-checkbox-login-form {
    display: flex;
    justify-content: space-between;
}

.forgot-password-and-checkbox-login-form .checkbox-remember {
    float: left;
    font-size: 14px;
    font-weight: 300;
    color: rgba(30, 30, 30, 1);
    margin-left: -3px;
}

.forgot-password-and-checkbox-login-form
    .checkbox-remember
    input[type="checkbox"] {
    accent-color: black;
    height: 20px;
    width: 20px;
    margin-top: 2px;
    border-radius: none !important;
    border: 2px solid #000000 20% !important;
}

/*  */
.text-divider {
    --text-divider-gap: 0.5rem;
    display: flex;
    align-items: center;
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #475467;
}

.text-divider::before,
.text-divider::after {
    content: "";
    height: 1px;
    background-color: #eaecf0;
    flex-grow: 1;
}

.text-divider::before {
    margin-right: var(--text-divider-gap);
}

.text-divider::after {
    margin-left: var(--text-divider-gap);
}

/*  */

.or-text h6 {
    font-weight: 300;
    color: grey;
    font-size: 13px;
}

.hr-text {
    line-height: 1em;
    position: relative;
    outline: 0;
    border: 0;
    color: #475467 !important;
    text-align: center;
    height: 1.5em;
    opacity: 0.6;

    &:before {
        content: "";

        background: linear-gradient(
            to right,
            transparent,
            #475467,
            transparent
        );
        position: absolute;
        left: -80px;
        top: 50%;
        width: 150%;
        height: 1px;
    }

    &:after {
        content: attr(data-content);
        position: relative;
        display: inline-block;
        color: black;

        padding: 0 0.5em;
        line-height: 1.5em;

        color: #475467;
        background-color: #fcfcfa;
    }
}

.forgot-password-and-checkbox-login-form .forgot-password {
    float: right;
    font-size: 12px;
    margin-top: -20px;
    /* margin-left: 55px; */
    text-align: right;
    font-weight: 600;
}

.login-page-bg-image {
    background-image: url("../images/login-page/login-page-img.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    width: 100%;
}

.login-form-singup-link {
    text-align: left;
}

.login-form-singup-link h6 a {
    color: var(--main-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-align: left;
}

.login-form-singup-link h6 {
    /* color: var(--main-color); */
    text-decoration: none;
    font-weight: 300;
    font-size: 15px;
    text-align: left;
}

.main-conatainer-login .login-form .login-form-signin-button, .main-conatainer-forgot-password .login-form .login-form-signin-button {
    background-color: var(--main-color);
    color: white;
    width: 100%;
    height: 52px;
    border: none;
    box-shadow: none;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
}

.main-conatainer-login .login-form .google-microsoft-btn, .main-conatainer-forgot-password .login-form .google-microsoft-btn {
    /* background-color: var(--main-color); */
    color: black;
    width: 100%;
    height: 54px;
    display: block;
    /* outline: 1px black; */
    border: 1px solid grey;
    box-shadow: none;
    background-color: transparent;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    vertical-align: middle;
    line-height: 53px;
}

.main-conatainer-login .login-form .forgot-password-and-checkbox-login-form a, .main-conatainer-forgot-password .login-form .forgot-password-and-checkbox-login-form a {
    color: var(--main-color);
    font-weight: 600;
    text-transform: none;
    font-size: 14px;
}

.side-bar-links {
    text-decoration: none;
    color: white;
}

.user-activity-second-side-bar .dashboard-other-status-sidebar span img {
    color: grey;
    width: 1vw;
}

/* forgot password page css */

.forgot-password-key-svg h3 {
    font-size: 26px;
    font-weight: 600;
    color: black;
    text-align: left;
}

.forgot-password-key-svg-password-reset h3 {
    font-size: 28px;
    font-weight: 700;
    color: black;
    text-align: left;
    display: flex;
    justify-content: flex-start;
}
.forgot-password-key-svg-img {
    width: 56px;
    width: 56px;
}
.forgot-password-key-svg-img img {
    /* font-size: 22px; */
    font-weight: 800;
    color: black;
    text-align: left;
    align-items: flex-start;
    /* margin-left: -225px; */
    margin-bottom: 10px;
    height: 100%;
    width: 100%;
    float: left;
}
.forgot-password-key-svg-text {
    display: flex;
    justify-content: start !important;
    align-items: center;
    width: 100%;
}
.forgot-password-key-svg-text h3 {
    font-family: Lexend;
    font-size: 28px;
    font-weight: 700;
    line-height: 36px;
    letter-spacing: 0px;
    text-align: left;
    color:
    rgba(0, 0, 0, 1);
}
.forgot-password-key-svg span{
    font-size: 22px;
    font-weight: 800;
    color: black;
    text-align: left;
    align-items: flex-start;
    height: 9vh;
    float: left;
}

.forgot-password-msg {
    font-size: 16px;
    font-weight: 400;
    color: black;
    text-align: left;
}

.forgot-password-msg p {
    text-decoration: none;
    font-weight: 300;
    font-size: 16px;
    text-align: left;
}

.reset-pass-msg p {
    text-decoration: none;
    font-weight: 300;
    font-size: 15px;
    text-align: left;
}

.reset-pass-msg {
    color: #1e1e1e;
}

.reset-pass-msg span a {
    color: var(--main-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
}

.reset-pass-msg p {
    font-size: 14px;
    text-align: left;
    font-weight: 300;
}

.back-to-login-link {
    text-align: left;
    position: absolute;
    bottom: 10%;
}

.back-to-login-link a {
    color: #1e1e1e;
    text-decoration: none;
    font-size: 18px;
    font-weight: 300;
}

/* Dashbaord main page css */
.dashbaord-main-side-bar-div {
    background-color: #222;
    height: auto;
}

.main-side-bar-top-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    margin-top: 10px;
    position: fixed;
    top: 0;
    /* border-bottom: 1px solid var(--10, rgba(255, 255, 255, 0.10));
  width: 105px; */
}

.top-heading-side-bar {
    position: fixed;
    top: 65px;
    width: 15.1%;
}

.main-side-bar-top-logo .abbey-logo-top-dark img {
    width: 200px;
    height: 55px;
}

.main-side-bar-top-logo .O-color {
    color: var(--main-color);
}

.dashboard-active-status-sidebar {
    background-color: #665c5c;
    color: white;
    height: 8vh;
    display: flex;
    justify-content: start;
    align-items: center;
    font-weight: 700;
    margin: 10px 12px;
    padding: 10px;
    width: 100%;
    font-size: 1rem;
}

.dashboard-active-status-sidebar-user {
    background-color: none;
    color: #fff;
    height: 8vh;
    display: flex;
    justify-content: start;
    align-items: center;
    font-weight: 700;
    margin: 10px 12px;
    padding: 10px;
    width: 100%;
    font-size: 1rem;
    border: 1px solid grey;
}

.dashboard-active-status-sidebar h5 {
    font-size: 18px;
    font-weight: 700;
    margin-left: 6px;
    color: #fff;
}

.dashboard-active-status-sidebar span img {
    width: 20.281px;
    height: 25.201px;
    flex-shrink: 0;
    margin-left: 5px;
}

.dashboard-other-status-sidebar span img {
    width: 1vw;
    /* height: 1vh; */
}

.dashboard-other-status-sidebar-top span img {
    width: 19.143px;
    height: 25.448px;
    flex-shrink: 0;
    /* height: 1vh; */
}

.active-dashboard-status-bar {
    background-color: #665c5c;
    width: 106%;
    margin-left: -15px;
}

.active-dashboard-status-bar-user {
    background-color: none;
    width: 106%;
    margin-left: -15px;
}

.dashboard-side-bar-down-side {
    /* background-color: #1e1c1c; */
    margin: 0;
    padding: 0;
}

.dashboard-table-circle {
    width: 30px;
    height: 30px;
    background-color: var(--main-color);
    border-radius: 50%;
    margin-right: 5px;
    margin-left: -30px;
    line-height: 30px;
    font-size: 22px;
    font-weight: 200;
    text-align: center;
    color: #ffffff;
}

.dashboard-table-circle-v2 {
    min-width: 30px;
    min-height: 30px;
    max-width: 30px;
    max-height: 30px;
    background-color: var(--main-color);
    border-radius: 50%;
    margin-right: 5px;
    line-height: 30px;
    font-size: 22px;
    font-weight: 300;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.dashboard-table-circle-v2 img, .dashboard-table-circle-v3 img {
    min-width: 100%;
    min-height: 100%;
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.dashboard-table-circle-v3 {
    min-width: 100%;
    min-height: 100%;
    max-width: 100%;
    max-height: 100%;
    background-color: var(--main-color);
    border-radius: 50%;
    line-height: 30px;
    font-size: 22px;
    font-weight: 300;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.dashboard-table-circle-v4 {
    min-width: 30px;
    min-height: 30px;
    max-width: 100px;
    max-height: 100px;
    background-color: var(--main-color);
    margin-right: 5px;
    font-size: 54px;
    font-weight: 300;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.project-name-user-activity-log-v1 {
    margin-left:85px;
}

.table-cell span.last-modified {
    color: var(--Dark, #1e1e1e);

    /* Body/Small */
    font-family: Lexend;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    /* 157.143% */
}

.table-cell .dashboard-table-content {
    color: var(--Dark, #1e1e1e);
    text-align: center;

    /* Body/Small */
    font-family: Lexend;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    /* 157.143% */
}

.user-assigned i {
    font-size: 15px;
}

.dashboard-icons-seperator {
    border-left: 0.5px solid rgba(0, 0, 0, 0.1);
    height: 28px;
    margin-top: 8px;
    margin-right: 8px;
}

.table-cell input[type="checkbox"]:not(.notification-toggle-class) {
    accent-color: black;
    /* background-color: transparent !important; */
    border-radius: 0px !important;
}

.dashboard-other-status-sidebar,
.dashboard-other-status-sidebar-top {
    /* background-color: #665c5c; */
    color: white;
    height: 6vh;
    display: flex;
    justify-content: left;
    align-items: center;
    font-weight: 700;
    margin: 10px 10px;
}

.dashboard-other-status-sidebar h5 {
    color: var(--grey-medium, #888894);
    font-family: Lexend;
    font-size: 18px;
    /* font-style: normal; */
    font-weight: 400;
    /* line-height: 24.4px */
}

.dashboard-other-status-sidebar-top h5 {
    color: rgba(255, 255, 255, 0.7);

    /* Headlines/Title */
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    /* 122.222% */
}

.dashboard-other-status-sidebar span i {
    color: #8a8888;
}

.bi-gear-wide-connected {
    font-size: 18px;
}

.side-menu-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-top-user-account-details {
    background-color: #fff;
    height: 12vh;
    /* border: 2px solid red; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 84% !important;
    z-index: 1000;
}

.dashboard-side-bar-down-side {
    position: fixed;
    bottom: 0;
    text-align: center;
}

.dashboard-side-bar-down-side .dashboard-other-status-sidebar {
    text-align: center;
    height: 6vh;
}

.dashbboard-top-add-client {
    display: flex;
}

.dashbboard-top-add-client-btn button {
    background-color: var(--main-color);
    color: white;
    border: none;
    text-transform: uppercase;
    padding: 7px 20px;
    box-sizing: border-box;
    font-size: 16px;
    font-weight: 600;
}

.dashbboard-top-add-client-btn-mobile-view button {
    display: none !important;
    border: none;
    background-color: #970047;
    padding: 5px 10px;
}
.dashbboard-top-add-client-btn-mobile-view button span img {
    width: 6vw;
    margin-bottom: 4px;
}

.dashbboard-top-add-client button img {
    width: 19.266px;
    height: 16.5px;
    object-fit: contain;
    /* margin-top: 0.2rem; */
}

.main-content-dashboard {
    background-color: #e7e7e7;
    min-height: 100vh;
    /* margin-top: 100px !important; */
}

.recent-activities-border {
    display: inline-flex;
    height: 50px;
    padding: 10px 14px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    border: 1px solid var(--grey-background-grey, #e7e7e7);
    margin-left: -20px;
}




.setting-with-tabs-top-section {
    position: fixed;
}

.settings-with-tabs-content-section {
    margin-top: 100px !important;
}

.dashbaord-show-all-select {
    background-color: #fff;
    padding: 10px;
    color: #1e1e1e;
    width: 14vw;
    margin-top: 1rem;
}

.first-div-top-select-buttons {
    display: flex;
    justify-content: left;
}

.dashbaord-show-all-select select {
    border: none;
    float: right;
    align-items: end;
    text-align: end;
    color: gray;
    font-weight: 300;
}

.dashbaord-show-all-select label {
    font-size: 12px;
    text-align: center;
    vertical-align: middle;
}

.dashbaord-show-all-select .show-all-select {
    margin-left: 6rem;
    color: grey;
}

.first-div-top-icons {
    display: flex;
    margin-top: 1.5rem;
    justify-content: space-evenly;
    cursor: pointer;
}

.user-act-top-nav-tabs-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* .first-div-top-icons {
  margin-top: -3.1rem;
  display: flex;
  justify-content: end;
} */

.bi-three-dots {
    font-size: 20px;
}

.first-div-top-icons div i {
    font-size: 16px;
}

.first-div-top-icons .export {
    color: var(--Dark, #1e1e1e);
    text-align: center;

    /* CAPS/Tiny */
    font-family: Lexend;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 166.667% */
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 10px;
}

.first-div-top-icons .export a {
    color: var(--Dark, #1e1e1e);
    text-align: center;

    /* CAPS/Tiny */
    font-family: Lexend;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 166.667% */
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: 10px;
}

.first-div-top-icons .material-symbols-outlined {
    font-size: 20px;
    color: grey;
}

.dashboard-table-client-list {
    text-align: left;
    /* display: flex; */
}

.user-activity-first-row {
    margin-left: -10px;
}

.dashboard-table-client-list-user-activity-page {
    width: 27%;
}

.folder-and-file-icon span img {
    width: 23.467px;
    height: 16.137px;
    flex-shrink: 0;
    margin-top: 12px;
    margin-right: 8px;
}

.folder-and-file-icon-2 span img {
    width: 18.352px;
    height: 20.426px;
    flex-shrink: 0;
    margin-top: 10px;
}

.folder-and-file-icon:hover,
.folder-and-file-icon-2:hover {
    cursor: pointer;
}

i:hover {
    cursor: pointer;
}

.ios-share-icons:hover {
    cursor: pointer;
}

.dashboard-active-status-sidebar span img:hover {
    cursor: pointer;
}

.dashboard-other-status-sidebar span img:hover {
    cursor: pointer;
}

.dashboard-other-status-sidebar span img {
    width: 1.3vw;
}

.vector-img img {
    height: 1.7vh;

    margin-bottom: 8px;
}

.client-project-logo-top img {
    height: 31.23px !important;
    width: 23.49px !important;
    margin-bottom: 10px !important;
}

.file-logo-client-folders img {
    width: 22px;
    height: 21.67px;
    margin-bottom: 6px;
    object-fit: contain;
    margin-left: 8px;
    margin-top: 3px;
    margin-right: 3px;
}

.file-logo-client-folders-files img {
    width: 20px;
    height: 26px;
    margin-bottom: 10px;
    margin-left: 8px;
}

.people-logo img {
    width: 22px;
    height: 22px;
    margin-bottom: 1px;
    object-fit: contain;
}

.first-cell-client-folder-and-files {
    width: 30% !important;
}

select option {
    /* margin: 40px; */
    /* background: rgba(255, 255, 255, 0.3); */
    color: #000000;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
}

select option:hover {
    /* margin: 40px; */
    background: rgba(65, 61, 61, 0.3);
    color: #000000;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
}

/* Client Project page */

.client-project-active-status {
    background-color: #1b7d8d;
    color: var(--White, #fff);
    /* Bold/Tiny */
    font-family: Lexend;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    color: white;
    display: flex;
    height: 23px;
    padding: 2px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 60px;
    background: var(--CTA-Green, #1b7d8d);
    margin-left: 10px;
    margin-top: 4px;
}

.client-project-done-status {
    color: var(--White, #fff);
    /* Bold/Tiny */
    font-family: Lexend;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    display: flex;
    height: 23px;
    padding: 2px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 60px;
    background: var(--Main, #970047);
    margin-left: 10px;
    margin-top: 4px;
}

.client-project-table-text-data {
    color: var(--Dark, #1e1e1e);

    /* Bold/Small */
    font-family: Lexend;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    /* 128.571% */
    /* margin-top: 7px; */
    text-align: left;
    word-wrap: break-word;
    opacity: 0.8;
    text-transform: capitalize;
}

.dashboard-active-link-name-top {
    display: flex;
}

.dashboard-active-link-name-top h4 {
    color: var(--Dark, #1e1e1e);

    /* Headlines/H1 */
    font-family: Lexend;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
    /* 128.571% */
}

.dashboard-active-link-name-top span.dash-logo img {
    width: 24.891px;
    height: 30.929px;
    margin-top: 3px;
}

.dashboard-active-link-name-top .client-name,
.dashboard-active-link-name-top .client-name a {
    color: var(--main-color);
    font-size: 28px;
    font-weight: 700;
    text-decoration: none;
}

.act-logs {
    color: var(--Dark, #1e1e1e);

    /* Headlines/H1 */
    font-family: Lexend;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
    /* 128.571% */
}

.client-folders-and-project-files-heading h5 {
    font-size: 28px;
    font-weight: 700;
    color: var(--Dark, #1e1e1e);
}

.search-icon-logo img {
    width: 1vw;
}

.file-repo-act-log-v1 {
    font-family: Lexend;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
    color: #1e1e1e;
}

.dashboard-side-bar-down-side {
    background-color: rgba(0, 0, 0, 0.2);
    color: white;
    height: auto;
    width: 16.4vw;
    font-size: 1rem;
    margin-left: -12px;
}

.client-folders-files-top-section {
    margin-top: 10dvh !important;
}
.client-folders-files-top-section-second {
    margin-top: 12dvh !important;
}

/* User Activities */

.user-activity-row-top-nw {
    margin-top: 12dvh !important;
}

.user-activity-two-top-tabs {
    position: fixed;
    top: 0;
    background-color: #fff;
    width: 84%;
    margin-left: -12px;
    z-index: 1000;
}

.file-reports-two-top-tabs {
    position: fixed;
    top: 0;
    background-color: #fff;
    width: 84%;
    margin-left: -12px;
    z-index: 1000;
}

.files-reports-project-view-first-row {
    width: 19% !important;
}

.user-activity-two-tabs-content {
    margin-top: 90px !important;
}

.user-activies-top-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 4px solid var(--main-color);
    padding: 20px;
    font-weight: 700;
}

.user-activies-top-heading-second {
    display: flex;
    justify-content: center;
    align-items: center;
    /* border-bottom: 4px solid var(--main-color); */
    padding: 20px;
    font-weight: 700;
}

.user-activies-top-heading .person-logo {
    color: var(--main-color);
    font-weight: 800;
}

.user-activies-top-heading .person-logo img {
    color: var(--main-color);
    font-weight: 800;
}

.user-activies-top-heading-right-side {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: #000000 50%;
    font-weight: 700;
}

.user-activies-top-heading-right-side h5 {
    color: #8a8888 50%;
    font-weight: 700;
}

.user-activities-top-img-logo img {
    width: 28px;
    height: 28px;
}

.dashbaord-show-all-select-user-activities {
    background-color: #fff;
    padding: 0px;
    color: #1e1e1e;
    width: 14vw;
    height: auto;
    margin-top: 1rem;
}

.dashboard-table-client-list .user-activity-contractor {
    font-family: Lexend;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
}

.user-activity-project-name {
    margin-left: 35px;
}

.last-login-details {
    margin-left: 35px;
}

.action-icons {
    font-size: 20px !important;
    color: #707070;
    display: inline-block;
    margin-top: 3px;
}

.modal-header {
    position: relative;
}

.modal-header-content,
.modal-body-content {
    padding: 2rem !important;
}

.modal .close {
    border: none;
    font-size: 3em;
    color: #8c8c8ccc;
    background: none;
    font-weight: 100;
    position: absolute;
    top: 0;
    right: 0.5em;
}

.dashbaord-show-all-select-user-activity {
    background-color: #fff;
    padding: 10px;
    color: #1e1e1e;
    /* width: 14vw; */
    margin-top: 1rem;
    /* height: 5vh; */
    box-sizing: border-box;
    display: flex;
    font-size: 12px;
    display: flex;
    width: 30%;
    height: 50px;
    padding: 15px;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    /* display: flex;
    width: 257px;
    height: 50px;
    padding: 15px;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin-top: 1rem; */
}

/* .dashbaord-show-all-select-user-activity label {
  margin-top: 5px;
 } */
.dashbaord-show-all-select-user-activity input {
    /* margin-top: 5px; */
    border: none;
    outline: none;
    font-size: 14px;
    font-weight: 300;
}

.dashbaord-show-all-select-user-activity input::placeholder {
    color: rgba(30, 30, 30, 1);
    font-family: Lexend;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
}

.dashbaord-show-all-select-user-activity input:focus {
    /* margin-top: 5px; */
    border: none;
    outline: none;
}

/* .dashbaord-show-all-select-user-activity select.show-all-select{
    margin-left: 5rem;
    border: none;
    text-align:right;
    } */

.invisible-upload-btn {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

tr {
    border: 5px solid grey;
}

body {
    background-color: grey;
}

.table-box {
    margin: auto;
}

.table-row {
    display: table;
    width: 100%;
    margin: 10px auto;
    font-family: sans-serif;
    background: transparent;
    padding: 12px 0;
    color: #555;
    font-size: 13px;
    /* box-shadow: 0 1px 4px 0px rgba(0,0,50,0.3); */
    background-color: #fff;
    position: relative;
}

.table-row-top {
    display: table;
    width: 100%;
    margin: 0px auto;
    font-family: sans-serif;
    background: transparent;
    padding: 0px 0;
    color: #555;
    font-size: 13px;
    /* box-shadow: 0 1px 4px 0px rgba(0,0,50,0.3); */
    background-color: #fff;
}

.table-head {
    background: none;
    box-shadow: none;
    color: var(--Dark, #1e1e1e);
    /* CAPS/Tiny */
    font-family: "Lexend", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 166.667% */
    letter-spacing: 1px;
    text-transform: uppercase;
}

.table-head .table-cell {
    border-right: none;
}

.table-cell {
    display: table-cell;
    width: 15%;
    text-align: center;
    padding: 4px 0;
    border-right: 1px solid #d6d4d4;
    vertical-align: middle;
}

.table-cell .table-start-logo img {
    width: 22.58px;
    height: 26px;
}

.first-cell {
    text-align: left;
    padding-left: 10px;
    /* width: 27%; */
}

.first-cell-client-project {
    text-align: left;
    padding-left: 10px;
    width: 30%;
}

.file-and-folder-detail {
    color: var(--Black, #000);

    /* Bold/Small */
    font-family: Lexend;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    text-align: left;
    word-wrap: break-word;
    margin-top: 4px;
    opacity: 0.8;
}

.folder-and-files-report-dark-text {
    color: var(--Black, #000) !important;

    /* Bold/Small */
    font-family: Lexend;
    font-size: 14px !important;
    font-style: normal;
    font-weight: 600 !important;
    line-height: 18px;
    /* 128.571% */
}

.last-cell {
    border-right: none;
}

a {
    text-decoration: none;
    color: #555;
}

.client-project-heading {
    font-size: 28px;
    font-weight: 700;
}

.user-activity-grey-color {
    color: var(--50, rgba(0, 0, 0, 0.5));
    text-align: center;

    /* Headlines/H1 */
    font-family: Lexend;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
    /* 128.571% */
}



/* set password page */

.input_box .set-password-validation-note {
    text-align: left;
    color: #383836;
    font-family: Lexend;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    /* 150% */
    margin-top: 5px;
}

.input-field-2 {
    /* text-align: left; */
    margin-top: -25px;
}

/* user activities filter pages css */

.user-activities-filtes-bg {
    background-color: rgba(0, 0, 0, 0.05);
    padding: 8px;
    margin-top: 10px;
    font-size: 12px;
    display: flex;
    /* height: 45px; */
    padding: 11px;
    align-items: center;
    gap: 8px;
    font-weight: 400;
}

.user-activities-filtes-bg-clear-all {
    color: var(--main-color);
    padding: 8px;
    margin-top: 10px;
    font-size: 12px;
    display: flex;
    /* height: 45px; */
    padding: 11px;
    align-items: center;
    gap: 8px;
    font-weight: 400;
}

.user-activities-filtes-bg-clear-all:hover {
    cursor: pointer;
}

.user-activity-log-top-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 40px;
    min-width: 275.35px;
    max-width: 275.35px;
    min-height: 64px;
    max-height: 64px;
}

.user-activity-log-v2-logo img {
    /* display: flex; */
    width: 40px;
    height: 40px;
    /* flex-direction: column; */
    /* justify-content: center; */
    flex-shrink: 0;
}

.user-act-log-client-name-table {
    color: var(--Dark, #1e1e1e);

    /* Bold/Small */
    font-family: Lexend;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    /* 128.571% */
    margin-left: 6px;
    opacity: 0.8;
}

.user-activity-log-top-icons .number {
    color: var(--main-color);
    margin-left: 8px;
    /* font-size: 12px;
     font-weight: 300; */

    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
}

.user-activity-log-top-container-icons {
    display: flex;
    justify-content: flex-end;
}

.user-activity-top-logo-people img {
    width: 21.586px;
    height: 14.258px;
    margin-bottom: 5px;
}

.user-activity-top-logo-people-down-up img {
    width: 13.594px;
    height: 16.633px;
    margin-bottom: 5px;
    margin-right: 10px;
}

.client-activity-top-logo-people-down-up img {
    width: 13.594px;
    height: 16.633px;
    margin-bottom: 5px;
    margin-right: 0px;
}

.files-activity-top-logo-people-down-up img {
    width: 13.594px;
    height: 16.633px;
    margin-bottom: 5px;
    margin-right: 5px;
}

.files-activity-top-logo-people-size img {
    width: 18.094px;
    height: 12.984px;
    margin-bottom: 5px;
    margin-right: 5px;
}

.user-activity-activity-log-filter-button {
    background-color: rgba(0, 0, 0, 0.05);
    color: #000000;
    padding: 16px 20px;
    border: none;
    font-family: Lexend;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    max-height: 50px;
}

.user-activity-activity-log-filter-button.active {
    border: 1px solid var(--main-color);
    padding: 16px 20px;
    margin: 0 8px;
    color: var(--main-color);
    background-color: #fff;
    font-family: Lexend;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    max-height: 50px;
}

.user-activities-log-client-info-table {
    text-align: left;
    word-wrap: break-word;
    margin-left: 130px;
    align-items: center;
}
.file-logo-user-activity img {
    width: 10.493px;
    height: 13.527px;
    margin-bottom: 5px;
    margin-right: 5px;
    margin-left: 5px;
}

.dashbaord-show-all-select-user-activity-user-activity-page {
    background-color: #fff;
    padding: 10px;
    color: #1e1e1e;
    width: 13vw;
    /* margin-top: 1rem; */
    height: 5.5vh;
    box-sizing: border-box;
    display: flex;
}

.dashbaord-show-all-select-user-activity-user-activity-page .show-all-select {
    margin-left: 3.5rem;
    border: none;
    float: right;
    color: gray;
}

.user-activity-log-table-data-bg {
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
    color: var(--main-color);
    border-radius: 60px;
    /* width: 10vw; */
    /* height: 2vh; */
    /* font-weight: 200; */
    font-size: 11px;
    padding: 0px 12px 0px 12px;
    font-family: Lexend;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    text-align: center;
    display: inline-block;
    height: 23px;
    min-width: 47px;
    vertical-align: middle;
    max-width: 65px;
    line-height: 21px;
    margin-left: 10px;
    text-transform:uppercase !important;
}

.table-sell-user-activity-log {
    min-width: 35%;
    max-width: 50%;
}

.user-activity-activity-log-top-select {
    display: flex;
    justify-content: space-evenly;
    margin-right: 50px;
}

.user-activity-activity-log-top-select .first-select {
    margin-left: -50px;
}

.user-activity-activity-log-top-select
    .first-select
    .user-activity-logs-select
    select.show-all-select {
    /* margin-left: 68px; */
    text-align: right;
}

.user-activity-logs-first-row {
    width: 12%;
}

.folder-actvity-log-v2-date {
    text-align: end;
}

.user-activity-top-section-button {
    font-family: Lexend;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 166.667% */
    letter-spacing: 1px;
    text-transform: uppercase;
}

.user-activity-user-name-details .contractor-name {
    font-size: 18px;
    color: rgba(30, 30, 30, 1);
    font-weight: 300;
    opacity: 0.8;
}

.user-activity-user-login-top {
    font-family: Lexend;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    color: #1E1E1E;
    opacity: 0.8;
}

.user-image-activity-log-v1 img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
}

.user-activity-log-downlaod-table-info {
    color: var(--main-color);
    font-family: Lexend;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
}

.user-activity-page-user {
    width: 20%;
}

.filter-by-activity-user h6 {
    font-family: Lexend;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    text-transform: capitalize;
    margin-top: 12px;
}

li.nav-item.selected-client {
    background: #ffffff1a;
    padding: 15px 0px 15px 10px;
}

li.nav-item.selected-client a {
    color: #b5b2b2 !important;
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
    letter-spacing: 0px;
    text-align: left;
}

li.nav-item.selected-client a:hover {
    color: #b5b2b2 !important;
    cursor: default;
}

.user-activity-nav-item {
    width: 50%;
    text-align: center;
    /* border-bottom: 5px solid var(--main-color); */
}

.user-activity-nav-item button.active {
    border: none;
    outline: none;
    border-bottom: 5px solid var(--main-color) !important;
    padding: 15px;
    /* margin-left: -12px; */
}

.user-activity-nav-item button {
    width: 100%;
    padding: 15px;
}

.user-activity-separator {
    border-left: 0.5px solid rgb(201, 199, 199);
    height: 50px;
}

.user-activity-nav-item button h5 {
    font-family: Lexend;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
}

.user-activity-nav-item button h5.second {
    font-family: Lexend;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
    color: rgba(0, 0, 0, 0.5) !important;
}

.download-upload-logo img {
    width: 13.594px;
    height: 17.375px;
    margin-bottom: 5px;
    margin-right: 5px;
    object-fit: contain;
}

.user-activity-user-name {
    font-family: Lexend;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    text-transform: capitalize;
}

.recent-activity-log-table-heading {
    font-family: Lexend;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    /* line-height: 20px;  */
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1e1e1e !important;
}

/* file reports project view page */

.file-reports-project-view-select-top select.show-all-select {
    margin-left: 50px;
}

.file-report-project-view-selected-circle {
    /* height: 1vh; */
    /* width: auto; */
    background-color: var(--main-color);
    border-radius: 50%;
    padding: 4px 5px;
    color: white;
    border: none;
}

.file-reports-client-name-icons img {
    /* display: flex; */
    width: 26px;
    height: 26px;
    margin-right: 5px;
    margin-bottom: 5px;
}

/* folder-activity logs pages */
.user-activity-log-top-container-icons-folder-activity {
    display: flex;
    justify-content: flex-start;
}

.folder-activity-log-top-right-side-container .folder-activity-log-heading-top {
    font-size: 12px;
    color: #888894;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.folder-activity-log-top-right-side-container
    .folder-activity-log-heading-top-data {
    font-size: 14px;
    color: #1e1e1e;
    font-weight: 300;
}

.folder-activity-logs-table-bg-container {
    background: var(--grey-base-light-grey, #f2f2f2);
}

.folder-activity-top-first-headings .recent-activities-heading {
    /* display: inline;
      font-size: 12px; */
    font-family: Lexend;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 166.667% */
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #888894 !important;
    font-weight: 400 !important;
    display: inline-flex !important;
    width: 178px;
    /* height: 50px; */
    padding: 14px 0 !important;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    border: 1px solid var(--grey-background-grey, #e7e7e7);
}

.folder-activity-top-first-heading {
    display: inline;
    font-size: 12px;
    color: #888894;
    font-weight: 400;
    padding: 10px 10px;
    border: 1px solid rgb(186, 185, 185);
}

.folder-activity-top-first-heading-v2 .recent-activities-heading {
    display: inline;
    font-size: 12px;
    color: #888894;
    font-weight: 400;
    margin-left: 10px;
}

.folder-activity-top-first-heading-v2 {
    display: inline;
    font-size: 12px;
    color: #888894;
    font-weight: 400;
    padding: 10px 10px;
    border: 1px solid rgb(186, 185, 185);
    margin-left: 20px;
}

.folder-activity-logs-search-bar {
    display: flex;
    height: 50px;
    padding: 15px;
    align-items: center;
    gap: 10px;
    flex: 1 0;
    background-color: #fff;
    border: 1px solid rgb(186, 185, 185);
    width: 25vw;
    /* padding: 5px 10px; */
    margin-left: 1.5rem;
}

.folder-activity-logs-search-bar-2 {
    margin-left: -10px;
    display: flex;
    height: 50px;
    padding: 15px;
    align-items: center;
    gap: 10px;
    flex: 1 0;
    background-color: #fff;
    border: 1px solid rgb(186, 185, 185);
    border: none;
    width: 20vw;
    /* padding: 5px 10px; */
    margin-left: 1.5rem;
}

.folder-activity-logs-search-bar input {
    border: none;
    /* min-height: 5.5vh; */
}

.folder-activity-logs-search-bar input:focus {
    border: none;
    outline: none;
}

.folder-activity-logs-search-bar-v2 {
    display: flex;
    background-color: #fff;
    border: 1px solid rgb(186, 185, 185);
    width: 25vw;
    padding: 5px 10px;
}

.folder-activity-logs-v2-search-bar {
    margin-left: 0px;
}

.folder-activity-logs-search-bar-v2 input {
    border: none;
    /* min-height: 5.5vh; */
}

.folder-activity-logs-search-bar-v2 input:focus {
    border: none;
    outline: none;
}

.folder-activity-top-section-buttons {
    display: flex;
    justify-content: end;
    font-size: 12px;
}

.folder-activity-top-section-buttons .filter-button {
    color: var(--Dark, #1e1e1e);

    /* Body/Small */
    font-family: Lexend;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    /* 157.143% */
    margin-top: 14px;
}

/* .folder-activity-top-section-buttons .folder-activity-buttons-all {
  display: flex;
padding: 16px 20px;
align-items: center;
gap: 8px;
background: var(--5, rgba(0, 0, 0, 0.05));
} */

.folder-icons-folder-activity img {
    width: 14px;
    height: 14px;
    margin-right: 4px;
    margin-bottom: 5px;
}

.folder-texts {
    color: var(--Dark, #1e1e1e);

    /* Body/Small */
    font-family: Lexend;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    /* 157.143% */
}

.folder-activity-top-section-buttons .filter-by-act {
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    color: var(--Dark, #1e1e1e);
    text-align: right;
    margin-top: 15px;
}

.folder-activity-top-section-buttons .folder-activity-buttons button,
.folder-activity-top-section-buttons .folder-activity-buttons a {
    background-color: rgba(0, 0, 0, 0.05);
    padding: 10px 10px;
    color: #000000;
    border: none;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    display: flex;
    padding: 16px 20px;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.folder-activity-top-section-buttons .active a {
    border: 1px solid var(--main-color);
    color: var(--main-color);
    background-color: white;
}

.folder-activity-logs-table .share-color {
    color: var(--main-color);
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
}

.folder-activity-logs-table .client-name {
    color: #1e1e1e;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
}

.folder-activity-logs-table img {
    width: 26px;
    height: 26px;
    margin-right: 5px;
}

.folder-activity-first-cell {
    width: 15%;
}

.folder-activity-logs-v1 {
    width: 20%;
}

.folder-activity-log-top-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 19px 40px;
    min-width: 230.25px !important;
    max-width: 230.25px !important;
    min-height: 64px;
    max-height: 64px;
    border: 1px solid #c7c7c7;
}

.folder-activity-log-top-icons .number {
    color: var(--main-color);
    margin-left: 8px;
    /* font-size: 12px;
      font-weight: 300; */

    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
}

.folder-and-files-report-first-row {
    width: 35%;
}

.table-start-logo-folder img {
    width: 26px;
    height: 26px;
    margin-bottom: 10px;
    margin-left: 10px;
}


input.folder-file-checkbx {
    /* display: flex; */
    width: 20px;
    height: 20px;
    margin-top: 3px;
}

input.user-activity-filter-listed {
    /* display: flex; */
    width: 20px;
    height: 20px;
    /* margin-top: 15px;
  margin-right: 10px; */
}

input.dashboard {
    /* display: flex; */
    width: 20px;
    height: 20px;
    margin-top: 5px;
    margin-right: 5px;
}

input.client-project-checkbox {
    /* display: flex; */
    width: 20px;
    height: 20px;
    margin: 0 !important;
    background-color: transparent !important;
    /*  margin-top: 8px !important;
  margin-right: 5px; */
}

input.folder-files-reports-checkbox {
    margin-top: 3px !important;
}

input.checkbpox-heading-top {
    /* display: flex; */
    width: 20px;
    height: 20px;
    /* margin-top: 8px; */
}

.folder-and-files-reports-top,
.folder-activities-activity-logs-top-section,
.files-activities-activity-top-section,
.user-management-top-section {
    margin-top: 12dvh !important;
}

.setting-top-section {
    margin-top: 10dvh !important;
}

.setting-top-section-v2 {
    margin-top: 70px !important;
}

.setting-with-tabs-top-section {
    position: fixed;
    top: 0;
    width: 84%;
    background-color: #fff;
}

/* files activities logs page */

.files-activity-logs-search-bar {
    display: flex;
    width: 257px;
    height: 50px;
    padding: 15px;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    background: #fff;
    margin-left: 30px;
}

.files-activity-logs-search-bar input {
    font-family: Lexend;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    border: none;
}

.files-activity-top-container {
    display: flex;
}

.files-act-activity-log-search-section img {
    width: 19.5px;
    height: 19.5px;
    flex-shrink: 0;
    margin-bottom: 1px;
}

.last-activities-file-logs {
    display: inline-flex;
    height: 50px;
    padding: 10px 14px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid var(--grey-background-grey, #e7e7e7);
}

.files-activity-logs-top-csv {
    /* padding: 0px 15px; */
    /* padding: 5px 7px; */
    border-radius: 60px;
    border: 1px solid var(--10, rgba(0, 0, 0, 0.1));
    color: var(--main-color);
    display: flex;
    padding: 2px 12px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    height: 4vh;
    font-weight: 300;
    /* text-align: center; */
    /* vertical-align: middle; */
    margin-top: 5px;
}

.files-activity-top-details-section {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border: none !important;
}

.files-activity-top-details-section .user-activity-log-top-icons {
    display: flex;
    justify-content: center !important;
    align-items: center !important;
    padding: 19px 40px !important;
    min-width: 285.35px !important;
    max-width: 326.35px !important;
    min-height: 64px;
    max-height: 64px;
    border: 1px solid #c7c7c7 !important;
}

.file-report-project-view-div span img {
    width: 26px;
    height: 26px;
}

.user-activity-client-icon-photo span img {
    width: 48px;
    height: 48px;
}

.file-report-project-view-div img {
    width: 26px;
    height: 26px;
}

.files-act-log-v1-top-heading h6 {
    font-family: Lexend;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.files-activity-logs-v1-top-heading-icon img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-right: 8px;
}

/* user management page */

.user-management-select-user-activity {
    background-color: #fff;
    padding: 10px;
    color: #1e1e1e;
    width: 13vw;
    margin-top: 1rem;
    height: 7vh;
    box-sizing: border-box;
    display: flex;
    font-size: 12px;
}

.user_management-side-buttons_top {
    margin-top: 1rem !important;
}

.user-management-select-user-activity .show-all-select {
    border: none;
    margin-left: 80px;
    text-align: right;
}

.user-management-container {
    display: flex;
    margin-left: 100px;
}

.user-management-top-side-button {
    margin-top: 14px !important;
}

.status-user-management-top {
    color: var(--Dark, #1e1e1e);
    font-family: Lexend;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
}

/* .user-management-container .status {
      margin-left: 80px;
    } */

.svg-img {
    width: 22px;
    opacity: 0.6;
}

.status-heading {
    margin-left: 140px;
}

p.email-heading {
    margin-left: 130px;
}

.user-management-container .icons span i {
    margin: 0 11px;
    font-size: 15px;
}

.action-suer-management {
    text-align: right;
    margin-right: 10px;
}

.action-suer-management p {
    /* text-align: right; */
    margin-right: 10px;
}

.action-suer-management span {
    /* text-align: right; */
    margin-right: 0px;
}

.action-suer-management span a {
    text-decoration: none;
    color: #1e1e1e;
}

/** Action icon container starts here **/
.action-container .action-icon-container {
    position: absolute;
    top: -18px;
    right: 0;
    opacity: 0;
    display: none;
    transition: all 0.5s;
}

.action-container:hover .action-icon-container {
    opacity: 1;
    display: revert;
    right: 1em;
    top: -18px;
    z-index: 1;
}

.action-container:hover .action-icon-container span {
    padding: 4px;
}

.action-container .dropdown-toggle::after {
    display: none;
}

.action-container .dropdown-menu {
    margin-top: -25px !important;
}

.action-container .slight-up-action-dropdown {
    margin-top: -37px !important;
}

.action-container .dropdown-menu .dropdown-item {
    font-weight: 300;
    font-size: 14px;
    padding-left: 20px;
}

/** Action icon hover background starts here **/
.action-container:hover .action-icon-container span.style-two {
    padding: 8px 11px 11px;
}

.action-container:hover .action-icon-container span.style-three {
    padding: 6px 14px 10px;
}

.action-container:hover .action-icon-container span.style-four {
    padding: 6px 13px 10px;
}

.action-container:hover .action-icon-container span:hover {
    border-radius: 50%;
    background-color: #efefef;
    color: var(--main-color);
}
/** Action icon hover background ends here **/

.user-management-icon-cells {
    width: 30%;
}

.user_management_side_bar_top_border_section {
    padding: 0;
    border-bottom: 1px solid var(--10, rgba(255, 255, 255, 0.1));
    border-top: 1px solid var(--10, rgba(255, 255, 255, 0.1));
}

.common-border-all-pages {
    border-top: 1px solid var(--10, rgba(255, 255, 255, 0.1));
}

.user-management_setting-side-menu {
    margin-left: -5px;
}

.user-management-icon-cells .icons {
    display: flex;
    justify-content: space-between;
    width: 90%;
}

.user-management-email-cells {
    width: 20%;
}

.user-management-top-side-bar {
    border-bottom: 1px solid var(--10, rgba(255, 255, 255, 0.1));
    /* border-top: 1px solid var(--10, rgba(255, 255, 255, 0.10)); */
    width: 120%;
    margin-left: -10px;
    display: flex;
    justify-content: flex-start;
}

.user-management-top-side-bar-first {
    /* border-bottom: 1px solid var(--10, rgba(255, 255, 255, 0.10)); */
    border-top: 1px solid var(--10, rgba(255, 255, 255, 0.1));
    width: 120%;
    margin-left: -10px;
    margin-top: -8px;
    height: 7vh !important;
}

.user-management-active .side-menu-bottom a h5 {
    color: var(--White, #fff);
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
}

/* Setting page */

.setting-bg-container {
    /* display: flex; */
    background-color: #fff;
    height: auto;
}

.seting-form-controler {
    display: flex;
    justify-content: space-evenly;
}

.seting-form-controler .form-group label {
    font-size: 12px;
    color: grey;
}

.seting-form-controler .form-group input {
    font-size: 12px;
    color: black;
    border: none;
    outline: none;
    border-bottom: 1px solid grey;
}

.setting-client-name {
    background-color: var(--main-color);
    border-radius: 50%;
    border: none;
    /* height: ; */
    padding: 10px 20px;
    font-size: 48px;
    color: white;
}

.setting-client-details {
    display: flex;
    justify-content: center;
}

.setting-color-grey-side-bar {
    color: var(--White, #fff) !important;
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24.4px;
    /* 135.556% */
}

.setting-with-tabs-side-menu {
    margin-top: 35px;
}

.user-management-page {
    background-color: #fff;
    padding: 10px;
    color: #1e1e1e;
    width: 14vw;
    margin-top: 1rem;
    height: 5vh;
    box-sizing: border-box;
    /* display: flex; */
    font-size: 12px;
}

.search-logo span img {
    width: 19.5px;
    height: 19.5px;
    flex-shrink: 0;
    margin-top: 20px;
    /* margin-top: 15px; */
}

.search-logo span img:hover {
    cursor: pointer;
}

.user-management-logo img {
    margin-left: -2px;
}

.setting-top-heading h4 {
    color: var(--Dark, #1e1e1e);

    /* Headlines/H1 */
    font-family: Lexend;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
    /* 128.571% */
}

/* custom select */

select:not(.client-project-modal-body-content .input_box select),
input#createdAt, .bootstrap-select .dropdown-toggle {
    padding-top: 11px;
    padding-bottom: 11px;
    padding-left: 10px;
    border: none;
    outline: none;
    color: grey;
    font-size: 12px;
    /* max-width: 220px; */
    width: 100%;
    min-width: 220px;
    min-height: 50px;
    max-height: 50px;
    margin-top: 1rem !important;
}

select.dashboard {
    max-width: 300px;
    min-width: 300px;
}

select option {
    font-size: 12px;
}

.show-all-select {
    font-size: 14px;
    color: #1e1e1e;
    font-weight: 300;
    padding: 14px 14px;
    gap: 8px;
}

.show-all-select option {
    font-size: 12px;
    color: #1e1e1e;
    padding-right: 10px !important;
}

.show-all-select::after {
    content: "\25BC";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    /* color: grey; */
}

.first-cell-dashboard-page {
    width: 32%;
}

.table-cell span.sorting-icon i {
    font-size: 12px;
}

.dashboard-client-name {
    color: var(--Dark, #1e1e1e);

    /* Bold/Small */
    font-family: Lexend;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    /* 128.571% */
    /* margin-top: 7px; */
    margin-left: 5px;
    text-align: left;
    word-wrap: break-word;
    opacity: 0.8;
    text-decoration: none !important;
}

.dashboard-cell span img {
    width: 2vw;
    margin-bottom: 5px;
    /* margin-right: 6px;
    margin-left: 7px; */
}

/* Setting v2 page */

.setting-page-client-profile-conntainer {
    /* display: flex; */
    padding: 20px;
    background-color: #fff;
    color: #000000;
    margin: 25px 15px;
}

.client-profile-container .brand-name {
    float: left;
}

.client-profile-container .brand-name h6 {
    color: var(--Dark, #1e1e1e);

    /* Headlines/H3 */
    font-family: Lexend;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 120% */
}

.client-profile-container .brand-name-edit {
    float: right;
}

/* .setting-page-client-details-form {
    padding:10px
  } */
.setting-page-client-details-form .form-group .input-field-change {
    border: none;
    outline: none;
    border-bottom: 1px solid grey;
    width: 100%;
    font-weight: 300;
    font-size: 16px;
    /* padding:10px; */
}

.setting-page-client-details-form .form-group .form-label {
    text-align: left;
    color: var(--grey-medium, #888894);
    text-align: right;

    /* CAPS/Tiny */
    font-family: Lexend;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 166.667% */
    letter-spacing: 1px;
    text-transform: uppercase;
}

.client-logo-setting-page {
    background-color: var(--main-color);
    text-align: center;
    color: white;
    font-size: 48px;
    border-radius: 50%;
    padding: 12px 8px;
}

.client-logo-change h6 {
    color: grey;
    font-weight: 300;
    font-size: 12px;
    margin-left: 65px;
    margin-top: 0.5rem;
    cursor: pointer;
}

.client-logo-change-new h6 {
    color: grey;
    font-weight: 300;
    font-size: 12px;
    /* margin-left: 65px; */
    margin-top: 0.5rem;
    cursor: pointer;
    text-align: center;
}

.client-profile-container {
    margin-top: 2rem;
    margin-left: 10px;
}

.form-title-bg-setting-page {
    color: var(--main-color);
    font-weight: 900;
}

.security-bg {
    padding: 20px;
    background-color: #fff;
    color: #000000;
    margin: 10px 15px;
}

.security-msg p {
    text-align: left;
    color: var(--grey-medium, #888894);

    /* Body/Regular */
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
    /* 162.5% */
}

.change-password-btn-setting {
    margin-top: 50px;
}

.change-password-btn-setting .change-password-button button {
    background-color: var(--main-color);
    color: white;
    text-align: center;
    font-size: 12px;
    padding: 10px 20px;
    border: none;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    margin-top: 20px;
}

.user-activity-filter-listed-search {
    margin-top: 2rem !important;
}

.user_management-side-bar a {
    color: var(--White, #fff) !important;
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24.4px;
    /* 135.556% */
}

/* setting with tabs */

.setting-with-tab-nav-content ul {
    border: none;
    outline: none;
    text-align: center;
    display: flex;
    justify-content: space-around;
    padding: 15px;
    font-size: 18px;
    font-weight: 800;
}

.setting-with-tab-nav-content .nav-item .nav-link {
    border-bottom: 5px solid var(--main-color);
}

.nav-link {
    border: 5px solid transparent;
    /* Set a default border style for all tabs */
    /* Add other styles for non-active tabs if needed */
}

.nav-link.active {
    border-bottom: 5px solid var(--main-color);
    color: #000000;
}

.nav-link:not(.active) {
    border: 5px solid transparent;
    /* Border style for inactive tabs */
    color: var(--grey-medium, #888894);
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24.4px;
    /* 135.556% */
}

.nav-link:not(.active):hover {
    color: transparent;
}

.hr-line-tabs {
    border-bottom: 5px solid var(--main-color);
}

.nav-pills {
    background-color: transparent;
    padding: 10px 35px;
}

.nav-pills .nav-item .active {
    background-color: transparent;
    padding: 10px 35px;
}

.lined .nav-link {
    border: none;
    border-bottom: 3px solid transparent;
}

.lined .nav-link:hover {
    border: none;
    border-bottom: 3px solid transparent;
}

.lined .nav-link.active {
    background: none;
    color: #555;
    border-color: var(--main-color);
}

/* Change background color for active and inactive pills */
.nav-pills .nav-link {
    background-color: transparent;
    /* Replace with your desired background color */
    color: grey;
    /* Set the text color for the pills */
}

/* Change background color for the active pill */
.nav-pills .nav-link.active {
    background-color: transparent;
    /* Replace with your desired active background color */
}

.swt-client-profile-form {
    margin-left: -50px;
}

/* .swt-client-profile-form-bottom {
margin-left: 10px;
} */
.swt-client-profile-form-bottom {
    margin-top: 25px;
}
.swt-client-profile-form-bottom .form-group .input-field-change {
    border: none;
    outline: none;
    border-bottom: 1px solid rgb(189, 185, 185);
    width: 100%;
    font-weight: 300;
    font-size: 14px;
}

.swt-client-profile-form-bottom .form-group .form-label {
    text-align: left;
    color: var(--grey-medium, #888894);
    text-align: right;

    /* CAPS/Tiny */
    font-family: Lexend;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 166.667% */
    letter-spacing: 1px;
    text-transform: uppercase;
}

.swt-client-profile-form .form-group .input-field-change {
    border: none;
    outline: none;
    border-bottom: 1px solid rgb(189, 185, 185);
    width: 100%;
    font-weight: 300;
    font-size: 16px;
}

.swt-client-profile-form .form-group .input-field-edit {
    border: none;
    outline: none;
    border-bottom: 1px solid rgb(189, 185, 185);
    font-weight: 300;
    font-size: 16px;
    border-radius: unset;
}

.swt-client-profile-form .form-group .input-group .action-button{
    display: none;
    border-radius: unset;
    background: unset;
    border: 0;
    border-bottom: 1px solid rgb(189, 185, 185);
}

.swt-client-profile-form .form-group .input-group:hover .action-button{
    display: revert;
}

.swt-client-profile-form .form-group input:focus {
    box-shadow: unset;
}

.swt-client-profile-form .form-group .form-label {
    text-align: left;
    color: grey;
    font-size: 12px;
    color: var(--grey-medium, #888894);
    text-align: right;

    /* CAPS/Tiny */
    font-family: Lexend;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 166.667% */
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* .swt-client-profile-form {
  display: flex;
  justify-content: space-between;
 } */
.swt-form-client-profile-bg {
    background-color: white;
    display: flex;
    padding: 30px;
}

.swt-form-content-container {
    display: flex;
}

.swt-form-content-container .form-group {
    width: 50%;
    padding: 20px;
}

.client-logo-swt-page {
    background-color: var(--main-color);
    text-align: center;
    height: 116px;
    width: 116px;
    border-radius: 50%;
    color: white;
    margin-top: 1.5rem;
    margin-left: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swt-client-detils h6 {
    color: var(--main-color);
    margin-top: 1rem;
    font-size: 24px;
    font-weight: 700;
}

.swt-client-detils-new h6 {
    color: var(--main-color);
    font-family: lexend;
    margin-top: 1rem;
    font-size: 24px;
    font-weight: 700;
    margin-left: -15px;
    margin-bottom: 15px;
}

.swt-user-profile-status {
    padding: 5px 20px;
    background-color: #1b7d8d;
    border-radius: 20px;
    color: white;
}

.swt-user-profile {
    display: flex;
    /* justify-content: space-evenly; */
}

.swt-form-content-container-user-profile {
    display: flex;
    width: 76vw;
}

.swt-form-content-container-user-profile .form-group input {
    border: none;
    border-bottom: 1px solid rgb(171, 170, 170);
    outline: none;
    width: 100%;
    font-weight: 300;
    font-size: 14px;
}

.swt-form-content-container-user-profile .form-group {
    width: 50%;
}

.swt-security-pw-change-info p {
    color: var(--Dark, #1e1e1e);
    /* Body/Large */
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
}

.security-change-pass-container .change-password-button button {
    background-color: var(--main-color);
    color: white;
    padding: 8px;
    width: 200px;
    border: none;
    margin-top: 30px;
    font-weight: 600;
}

.swt-security-bg {
    background-color: #fff;
    padding: 10px;
    height: 25vh;
}

.password-message-validation p {
    color: #383836;
    font-family: Lexend;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
}

.swt-project-bg {
    background-color: white;
    padding: 30px;
    /* display: flex; */
}

.setting-project-details-form .form-group input {
    border: none;
    outline: none;
    border-bottom: 1px solid rgb(189, 188, 188);
    display: flex;
    width: 100%;
    color: black;
    font-weight: 300;
    font-size: 13px;
    color: var(--Dark, #1e1e1e);
    font-family: Lexend;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    /* line-height: 22px;  */
}

.setting-project-details-form .form-group {
    padding: 15px;
}

.setting-project-details-form .form-group label {
    font-size: 12px;
    color: grey;
    font-weight: 300;
    color: var(--grey-medium, #888894);
    text-align: right;

    /* CAPS/Tiny */
    font-family: Lexend;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 166.667% */
    letter-spacing: 1px;
    text-transform: uppercase;
}

.setting-project-user-details .heading {
    margin-top: 10px;
    float: left;
}

.setting-project-user-details .add-member {
    margin-top: 10px;
    float: right;
    background-color: #fff;
}

.setting-project-user-details .add-member button {
    background-color: #fff;
    color: var(--main-color);
    padding: 0 10px;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 600;
}

.add-member-icon-settings img {
    width: 19.266px;
    height: 16.5px;
    margin-top: 2px;
}

.setting-project-user-details .heading h6 {
    color: var(--grey-medium, #888894);

    /* CAPS/Tiny */
    font-family: Lexend;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 166.667% */
    letter-spacing: 1px;
    text-transform: uppercase;
}

.setting-project-details-user-hr-line {
    width: 100%;
    border-bottom: 1px solid rgb(175, 172, 172);
}

.user-details-swt h6 {
    color: var(--Dark, #1e1e1e);
    font-family: Lexend;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
}

.user-details-swt p {
    color: var(--grey-medium, #888894);
    font-family: Lexend;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 0.8;
}

.settings-assigned-user-icon img {
    /* display: flex; */
    width: 42px;
    height: 42px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
}

.setting-v2-headings h6 {
    color: var(--Main, #970047);

    /* Headlines/H2 */
    font-family: Lexend;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    /* 116.667% */
}

.nav .nav-item button h5 {
    color: var(--Dark, #1e1e1e);
    text-align: center;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
}

.user-activity-vector-icon {
    margin-top: 10px;
    margin-left: 5px;
}

.user-act-log-v2-top-icon img {
    width: 24.891px;
    height: 30.929px;
    margin-top: 3px;
}

.active-dashboard-status-bar-setting {
    background-color: none;
    width: 106%;
    margin-left: -15px;
}

.dashboard-active-status-sidebar-setting {
    background-color: none;
    color: grey;
    height: 8vh;
    display: flex;
    justify-content: start;
    align-items: center;
    font-weight: 700;
    margin: 10px 12px;
    padding: 10px;
    width: 100%;
    font-size: 1rem;
    font-size: 14px;
    /* border-bottom: 1px solid grey;
  border-top: 1px solid grey; */
}

.dashboard-active-status-sidebar-setting span img {
    width: 1vw;
    margin-right: 0.5rem;
    margin-left: 0.2rem;
}

.dashboard-active-status-sidebar-setting h5 {
    font-size: 15px;
    color: grey;
}

.nav-tabs .nav-item .active {
    border-bottom: 5px solid var(--main-color);
}

.pop-up-window-bg {
    background-color: #fff;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    margin-top: 3rem;
    padding: 10px 15px;
}

.top-section {
    display: flex;
}

.top-section .heading {
    float: left;
}

.top-section .icon {
    float: right;
}

.share-file-select-memebers-container {
    display: flex;
}

.share-file-select-memebers-container .add-member {
    float: left;
}

.share-file-select-memebers-container .up-arrow {
    float: right;
}

.border-hr {
    border-bottom: 3px solid black;
}

.dropdown-content {
    background-color: white;
    box-shadow: 1px black;
}

.user-activity-top-tabs-links ul {
    display: flex;
    justify-content: space-around;
    padding: 10px;
}

.person-logo i {
    color: var(--main-color);
}

.setting-with-tabs-li {
    width: 33%;
    text-align: center;
}

.setting-with-tabs-li button.active {
    border: none;
    outline: none;
    border-bottom: 5px solid var(--main-color) !important;
    padding: 20px;
}

.setting-with-tabs-li button {
    width: 100%;
    padding: 20px;
}

.share-this-flle-2-dropdown {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.share-this-flle-2-dropdown .add-members {
    float: left;
    cursor: pointer;
}

.share-this-flle-2-dropdown .add-members span img {
    /* float: left; */
    cursor: pointer;
    margin-bottom: 0.5rem;
}

.share-this-flle-2-dropdown .add-members .tx-add-members {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    display: inline;
    cursor: pointer;
    margin-top: 0.5rem;
}

.share-this-flle-2-dropdown .dropdown {
    text-align: end;
}

.hr-line {
    border-bottom: 1px solid rgb(212, 211, 211);
    margin-top: 1rem;
}

.select-from-all-users {
    margin-top: 1rem;
    color: grey;
}

.share-btn button {
    background-color: var(--main-color);
    width: 100%;
    padding: 10px;
    color: white;
    border: none;
    outline: none;
    font-size: 16px;
    text-transform: uppercase;
}

.share-btn button:disabled {
    opacity: 0.6;
}

.modal-body {
    background-color: rgba(0, 0, 0, 0.05);
}

.modal-title {
    font-weight: 700;
    color: #000000;
    font-size: 24px;
}

.people-with-access {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
}

.remove-button button {
    border: none;
    outline: none;
    text-transform: uppercase;
    color: var(--50, rgba(0, 0, 0, 0.5));
    font-size: 12px;
    margin-top: 0.8rem;
    font-weight: 400;
}

.copy-link-icon i {
    font-size: 40px;
    color: rgba(136, 136, 148, 1);
    /* padding: 20px 5px; */
    margin-top: 15px;
}

.copy-link-msg p {
    font-size: 12px;
    color: var(--Dark, #1e1e1e);
    text-align: left;
    padding: 10px;
    font-weight: 300;
}

.copy-link-btn button {
    background-color: white;
    border: 1px solid var(--main-color);
    text-transform: capitalize;
    padding: 10px 20px;
    color: var(--main-color);
    display: flex;
}

.modal-body-content-client-project {
    padding: 5px 2rem !important;
}

.share-file-text-msg {
    margin-top: 1rem;
    color: var(--Dark, #1e1e1e);
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
}

.icons-input-section img {
    margin-right: 50px;
}

.people-with-access-name {
    /* color: gray; */
    margin-left: 0.5rem;
    color: var(--Dark, #1e1e1e);
    font-family: Lexend;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
}

.people-with-sub-access-name {
    /* color: gray; */
    margin-left: 0.5rem;
    color: var(--Dark, #1e1e1e);
    font-family: Lexend;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
}

.people-with-access-heading h5 {
    font-weight: 800;
    color: black;
}

.copy-link-heading h5 {
    font-weight: 700;
    color: rgba(0, 0, 0, 1);
    font-size: 18px;
    Line-height:22px;
}

.client-project-top-section {
    background-color: #000000;
    color: white;
    /* padding: 1rem; */
    /* text-align: center; */
}

.client-project-flow {
  padding: 20px 40px;
  font-size: 14px;
  font-weight: 600;
}
.cp-arrow-img img {
    margin: 0 0.5rem;
}

.cp-second-title {
    color: gray;
    /* margin-left: 1rem; */
    font-size: 0.9em;
}

.client-project-modal-body-content .input_box input, .client-project-modal-body-content .input_box select {
    background-color: transparent;
    padding: 10px 10px 10px 30px;
}

.client-project-modal-body-content .input_box select {
    padding-top: 8px;
}

.client-project-modal-body-content .input_box select option {
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
}

.client-project-modal-body-content .input_box input::placeholder {
    color: #000000;
    font-weight: 300;
}

.client-project-modal-body-content .input_box i {
    font-size: 20px;
}

.client-project-modal-body-content .input_box_other {
    margin-top: 3rem;
}

.client-project-modal-body-content .input_box_other input::placeholder,
.client-project-modal-body-content .input_box input::placeholder {
    padding-left: 3px;
    font-weight: 300;
    font-size: 16px;
}

/* .client-project-modal-body-content .input_box input::placeholder {
padding-left: 10px;
font-weight: 300;
font-size: 16px;
} */

.client-project-modal-body-content .input_box p {
    font-size: 12px;
}

.cleint-project-modal-city-post-code {
    display: flex;
}

.cleint-project-modal-city-post-code .post-code {
    margin-left: 2rem;
}

.cleint-project-modal-city-post-code .post-code input {
    padding: 0px;
    margin: 0px;
}

/* .form-content-client-project-modal {
    min-height: 50vh;
} */

.client-project-modal-buttons {
    display: flex;
    margin-bottom: 3rem;
}

.client-project-modal-buttons .add-cover {
    width: 45%;
    margin-left: 8px;
    margin-top: 3rem;
}

.client-project-modal-buttons.create-folder .add-cover {
    width: 49%;
    margin-left: 8px;
    margin-top: 3rem;
}

.client-project-modal-buttons .logo-upload-container {
    text-align: center;
    border: 1px solid;
    padding: 10px;
    background-color: #ffffff;
    text-transform: uppercase;
}

.client-project-modal-buttons .add-cover input {
    width: 100%;
    background-color: #ffffff;
    color: var(--Dark, #1e1e1e);
    border: 1px solid grey;
    padding: 10px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 0 !important;
    cursor: pointer;
}

.client-project-modal-buttons .add-cover button {
    width: 90%;
    background-color: #fff;
    color: var(--Dark, #1e1e1e);
    border: 1px solid grey;
    padding: 10px;
    text-transform: uppercase;
    font-weight: 600;
}

.client-project-modal-buttons.create-folder .add-cover button {
    width: 100%;
    padding: 9px 10px 9px;
}

.client-project-modal-buttons .add-client {
    width: 50%;
    margin-top: 3rem;

}

.client-project-modal-buttons .add-client button {
    width: 90%;
    background-color: var(--main-color);
    color: white;
    border: none;
    padding: 10px;
    text-transform: uppercase;
    max-width: 221px;
    margin-left: 5px;

}

.client-project-modal-buttons .invite-user button {
    width: 100%;
    background-color: var(--main-color);
    color: white;
    border: none;
    padding: 10px;
    text-transform: uppercase;
    font-size: 16px;
}

.client-project-modal-buttons .new-create-client button {
    width: 90%;
    background-color: var(--main-color);
    color: white;
    border: none;
    padding: 10px;
    text-transform: uppercase;
    margin-left: 20px !important;
}
.client-project-modal-buttons .new_create_project button {
    width: 90%;
    background-color: var(--main-color);
    color: white;
    border: none;
    padding: 10px;
    text-transform: uppercase;
    margin-left: 15px !important;
}

.client-project-modal-buttons.create-folder .new_create_project button {
    width: 90%;
    margin-left: 0 !important;
}

.upload button {
    background-color: var(--main-color);
    color: white;
    border: none;
    padding: 10px;
    margin-left: 20px;
    text-transform: uppercase;
}

.login-v2-main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 50vh;
}

/* .login-v2-outer-container {
  margin-top: 5rem;
} */

.login-v2-o-color {
    color: var(--main-color);
}

.logo-conatiner-v2 {
    margin-bottom: 5rem;
}

.login-form-v2 {
    background: #fff;
    width: 90%;
    margin: 65px auto;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    border-radius: 4px;
    height: auto;
    padding: 50px;
}

.login-form-v2 h1 {
    /* padding: 35px 35px 0 35px; */
    font-weight: 600;
}

.login-form-v2 .content {
    padding: 0px;
    text-align: center;
    width: 100%;
}

.login-form-v2 .input-field {
    padding: 12px 5px;
}

.login-form-v2 .input-field input {
    font-size: 16px;
    display: block;
    font-family: "Rubik", sans-serif;
    width: 100%;
    padding: 10px 1px;
    border: 0;
    border-bottom: 1px solid #747474;
    outline: none;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.login-form-v2 .input-field input::-webkit-input-placeholder {
    text-transform: uppercase;
}

.login-form-v2 .input-field input::-moz-placeholder {
    text-transform: uppercase;
}

.login-form-v2 .input-field input:-ms-input-placeholder {
    text-transform: uppercase;
}

.login-form-v2 .input-field input::-ms-input-placeholder {
    text-transform: uppercase;
}

.login-form-v2 .input-field input::placeholder {
    text-transform: capitalize;
}

.login-form-v2 .input-field input:focus {
    border-color: #222;
}

.login-form-v2 a.link {
    text-decoration: none;
    color: var(--main-color);
    letter-spacing: 0.2px;
    text-transform: capitalize;
    display: inline-block;
    margin-top: 20px;
    font-size: 14px;
}

.login-form-v2 .action {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
}

.login-form-v2 .action button {
    width: 100%;
    border: none;
    padding: 18px;
    font-family: "Rubik", sans-serif;
    cursor: pointer;
    text-transform: uppercase;
    background: #e8e9ec;
    color: #777;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 0;
    letter-spacing: 0.2px;
    outline: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.login-form-v2 .action button:hover {
    background: #d8d8d8;
}

.login-form-v2 .action button:nth-child(2) {
    background: #2d3b55;
    color: #fff;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 4px;
}

.login-form-v2 .action button:nth-child(2):hover {
    background: #3c4d6d;
}

.main-conatainer-login-v2 {
    /* display: flex; */
    /* justify-content: center;
  align-items: center;
  align-content: center; */
    background-color: white;
    height: auto;
    padding: 50px;
}

.login-form-v2-signin-button {
    background-color: var(--main-color);
    color: #fff;
    width: 100%;
    height: 52px;
    border: none;
    box-shadow: none;
    text-align: center;
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    /* 125% */
    text-transform: uppercase;
}

.google-microsoft-btn-login-v2 {
    width: 100%;
    height: 6vh;
    border: 1px solid grey;
    box-shadow: none;
    font-size: 16px;
    background-color: transparent;
    font-weight: 600;
    text-transform: uppercase;
}

.login-v2-bottom-link span {
    text-decoration: none;
    color: #1e1e1e;
    font-weight: 300;
    font-size: 14px;
}

.login-v2-bottom-link span a {
    text-decoration: none;
    color: #1e1e1e;
    font-weight: 600;
    font-size: 14px;
}

.back-to-login-v2-pages a {
    text-decoration: none;
    color: #1e1e1e;
    font-size: 14px;
    font-weight: 300;
}

.forgot-password-key-svg-password-reset-v2 h3 {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    text-align: center;
}

.select-option-dropdown select {
    /* padding: 10px 50px; */
    width: 100%;
}

.share-this-file-dropdown-btn button {
    width: 100%;
    text-align: left;
    border: none;
    background-color: transparent;
}

.share-this-file-dropdown-btn button::after {
    display: none;
}

.stf-dropdown-btn {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
}

.select-member-font {
    color: var(--101027, #202020);
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24.4px;
}

.select-member-font span img {
    width: 1.5vw;
    margin-bottom: 3px;
}

.share-this-file-dropdown-btn-menu {
    width: 100%;
    padding: 15px;
}

.share-this-file-dropdown-btn-menu li img {
    margin-right: 5px;
    margin-top: 5px;
}

.share-this-file-dropdown-btn-menu-non-avtar {
    width: 100%;
    padding: 15px;
}

.share-this-file-dropdown-btn-menu-non-avtar .dropdown-item,
.share-this-file-dropdown-btn-menu .dropdown-item {
    width: 100%;
    padding: 5px;
    color: var(--Dark, #1e1e1e);
    font-family: Lexend;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
}

.user-act-log-v2 {
    margin-left: -8px;
}

.share-file-avtar-title {
    color: var(--grey-medium, #888894);
    font-family: Lexend;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 166.667% */
    letter-spacing: 1px;
    text-transform: uppercase;
}

.select-dropdown {
    appearance: none;
    padding: 5px;
    background-color: transparent;
    color: rgb(0, 0, 0);
    border: none;
    font-family: inherit;
    outline: none;
}

.modal-width {
    width: 30%;
}

.side-menu-second {
    margin-left: -1px !important;
}

/* Checkbox */

.styled-checkbox {
    position: absolute;
    opacity: 0;

    & + label {
        position: relative;
        cursor: pointer;
        padding: 0;
    }

    & + label:before {
        content: "";
        margin-right: 10px;
        display: inline-block;
        vertical-align: text-top;
        width: 20px;
        height: 20px;
        background: rgb(229, 228, 228);
        border: 3px solid rgba(0, 0, 0, 0.2);
    }

    &:hover + label:before {
        background: #fdfdfd;
    }

    &:focus + label:before {
        /* box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12); */
    }

    &:checked + label:before {
        background: #000000;
    }

    &:disabled + label {
        color: #e3e3e3;
        cursor: auto;
    }

    &:disabled + label:before {
        box-shadow: none;
        background: rgb(223, 223, 223);
    }

    &:checked + label:after {
        content: "";
        position: absolute;
        left: 5px;
        top: 8px;
        background: white;
        width: 3px;
        height: 4px;
        box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white,
            4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
        transform: rotate(45deg);
    }
}

li.dashboard {
    list-style: none;
    margin-top: 12px;
}

/*  */

.form-check-input[type="checkbox"]:not(.notification-toggle-class) {
    border-radius: 0px !important;
    /* accent-color: black !important; */
}

.form-check-input:checked {
    background-color: #000000 !important;
    /* border-color: #0d6efd; */
}

.form-check-input {
    --bs-form-check-bg: black !important;
    /* --bs-form-check-bg-image: url('/image/Check_icon.png') !important; */
    /* --bs-form-check-bg-image: url('{{ asset('images/Check_icon.png') }}') !important; */
    width: 1em;
    height: 1em;
    margin-top: 0.25em;
    vertical-align: top;
    background-color: transparent !important;
    background-image: var(--bs-form-check-bg-image);
    /* background-image: url('/images/Check_icon.png') !important; */
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 2px solid var(--20, rgba(0, 0, 0, 0.2)) !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
    print-color-adjust: exact;
    accent-color: black !important;
}

.dropdown-menu li.dropdown-item {
    cursor: pointer;
}

/* side-bar-new */

.navbar {
    --bs-navbar-toggler-focus-width: 0rem !important;
}
.top-side-bar {
    height: 100vh;
}

.navbar-toggler {
    border: none !important;
}

.navbar-toggler-icon {
    display: inline-block;
    width: 3.5em !important;
    height: 1.5em;
    vertical-align: middle;
    background-image: url("../images/Frame.png") !important;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    margin-right: -40px;
    border: none !important;
}

.dashbaord-main-side-bar-div
    .top-side-bar
    .navbar
    .container-fluid
    .navbar-brand {
    display: flex;
    justify-content: center;
    position: fixed;
    top: 1%;
    width: 205px;
    height: 60px;
    flex-shrink: 0;
}
.dashbaord-main-side-bar-div
    .top-side-bar
    .navbar
    .container-fluid
    .navbar-brand img{
        display: block;
}



.dashbaord-main-side-bar-div
    .top-side-bar
    .navbar
    .container-fluid
    .navbar-collapse {
    display: flex;
    justify-content: center;
    position: fixed;
    top: 12%;
    width: 16.8%;
}

.dashbaord-main-side-bar-div
    .top-side-bar
    .navbar
    .container-fluid
    .navbar-collapse
    .bottom-links {
    position: fixed;
    width: 16.73%;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 5px 5px !important;
    color: var(--grey-medium, #888894);
    font-family: Lexend;
    font-size: 18px !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 24.4px;
    /* 135.556% */
}

.dashbaord-main-side-bar-div
    .top-side-bar
    .navbar
    .container-fluid
    .navbar-collapse
    .bottom-links
    .actives {
     color: white !important;
     font-weight: 400 !important;
     background-color: transparent !important;
    }
.dashbaord-main-side-bar-div
    .top-side-bar
    .navbar
    .container-fluid
    .navbar-collapse
    .bottom-links
    .un-actives {
        color: var(--grey-medium, #888894) !important;
     font-weight: 400 !important;
     background-color: transparent !important;
    }

.dashbaord-main-side-bar-div
    .top-side-bar
    .navbar
    .container-fluid
    .navbar-collapse
    .navbar-nav {
    margin-left: -50px;
    width: 100% !important;
}

.logout-image-dashboard {
    margin-left: 2px;
}

.dashbaord-main-side-bar-div
    .top-side-bar
    .navbar
    .container-fluid
    .navbar-collapse
    .navbar-nav
    .actives {
    background: var(--20, rgba(255, 255, 255, 0.2));
    color: var(--White, #fff);
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    padding: 14px;
}

.dashbaord-main-side-bar-div
    .top-side-bar
    .navbar
    .container-fluid
    .navbar-collapse
    .navbar-nav
    .un-actives {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);

    /* Headlines/Title */
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    /* 122.222% */
    padding: 14px;
}

.nav-link:hover {
    color: var(--grey-medium, #888894) !important;
}

.break-word {
    word-wrap: break-word;
}

/* table new design */

table {
    border-collapse: separate !important;
    border-spacing: 0 12px !important;
    background-color: transparent !important;
    width: 100% !important;
}

.tabel-fixed-layout {
    margin: 0 auto;
    width: 100%;
    clear: both;
    border-collapse: collapse;
    table-layout: fixed;
    word-wrap: break-word;
}

th,
td {
    width: auto !important;
    text-align: center !important;
    border: none !important;
    padding: 0px 5px !important;
    background-color: white !important;
}

th {
    background-color: transparent !important;
    color: #1e1e1e !important;
    font-weight: 400 !important;
    font-size: 12px !important;
    font-style: normal;
    line-height: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.table-tr td span.last-modified {
    color: #1e1e1e !important;
    font-weight: 300 !important;
    font-size: 14px !important;
}

.table-tr td span.dashboard-table-content {
    color: #1e1e1e !important;
    font-weight: 300 !important;
    font-size: 14px !important;
    text-align: left;
    text-transform: capitalize;
}

.table-tr td span i.bi-three-dots {
    color: #1e1e1e !important;
    font-weight: 300 !important;
    font-size: 14px !important;
}

table thead tr th.last,
table tbody tr td.last {
    text-align: right !important;
    padding-right: 40px !important;
}

#data-table thead {
    display: none;
}

.dataTables_scrollHead {
    height: 60px !important;
}

.dataTables_wrapper.no-footer .dataTables_scrollBody,
table.dataTable.no-footer {
    border: none !important;
}

.client-list .dataTables_scrollBody {
    height: auto !important;
}

td.dataTables_empty {
    color: #1e1e1e !important;
    font-weight: 300 !important;
    font-size: 14px !important;
    text-align: left;
    text-transform: capitalize;
    padding-top: 1rem!important;
    padding-bottom: 1rem!important;
}

/*Width Classes*/
td.width-3,
th.width-3 {
    width: 3% !important;
}
td.width-5,
th.width-5 {
    width: 5% !important;
}
td.width-8,
th.width-8 {
    width: 8% !important;
}
td.width-10,
th.width-10 {
    width: 10% !important;
}
td.width-12,
th.width-12 {
    width: 12% !important;
}
td.width-15,
th.width-15 {
    width: 15% !important;
}
td.width-20,
th.width-20 {
    width: 20% !important;
}
td.width-25,
th.width-25 {
    width: 25% !important;
}
td.width-30,
th.width-30 {
    width: 30% !important;
}
td.width-35,
th.width-35 {
    width: 35% !important;
}
td.width-40,
th.width-40 {
    width: 40% !important;
}
td.width-45,
th.width-45 {
    width: 45% !important;
}
td.width-50,
th.width-50 {
    width: 50% !important;
}
td.width-60,
th.width-60 {
    width: 60% !important;
}
td.width-65,
th.width-65 {
    width: 65% !important;
}
td.width-70,
th.width-70 {
    width: 70% !important;
}
td.width-75,
th.width-75 {
    width: 75% !important;
}
td.width-80,
th.width-80 {
    width: 80% !important;
}
td.width-85,
th.width-85 {
    width: 85% !important;
}
td.width-90,
th.width-90 {
    width: 90% !important;
}
td.width-100,
th.width-100 {
    width: 100% !important;
}

table.dataTable thead > tr > th.sorting:before,
table.dataTable thead > tr > th.sorting:after,
table.dataTable thead > tr > th.sorting_disabled:before,
table.dataTable thead > tr > th.sorting_disabled:after {
    opacity: 0 !important;
}

.security-page-content-section-settings {
    display: flex;
}

.user-list-client-details-img-name {
    display: flex;
    text-align: left;
    word-break: break-all;
    word-wrap: break-word;
    justify-content: start;
    align-items: center;
}
.files-blade-client-name-details-section {
    display: flex !important;
    margin-left: 40px !important;
    align-items: center;
    justify-content: left;
    text-align: left;
    word-break: break-all;
}
.files-blade-client-name-details-section-2 {
    display: flex !important;
    margin-left: 0px !important;
    align-items: center;
    justify-content: start;
    text-align: left;
    word-break: break-all;
}

.user-name-files-page-blade {
    /* margin-top: 3px; */
    text-align: left;
    word-break: break-all;
}

/*datepicker*/
.daterangepicker td.in-range {
    background-color: #ebf4f8 !important;
}

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

/* .navbar-toggler {
    background-color: white !important;
} */

.user-activities-blade-client-details-data {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    word-break: break-all;
}
.bi {
    width: 1em;
    height: 1em;
    vertical-align: -0.01em !important;
    fill: currentcolor;
}

textarea:focus,
input[type="checkbox"]:focus,
.uneditable-input:focus {
    /* border-color: rgba(250, 250, 250, 0.8) !important; */
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset,
        0 0 8px rgba(255, 255, 255, 0.6) !important;
    outline: 0 none !important;
}
.login-checkbox-checks {
    display: flex;
    justify-content: center;
    align-items: center;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("../images/Arrow.png");
    background-repeat: no-repeat;
    background-position: right 10px center;
    margin-right: 5px !important;
}

input[type="checkbox" i]:not(.notification-toggle-class) {
    /* background-color: transparent !important; */
    cursor: pointer;
    appearance: none !important;
    box-sizing: border-box;
    margin: 3px 3px 3px 4px;
    padding: initial;
    border-radius: 0px !important;
    border: 2px solid #000000 20% !important;
    outline: none;
}

.client-list-blade-client-details,
.project-list-blade-client-details {
    text-align: left;
    word-wrap: break-word;
}

.date-picker-section-container input::placeholder {
    color: #1e1e1e;
    font-size: 14px;
    font-weight: 300;
}
.user-activity-section-container-for-data {
    border: 1px solid rgba(199, 199, 199, 1);
}
.user-activity-section-container-for-data-2 {
    border: 1px solid rgba(199, 199, 199, 1);
    border-left: none !important;
}
.user-activity-section-container-for-data:not(:nth-child(1)):not(
        :nth-child(2)
    ) {
    border-left: none;
}

.settings-user-profile-section img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
}

.client-list-blade-client-details {
    justify-content: start;
    align-items: center;
    text-decoration: none !important;
}

td {
    vertical-align: middle;
}

.project-list-blade-client-details {
    align-items: center;
    justify-content: start;
}

.project-blade-client-details-section-container {
    align-items: center;
    justify-content: start;
    text-align: left;
    word-break: break-all;
}

.project-blade-view-client-details-show {
    justify-content: start;
    align-items: center;
    text-align: center;
    word-break: break-all;
}

.project-details-user-section {
    justify-content: flex-start;
    align-items: center;
    text-align: left;
}

.table-of-client-details-user-activity-logs-blade, .table-of-client-details-user-activity-logs-blade-second-data {
    text-align: left;
    word-wrap: break-word;
    word-break: break-all;
    min-width: 20% !important;
    max-width: 20% !important;

}

.table-of-client-details-user-activity-logs-blade-third-data {
    text-align: left;
    word-wrap: break-word;
    word-break: break-all;
    margin-left: 50px;
    font-family: Lexend;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    letter-spacing: 0px;
    text-align: left;
    color:#1E1E1E;
    padding-right: 15px;
}
.bi-three-dots  {
    color: rgba(30, 30, 30, 0.5);
}

.first-div-top-select-buttons.project-blade-select-filter-section select option {
    background-color: #F2F2F2 !important;
    padding: 8px;
    border-radius: 0 !important;
}

/* Making header checkbox as selectable */
table.dataTable thead>tr>th:first-of-type.sorting_desc:before, table.dataTable thead>tr>th:first-of-type.sorting_asc:before, table.dataTable thead>tr>th:first-of-type.sorting_desc:after, table.dataTable thead>tr>th:first-of-type.sorting_asc:after {
    right: 0 !important;
}

.last-modified-date-for-client {
    margin-left: -12px !important;
}

.user-activity-logs-headings-table {
    margin-left: -20px;
}

.first-cell-for-recent-activity {
    width: 10% !important;
}
/* .new-user-activity-data {
    display: flex;
    align-items: center;
} */

.user-activity-logs-rows-new-added {
    height: 500px;
overflow-y: auto;
 overflow-x: hidden;
}

.user-activity-first-select {
    min-width: 300px;
    max-width: 500px;
}

.user-activity-second-col-width {
    width: 25%;
}

.clint-list-first-column a, .project-list-clients-first-col a,.user-activity-first-row-client-name a, .files-reports-first-col-file-name a{
text-decoration: none;
}

.user-activity-first-row-client-name a .dashboard-table-client-list{
    font-family: Lexend;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    color: #1E1E1E;
    opacity: 80%;
}

button:disabled {
    opacity: 0.6;
}

.field-rule {
    font-weight: 400;
    font-size: 12px;
    color: #383836;
}
.modal .file-upload-text {
    font-size: 18px;
    font-weight: 700;
    text-align: center;

}

.modal .file-upload-text span {
    color: #970047;
    text-decoration: underline;
}

.modal .file-upload-container {
    border: 1px dashed#970047;
    display: block;
    text-align: center;
}

a.project-list-link {
    text-decoration: none;
    color: inherit;
}

/* Scrollbar Track */
::-webkit-scrollbar {
    width: 11px; /* Width of the entire scrollbar */
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1; /* Background color of the scrollbar track */
    border-radius: 10px; /* Rounded corners for the track */
}

/* Scrollbar Thumb */
::-webkit-scrollbar-thumb {
    background: #888;  /* Color of the scrollbar thumb */
    border-radius: 10px; /* Rounded corners for the thumb */
}

/* Scrollbar Corner */
::-webkit-scrollbar-corner {
    background: #f1f1f1; /* Background color of the corner where vertical and horizontal scrollbars meet */
}

