/* .tox .tox-statusbar {
    display: none !important;
} */

* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 16px
}

.body {
    overflow: hidden;
}

a {
    color: #118c08;
    text-decoration: none;
}
.al {text-align: left}
.ac {text-align: center}
.ar {text-align: right}
.cus-loader {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.75);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cus-loader img {
    width: 75px;
    position: absolute;
    z-index: 2;
}

.cus-loader-inner {
    border: 16px solid #7fbf7f;
    border-radius: 50%;
    border-top: 16px solid #ff7f7f;
    border-bottom: 16px solid #ffff7f;
    border-left: 16px solid #000;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    background: #fff;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
.sort-days {
    cursor: pointer;
}
.move-top {
    position: fixed;
    margin-left: -40px;
    bottom: 60px;
}
.move-top a {
    display: block;
}
.move-top img {
    width: 20px;
}
main {
    min-height: calc(100vh - 70px);
}
.cus-popup,
.cus-popup-import {
    background: rgba(255, 255, 255, 0.75);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.alert-head-error {
    background-color: red !important;
}

.cus-popup-inner,
.cus-popup-inner-import {
    max-width: 500px;
    margin: auto;
    box-shadow: 0 0 10px #118C08;
    border-radius: 7px;
}

.cus-popup-top,
.cus-popup-top-import {
    background: #118C08;
    color: #fff;
    padding: 7px;
}

body .cus-popup-top h2,
body .cus-popup-top-import h2 {
    margin: 0;
    color: #fff;
    text-transform: capitalize;
}

.cus-popup-bot,
.cus-popup-bot-import {
    padding: 7px 75px 20px;
    background: #fff;
}

.cus-popup-bot p,
.cus-popup-bot-import p {
    line-height: 1.4;
}

table {
    width: 100%;
}
#projectTable {
    border-collapse: collapse;
}

table thead th {
    background: #118C08;
    color: #fff;
}

table tbody tr:nth-child(even) td,
table tbody tr:nth-child(even) input,
table tbody tr:nth-child(even) textarea,
table tbody tr:nth-child(even) #notes {
    background: #fafafa;
}

table th,
table td {
    border: 1px solid #087200;
    position: relative;
    text-align: center;
    padding: 5px 10px;
    vertical-align: top;
}

table td input,
table td textarea {
    position: absolute;
    top: 0;
    bottom: 0;
    height: auto;
    width: auto;
    left: 0;
    right: 0;
}

table .cus-btn-area {
    text-align: center;
}

.cus-btn {
    padding: 7px 15px;
    background: #118C08;
    border-radius: 25px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
    border: 2px solid transparent;
    letter-spacing: 1px;
    display: inline-block;
    transition: 0.3s ease-in-out;
}

.cus-btn-red {
    background: #efd6d6;
    border-color: red;
    color: red;
}

.clear-filters {
	text-decoration: none !important;
}

.cus-btn:hover {
    border-color: #118C08;
    background: #fff;
    color: #118C08;
}

.cus-btn-red-icon {
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    transition: 0.3s ease-in-out;
}

.cus-btn-red-icon img {
    width: 20px;
}

.cus-add-row-btn {
    position: absolute;
    right: 50px;
    bottom: -50px;
}
.cus-col-btn-show {
    position: relative;
}
.cus-remove-btn,
.cus-export-btn {
    position: absolute;
    left: 100%;
    font-weight: 700;
    min-width: 120px;
    margin-left: 15px;
    top: 12px;
}
.cus-remove-btn a { 
    color: red;
}
.cus-export-btn {
    top: 47px;
}
.cus-export-btn a { 
    color: grey;
}
.cus-row {
    display: flex;
    justify-content: space-between;
}

.cus-form-row {
    margin: 5px 0;
}

.cus-form-row label {
    font-weight: 700;
    min-width: 100px;
    display: inline-block;
    color: #118C08;
}

.cus-form-row select,
.cus-form-row input {
    padding: 5px 15px 5px 10px;
    min-width: 200px;
    height: 30px;
}

.logo img {
    width: 100%;
    display: block;
}

.project-pg,
.project-main-pg,
.user {
    max-width: 1200px;
    margin: 15px auto;
    padding: 0 25px;
}

.page-top-info-bar {
    background: #fafafa;
    padding: 15px;
    border: 5px double #eee;
    z-index: 99999;
}
.project-main-pg .page-top-info-bar,
.project-pg .page-top-info-bar {
    position: sticky;
    top: -1px;
}

