::-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(../img/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);
}
/*  */
.custom-tab-scroll .theme-tab.active.cus-tab-border::after {
    background-repeat: no-repeat;
    height: 2px;
    background:  #3A4459;
    display: inline-block;
    content: "";
    position: absolute;
    border-radius: 4px 4px 0 0;
    width: 100%;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .theme-tab.active {
    color: #3A4459 !important;
    background-color: transparent !important;
  }
  .custom-tab-scroll .nav-item:has(.nav-link.active)::before{
    background: none !important;
  }
  .theme-tab:hover {
    color: #3A4459;
  }
  
  .theme-tab.cust-tab.active {
    background-color: transparent !important;
    color: #3A4459 !important;
  }
  .custom-tab-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    width: 100%;
  }

.secondary-btn-v1{
position: relative;
background-color: #fff;
padding: 10px 13px;
box-shadow:1px 2px 5px 0px #F2F0F0;
border-radius: 10px;
&::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    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;
}
&:hover{
    background-color: #f7f7f7;
}
}
.custom-dropdown-btn-1{
    position: relative;
    box-shadow: 1px 2px 5px 0px #F2F0F0;
    border: none;
    border-radius: 10px;
    &::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 10px;
        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;
    }
}
.icon-width{
    width: 14px;
    height: 14px;
}
.custom-border-bottom{
    border-bottom: 1px solid #F6F6F6;
}
.chart-img-width{
    width: 175px;
    height: 175px;
}
.chart-img-width-1{
    width: 620px;
    height: 175px;
}
.priority-mark{
    height: 6px;
    width: 6px;
    border-radius: 6px;
    display: inline-block;
}
.color-1{
    background-color: #FFB395;
}
.color-2{
    background-color: #FFD98A;
}
.color-3{
    background-color: #99D8E6;
}
.color-4{
    background-color: #AA9ACD;
}
.color-5{
    background-color:#B0E0A5;
}
.aging-mark{
    border-radius: 16px;
    height: 14px;
    width: 3px;
    display: inline-block;
}


.icon-btn{
    background-color: #fff;
    border: none;
    padding: 6px;
    border-radius: 3px;
    &:hover{
        background-color: #F3F2F2;
    }
}
.toggle {
    position: relative;
    box-sizing: border-box;
  }
  
  .toggle input[type="checkbox"] {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0;
  }
  
  .toggle label {
    position: relative;
    display: flex;
    align-items: center;
    box-sizing: border-box;
  }
  
  .toggle label:before {
    content: '';
    width: 45px;
    height: 14px;
    background: #ccc;
    box-shadow: inset 0 0 0 0px #75DD66;
    position: relative;
    display: inline-block;
    border-radius: 20px;
    box-sizing: border-box;
    transition: 0.2s ease-in;
  }
  
  .toggle label:after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    left: 0;
    top: -6px;
    z-index: 2;
    background: #fff;
    box-shadow: 0 1px 10px #0005;
    box-sizing: border-box;
    transition: 0.2s ease-in;
  }
  
  .toggle input[type="checkbox"]:checked+label:before {
    box-shadow: inset 40px 0 0 #75DD66;
  }
  
  .toggle input[type="checkbox"]:checked+label:after {
    left: 26px;
  }
  .width-120{
    width: 120px;
  }
  .mb-32{
    margin-bottom: 32px;
  }
  .width-15{
    width: 15%;
  }
  .domain-btn {
    position: relative;
    border-radius: 7px;
    z-index: 1;
    border: none;
    background:linear-gradient(180deg, #EEEEEE 0%, #B1DDE7 100%);
    padding-bottom: 3px;
    transition: all ease-in-out .3s;
    color: #458897;
    
    
}
.domain-btn::before {
    content: "";
    background-color: #F0FCFF;
    position: absolute;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    top: 1px;
    margin: 0;
    border-radius: 7px;
    right: 0.75px;
    z-index: -1;
    display: block;
    transition: all ease-in-out .3s;  
}

.icon-width-2{
    width: 10px;
    height: 10px;
}
.date-container{
    background: linear-gradient(180deg, rgba(100, 146, 249, 0.16) 0%, rgba(45, 53, 71, 0.16) 124.22%);
    border: none;
    border-radius: 20px;
    padding: 12px 25px;   
}
.filter-position{
    left: -440px !important;
}