::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    border-radius: 8px;
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #D9D9D9;
    border-radius: 8px;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

.grid-col {
    box-shadow: 1px 2px 5px 0px #F2F0F0;
    border-radius: 12px;
    border: 1px solid #F3F3F3;
    background-color: #ffffff;
    padding: 18px 24px;
}

/* 
.grid-col:nth-child(1) {
    grid-area: stats;
}

.grid-col:nth-child(2) {
    grid-area: timer;
}

.grid-col:nth-child(3) {
    grid-area: chart;
}

.grid-col:nth-child(4) {
    grid-area: chat;
}

.grid-col:nth-child(5) {
    grid-area: folders;
}

.grid-col:nth-child(6) {
    grid-area: phase;
}

.grid-col:nth-child(7) {
    grid-area: related-links;
}

.theme-grid {
    display: grid;
    gap: 1rem;
    grid-auto-columns: 1fr;
    grid-template-areas:
        'stats stats stats timer'
        'chart chat chat folders'
        'phase chat chat related-links';

    &.theme-grid-alter {
        grid-template-areas:
            'stats stats stats timer'
            'chart chat chat folders'
            'phase chat chat folders';

        .grid-col:nth-child(7) {
            display: none;
        }
    }
} */

.time-wrapper {
    .edit-icon {
        visibility: hidden;
    }

    &:hover {
        .edit-icon {
            visibility: visible;
        }
    }
}

.custom-date-input {
    border-radius: 10px;
    padding: 7px 12px;
    width: 150px;
}

.action-btn {
    box-shadow: 1px 2px 5px 0px #F2F0F0;
    border: 1px solid #F3F3F3;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: #ffffff;
    padding: 0;
    transition: all .1s ease-in;

    &:hover {
        background-color: #f7f5fa9a;
    }

    &.small {
        width: 32px;
        height: 32px;
    }
}

.decor-bg {
    background-image: url(decor-bg.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 100%;
}

.chart-wrap {
    width: 100%;
    height: 176px;
    object-fit: contain;
}

.chart-legend {
    height: 11px;
    width: 11px;
    border-radius: 3px;
    box-shadow: 1px 1px 4px 0px #82828240;

    &.purple {
        background-color: #AA9ACD;
    }

    &.water-green {
        background-color: #99D8E6;
    }
}

.legend-percent {
    padding: 2px 4px;
    border-radius: 6px;
    box-shadow: 0px 0.5px 2px 0px #BBBBBB40;

    &.purple {
        background-color: #F5F1FF;
        color: #5D4590;
    }

    &.water-green {
        background-color: #F0FCFF;
        color: #458897;
    }
}

.legend-percent {
    position: relative;
}

.legend-percent::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 6px !important;
    padding: 0.5px;
    background: linear-gradient(180deg, #EEEEEE 0%, rgba(93, 69, 144, 0.17) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.legend-percent.water-green::before {
    background: linear-gradient(180deg, #EEEEEE 0%, #B1DDE7 100%);
}

.hover-change {
    transition: all .1s ease-in;

    &:hover {
        filter: brightness(.5);
    }
}

.icon-wrapper {
    background-color: #f6f7f7;
    border: 1px solid #ced0d3;
    border-radius: 12px;
    box-shadow: 0px 1px 3px 0px #A4A4A440;
    height: 38px;
    width: 38px;
    z-index: 1;
}

.custom-radio.form-check-input {
    background-color: #ffffff;
    border-color: #2D3547;
    height: 14px;
    width: 14px;

    &:checked[type=radio] {
        --bs-form-check-bg-image: url(Ellipse.svg);
        background-size: 8px 8px;
    }

    &:focus {
        border-color: #2D3547 !important;
    }
}

.number-wrap {
    color: #2D3547;
    border-radius: 50%;
    border: 1px solid #2D3547;
    font-size: 10px;
    height: 14px;
    width: 14px;
    line-height: normal;

    &.active {
        color: #ffffff;
        background-color: #2D3547;
    }
}

.decor-line {
    &::after {
        position: absolute;
        content: '';
        color: #ccc;
        border-bottom: 1px dashed #CCCCCC;
        height: 1px;
        top: 20px;
        left: 16%;
        right: 16%;
        z-index: 0;
    }
}

.convo-thread {
    box-shadow: 0px 0.75px 1px 0px #CCCCCC40;
    background-color: #FAFAFA;
    border: 1px solid #F9F9F9;
    border-radius: .5rem;
}

.user-pic {
    height: 24px;
    width: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.like-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.like-container svg {
    transition: all 0.3s;
    fill: #fff;
}

.like-container svg:hover {
    transform: scale(1.1);
}

.like-container input:checked~svg {
    fill: #FF5858;
}

.like-wrapper {
    padding: 4px 5px;
    background-color: #eeeeee;
    border-radius: 24px;
}

.h-40px {
    height: 40px;
}

.convo-container {
    max-height: calc(123px * 4);
    overflow: auto;
}

.reply-container {
    background-color: #FAFAFA;
    border-radius: 8px;
    max-height: calc(141px * 4);
    overflow: auto;
}

.ps-40 {
    padding-left: 40px;
}

.card-wrapper {
    border-radius: 8px;
    box-shadow: 0px 2px 2px 0px #F7F7F7;
    border: 1px solid #F3F3F3;
    margin-bottom: 12px;
    padding: 8px 16px;
}

.custom-list-group {
    height: calc(37px * 5);
    overflow: auto;

    .list-group-item {
        color: #3592FA;

        &:hover {
            color: #1469ca;
        }
    }
}

.card-container {
    min-height: calc(74px * 4);
}