.page-top-info-bar .cus-row {
    align-items: center;
}

.project-pg .logo {
    max-width: 350px;
    margin: auto;
}

.cus-detail-view {
    margin-top: 5px;
    position: relative;
}
.project-pg .cus-detail-view thead {
    position: sticky;
    top: 180px;
    z-index: 9999;
}

#projectTable tbody tr .lRowDate input {
    display: none;
}

#projectTable tbody tr:last-child .lRowDate input {
    display: block;
}
.proj-attach-th {
    z-index: 99999;
}
.proj-th-figure {
    margin: 0px;
    display: inline-block;
    vertical-align: middle;
}
.proj-attach-hover {
    position: absolute;
    right: 25px;
    background: #fff;
    top: 38px;
    width: 300px;
    border-top: none;
    max-height: 0;
    overflow: hidden;
    display: none !important;
    flex-direction: column;
    opacity: 0;
}
.proj-attach-th:hover .proj-attach-hover {
    opacity: 1;
    height: auto;
    display: flex !important;
    overflow: auto;
    max-height: 350px;
    padding: 15px;
    border: 1px dashed #118c08;
}
/* .cus-detail-view .cus-row {
    border: 1px solid #eee;
}

.cus-detail-view .cus-row:first-child {
    position: sticky;
    top: 182px;
    z-index: 2;
}

.cus-detail-view .cus-col {
    border: 1px solid #000;
} */

.cus-detail-view h4 {
    margin: 0;
    text-align: center;
    padding: 5px 0;
    background: #118C08;
    color: #fff;
    letter-spacing: 0.5px;
    display: inline-block;
}
.cus-detail-view h4.al {
    text-align: left;
}

.cus-detail-view input,
.cus-detail-view textarea {
    border: none;
    width: 100%;
    height: 100%;
    padding: 5px;
    resize: none;
    outline: none;
    max-height: 110px;
}

/* .cus-detail-view .cus-row:nth-child(even) .cus-col,
.cus-detail-view .cus-row:nth-child(even) input,
.cus-detail-view .cus-row:nth-child(even) textarea,
.cus-detail-view .cus-row:nth-child(even) #notes {
    background: #fafafa;
} */

.cus-detail-view input[type="date"] {
    text-transform: uppercase;
}

.contentBox {
    width: 100%;
    height: auto;
    min-height: 100px;
}

.notes {
    width: 100%;
    height: 100%;
    min-height: 100px;
    overflow: auto;
    padding: 5px;
    /* background-color: #FFFFFF; */
    outline-style: none;
    white-space: pre-line;
    word-wrap: break-word;
    font-size: 14px;
    text-align: left;
    box-shadow: none !important;
    border: none !important;
}

.notes p {
    margin: 0 0 10px;
}

.notes::before {
    left: 5px !important;
}

.drag-drop-area,
.dda {
    max-width: 190px;
}
.drag-drop-area {
    max-width: 239px;
}

.drag-drop-area .uppy-Dashboard-inner,
.dda-div .uppy-Dashboard-inner {
    height: auto !important;
    border-radius: 0;
}

.drag-drop-area .uppy-Dashboard-innerWrap,
.dda-div .uppy-Dashboard-innerWrap {
    border-radius: 0;
    overflow: initial;
}

.drag-drop-area .uppy-Dashboard-dropFilesHereHint,
.dda-div .uppy-Dashboard-dropFilesHereHint {
    padding: 15px;
}

.drag-drop-area .uppy-DashboardContent-bar button,
.dda-div .uppy-DashboardContent-bar button {
    z-index: 1;
}

.drag-drop-area .uppy-Dashboard-AddFiles,
.dda-div .uppy-Dashboard-AddFiles {
    height: 84px;
}

.drag-drop-area .uppy-Dashboard-AddFiles-title,
.dda-div .uppy-Dashboard-AddFiles-title {
    font-size: 14px;
    padding: 0;
}

.uppy-Dashboard-AddFiles-info {
    display: block;
    padding-top: 2px;
}
.uppy-Dashboard-AddFiles-info .uppy-Dashboard-note {
    font-size: 10px;
}

.tox.tox-tinymce-inline {
    z-index: 9999;
}

.drag-drop-area .uppy-Informer {
    /* top: 0;
    bottom: 0;
    overflow: auto; */
    z-index: 99;
}


/* Login Page CSS */

.login-pg {
    margin: 0;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 70px);
    background: #f9fafb;
    overflow: auto;
}

