@import "./loader.css";
:root {
    --main-color: #3aa5ff;
    --color-dark: #333;
    --color-light: #fcfcfc;
    --text-grey: #B0B0B0;
}
* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style-type: none;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}
ul {
    padding-left: 0px;
    margin: 0px;
}
a {
    text-decoration: none;
}
.label_name {
    color: #444;
    font-size: 8pt;
}
#menu-toggle {
    display: none;
}
div.cn_paging {
    position: fixed;    
    bottom: 15px;
    left: 15px;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 10px;
    width: auto;
}
.cn_portal_header {
    background-color: #fff; 
    color: #000;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 48px;
    padding-left: 0px;
    padding-right: 0px;
    /* box-shadow: 0 1px 1px 0 rgba(0,0,0,.2),0 1px 1px -2px rgba(0,0,0,.14),0 1px 8px 0 rgba(0,0,0,.12); */
    border-bottom: 1px solid #f3f3f3;
    z-index:899
}
.cn_portal_header img {    
    margin-right: 12px;
    /* border-radius: 25%; */
}

.side-header {
    /* box-shadow: 0px 5px 5px -5px rgb(0 0 0 /10%); */
    background: #fff;    
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.side-header h3, side-head span {
    color: #fff;
    font-weight: 400;
}
.side-content {
    height: calc(100vh - 48px);
    overflow: auto;
    border-right: 1px solid #f3f3f3;
}
/* width */
.side-content::-webkit-scrollbar {
  width: 5px;
}
/* Track */
.side-content::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
 
/* Handle */
.side-content::-webkit-scrollbar-thumb {
  background: #b0b0b0; 
  border-radius: 10px;
}

/* Handle on hover */
.side-content::-webkit-scrollbar-thumb:hover {
  background: #b30000; 
}

.profile {
    text-align: center;
    padding: 0rem;
    color: #333;
    font-weight: 500;
}
.profile small {
    color: #899DC1;
    font-weight: 600;
}
#menu-toggle:checked ~ .sidebar {
    width: 60px;
}
#menu-toggle:checked ~ .sidebar .side-header span {
    display: none;
}
#menu-toggle:checked ~ .main-content {
    margin-left: 60px;
    width: calc(100% - 60px);
}
#menu-toggle:checked ~ .main-content header {
    left: 60px;
}
#menu-toggle:checked ~ .sidebar .profile,
#menu-toggle:checked ~ .sidebar .side-menu a small {
    display: none;
}
#menu-toggle:checked ~ .sidebar .side-menu a span {
    font-size: 1.3rem;
}
header {
    position: fixed;
    right: 0;
    top: 0;
    left: 165px;
    z-index: 100;
    height: 48px;
    box-shadow: 0px 5px 5px -5px rgb(0 0 0 /10%);
    background: #fff;
    transition: left 300ms;
}
.header-content, .header-menu {
    display: flex;
    align-items: center;
}
.header-content {
    justify-content: space-between;
    padding: 0rem 1rem;
    height: 100%
}
.header-content label:first-child span {
    font-size: 1.3rem;
}
.header-content label {
    cursor: pointer;
}
.header-menu {
    justify-content: flex-end;
    padding-top: .5rem;
}
.header-menu label,
.header-menu .notify-icon {
    margin-right: 2rem;
    position: relative;
}
.header-menu label span,
.notify-icon span:first-child {
    font-size: 1.3rem;
}

.notify-icon span:last-child {
    position: absolute;
    background: var(--main-color);
    height: 16px;
    width: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    right: -5px;
    top: -5px;
    color: #fff;
    font-size: .8rem;
    font-weight: 500;
}

.user {
    display: flex;
    align-items: center;
}

.user div, .client-img {
    height: 40px;
    width: 40px;
    margin-right: 1rem;
}

.user span:last-child {
    display: inline-block;
    margin-left: .3rem;
    font-size: .8rem;
}
/* --------------------------------- */
.analytics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 2rem;
    margin-top: .5rem;
    margin-bottom: 2rem;
}

.card {
    box-shadow: 0px 5px 5px -5px rgb(0 0 0 / 10%);
    background: #fff;
    padding: 1rem;
    border-radius: 3px;
}

.card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-head h2 {
    color: #333;
    font-size: 1.8rem;
    font-weight: 500;
}

.card-head span {
    font-size: 3.2rem;
    color: var(--text-grey);
}