.error-msg {
    color: #ff0000;
    text-transform: capitalize;
    position: absolute;
    top: -16px;
    left: 0px;
    right: 0px;
    background: #efd6d6;
    padding: 10px;
    border: 2px inset #ff0000;
    font-weight: 700;
}

/* .cus-login-form {
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #f9fafb;
    overflow: auto;
} */

.cus-login-form-inner {
    padding: 50px;
    border: 1px solid #eee;
    box-shadow: 0 0 10px #ddd;
    background: #fff;
    border-radius: 10px;
    max-width: 450px;
    width: 100%;
    text-align: center;
    position: relative;
}

.cus-login-form-inner h2 {
    text-transform: uppercase;
    color: #118C08;
}

.cus-login-form-inner .logo {
    margin: 0 25px 10px;
}

.cus-input-field {
    border: 5px double #118C08;
    box-shadow: 0 0 10px #ddd;
    width: 100%;
    padding: 10px;
    margin-bottom: 25px;
    font-size: 16px;
    border-radius: 5px;
    background: #f9fafb;
}

.cus-input-field::placeholder {
    color: #118C08;
}

/* Project Main */

.welcome-search {
    display: flex;
    align-items: center;
}

.welcome-back-msg {
    text-align: right;
    margin: 0 10px 0 0;
}

.cus-search {
    display: flex;
    align-items: center;
}

.cus-search label {
    color: #118C08;
}

.cus-inp-search {
    padding: 5px;
    border-radius: 5px;
    border: 2px solid #118C08;
    margin-right: 5px;
}

.cus-inp-search::placeholder {
    color: #118C08;
}

.cus-adv-search-area {
    width: 100px;
    height: 30px;
    overflow: hidden;
    border-radius: 4px;
    border: 2px solid #118C08;
}

.cus-toggle-btn {
    position: relative;
    height: 100%;
}

.cus-toggle-btn .cus-input {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 1;
}

.cus-toggle-btn .cus-input~span {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s ease-in-out;
}