.card-progress small {
    color: #777;
    font-size: .8rem;
    font-weight: 600;
}

.card-indicator {
    margin: .7rem 0rem;
    height: 10px;
    border-radius: 4px;
    background: #e9edf2;
    overflow: hidden;
}

.indicator {
    height: 10px;
    border-radius: 4px;
}

.indicator.one {
    background: #22baa0;
}

.indicator.two {
    background: #11a8c3;
}

.indicator.three {
    background: #f6d433;
}

.indicator.four {
    background: #f25656;
}

.records {
    box-shadow: 0px 5px 5px -5px rgb(0 0 0 / 10%);
    background: #fff;
    border-radius: 3px;
}

.record-header {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.add, .browse {
    display: flex;
    align-items: center;
}

.add span {
    display: inline-block;
    margin-right: .6rem;
    font-size: .9rem;
    color: #666;
}

input, button, select {
    outline: none;
}

.add select, .browse input, .browse select {
    height: 35px;
    border: 1px solid #b0b0b0;
    border-radius: 3px;
    display: inline-block;
    width: 75px;
    padding: 0rem .5rem;
    margin-right: .8rem;
    color: #666;
}

.add button {
    background: var(--main-color);
    color: #fff;
    height: 37px;
    border-radius: 4px;
    padding: 0rem 1rem;
    border: none;
    font-weight: 600;
}

.browse input {
    width: 150px;
}

.browse select {
    width: 100px;
}

.table-responsive {
    width: 100%;
    overflow: auto;
}

table {
    border-collapse: collapse;
}

table thead tr {
    background: var(--secondary-color);
}

table thead th {
    padding: 0.2rem 0rem;
    text-align: left;
    color: #333;
    font-size: .9rem;
}

table thead th:first-child {
    padding-left: 0.4rem;
}

table tbody td {
    /* padding: 1rem 0rem; */
    color: #444;
}

table tbody td:first-child {
    /* padding-left: 1rem; */
    /* padding-right: 1rem; */
    /* color: var(--main-color); */
    font-weight: 500;
    /* font-size: .9rem; */
}

table tbody tr {
    border-bottom: 1px solid #dee2e8;
    /* height: 3rem; */
}

table.props tbody tr {
    border-bottom: 1px solid #dee2e8;
    /* height: 3rem; */
}

.paddingBetweenCols td {
    padding: 0 5px;
}

.client {
    display: flex;
    align-items: center;
}

.client-img {
    margin-right: .5rem;
    border: 2px solid #b0b0b0;
    height: 45px;
    width: 45px;
}

.client-info h4 {
    color: #555;
    font-size: .95rem;
}

.client-info small {
    color: #777;
}

.actions span {
    display: inline-block;
    font-size: 1.5rem;
    margin-right: .5rem;
}
div.active {
    color: #000 !important;
    /* background-color: #f3f3f3 !important; */
    background-color: #fff !important;
    
}
.paid {
    display: inline-block;
    text-align: center;
    font-weight: 600;
    color: var(--main-color);
    background: #e5f8ed;
    padding: .5rem 1rem;
    border-radius: 20px;
    font-size: .8rem;
}

div.linked_project
{
    /* padding: 5px; */
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 5px;
    background-color: #d9ffdf;
    margin: 5px;
}
.div-plain-text {    
    padding: 20px;
}
.select_reset {
    width: 36px
}
@media only screen and (max-width: 1200px) {
    .analytics {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 768px) {
    .analytics {
        grid-template-columns: 100%;
    }
    
    .sidebar {
        left: -165px;
        z-index: 90;
    }
    
    header {
        left: 0;
        width: 100%;
    }
    
    .main-content {
        margin-left: 0;
        width: 100%;
    }
    
    #menu-toggle:checked ~ .sidebar {
        left: 0;
    }
    
    #menu-toggle:checked ~ .sidebar {
        width: 165px;
    }

    #menu-toggle:checked ~ .sidebar .side-header span {
        display: inline-block;
    }

    #menu-toggle:checked ~ .sidebar .profile,
    #menu-toggle:checked ~ .sidebar .side-menu a small {
        display: block;
    }

    #menu-toggle:checked ~ .sidebar .side-menu a span {
        font-size: 1.7rem;
    }
    
    #menu-toggle:checked ~ .main-content header {
        left: 0px;
    }
    
    table {
        width: 900px;
    }
}
.cn_oz {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #999
}