.cus-toggle-btn .cus-input~.cus-check-true {
    background: linear-gradient(to bottom, #118C08 0%, #8cc63f 100%);
    left: 100px;
    /* border-right: 17px solid #fff; */
    color: #fff;
}

.cus-toggle-btn .cus-input:checked~.cus-check-true {
    left: 0;
}

.cus-toggle-btn .cus-input:checked~.cus-check-false {
    left: 100px;
}

.cus-toggle-btn .cus-input~.cus-check-false {
    /* box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.15); */
    /* border-left: 17px solid #fff; */
    color: #118C08;
}

.project-main-pg h2 {
    margin: 0;
    color: #118C08;
}

.project-main-pg .logo,
.admin-pgs .logo {
    max-width: 325px;
    margin: 0;
}

.project-main-pg .cus-btn-area {
    text-align: right;
    margin: 10px 0;
}
.project-main-pg .summry-table tr:hover td {
    background: #D9E6D6;
} 
.summry-figure {
    margin: 0;
    position: absolute;
    top: 2px;
    right: 2px;
}
.cus-exist-link {
    font-size: 14px;
    display: block;
    margin: 5px 3px;
    white-space: nowrap;
    overflow: hidden;
    /* width: 190px; */
    width: 130px;
    text-overflow: ellipsis;
}

.png,
.jpg,
.jpeg,
.pdf,
.doc,
.docx,
.xls,
.xlsx,
.mp3,
.wav,
.mpeg,
.msg {
    margin: 10px 0;
    display: flex;
    align-items: center;
}

.jpeg figure,
.png figure,
.jpg figure {
    display: none;
}

.jpeg img,
.png img,
.jpg img {
    object-fit: contain;
}

.pdf .img-thumb,
.doc .img-thumb,
.docx .img-thumb,
.xls .img-thumb,
.xlsx .img-thumb,
.mp3 .img-thumb,
.wav .img-thumb,
.mpeg .img-thumb,
.msg .img-thumb {
    display: none;
}
.pdf figure,
.doc figure,
.docx figure
.xls figure,
.xlsx figure,
.mp3 figure,
.wav figure,
.mpeg figure,
.msg figure {
    display: inline-block;
    width: 32px;
    height: 32px;
    margin: 0;
}

.pdf figure {
    background: url(../img/icons/pdf-icon.png) no-repeat center center/contain;
    
}
.doc figure,
.docx figure {
    background: url(../img/icons/doc-icon.png) no-repeat center center/contain;
}
.xls figure,
.xlsx figure {
    background: url(../img/icons/xls-icon.png) no-repeat center center/contain;
}
.mp3 figure {
    background: url(../img/icons/mp3-icon.png) no-repeat center center/contain;
}
.wav figure {
    background: url(../img/icons/wav-icon.png) no-repeat center center/contain;
}
.mpeg figure {
    background: url(../img/icons/mpeg-icon.png) no-repeat center center/contain;
}
.msg figure {
    background: url(../img/icons/msg-icon.png) no-repeat center center/contain;
}

/* All Users */

.users-area table th,
.users-area table td {
    vertical-align: middle;
}

.users-area figure {
    margin: 0 5px;
    display: inline-block;
    cursor: pointer;
}

.users-area figure img {
    width: 20px;
}

aside {
    width: 250px;
}

aside ul {
    padding: 0;
    margin: 0;
}

aside li {
    list-style: none;
    margin: 5px -25px;
}

aside li a {
    text-decoration: none;
    color: #118C08;
    font-weight: 700;
    padding: 10px 25px;
    display: block;
    letter-spacing: 0.5px;
    border-radius: 5px;
}

aside li.active a,
aside li a:hover {
    color: #fff;
    background: #118C08;
    border-radius: 0 20px 20px 0;
}

.cus-right-side {
    width: calc(100% - 250px);
}

.cus-right-side label {
    color: #118C08;
    margin-bottom: 5px;
    display: block;
    font-weight: 700;
}

.admin-pgs h2 {
    color: #118c08;
}

.page-user-bot-view {
    margin: 30px 0 0;
    border: 1px solid #eee;
    box-shadow: 0 0 10px #ddd;
}

.page-user-bot-view aside {
    background: #fafafa;
    padding: 5px 25px;
}

.page-user-bot-view .cus-right-side {
    padding: 50px;
    margin: auto;
}

.page-user-bot-view .cus-right-side form {
    max-width: 500px;
    margin: auto;
}

.all-users .page-user-bot-view .cus-right-side {
    padding: 50px 10px;
}

.cus-settings-btn {
    width: 75px;
    height: 30px;
    overflow: hidden;
    border-radius: 4px;
    border: 2px solid #118C08;
}

.cus-settings-btn .cus-toggle-btn .cus-input~span {
    width: 75px;
    /* left: 75px; */
}

.cus-settings-btn .cus-toggle-btn .cus-input:checked~.cus-check-false {
    left: 75px;
}

.cus-settings-btn .cus-toggle-btn .cus-check-false::before {
    content: "";
    background: #118C08;
    width: 25px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    height: 100%;
}

/* .cus-settings-btn .cus-toggle-btn .cus-input~.cus-check-true {
    left: 75px;
} */
.cus-settings-btn .cus-toggle-btn .cus-input~.cus-check-false {
    padding-left: 10px;
}
td.wh-color {
    background: #fff !important;
    color: #fff;
    font-size: 0;
}
footer {
    text-align: center;
    color: grey;
}
footer p {
    font-size: 12px;
}

/* .arrow {
    border: solid purple;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
}

.up {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}

.down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
} */

.arrow {
    cursor: pointer;
}
.arrow.up::after {
    content: ' ▲';
}
.arrow.down::after {
    content: ' ▼';
}

.deleteRowBtn {
    border: none;
    background-color: #eaeaea;
    color: #707070;
    border-radius: 6px;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    padding: 0;
    margin: 0;
    cursor: pointer;
    position: relative;
}
.deleteRowBtn svg {
    width: 22px;
    height: 30px;
}
.deleteRowBtn:hover {
    background-color: #f9dcdc;
    color: #F44336;
}

#projectTable .deleteRowBtn {
    position: absolute;
    left: 10px;
    bottom: 10px;
}
/* #projectTable .deleteRowBtn:hover {
    background: #f9dcdc;
    color: #F44336;
} */


.file-upload {
    display: flex;
    align-items: center;
    gap: 10px;
}

.file-upload-label {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

#import_project {
    display: none;
}

#file_import {
    background-color: #008CBA;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.file-name {
    font-size: 14px;
    color: #555;
}

#import_project_modal .cus-popup-bot-import {
    min-width: 500px;
    padding: 10px 50px 20px;
}
#import_project_modal .modal-body-import {
    margin: 30px 0;
}
#import_project_modal .file-upload {
    justify-content: space-between;
    background: #eee;
    padding: 7px;
}