.border-bottom {
    border-bottom: 1px solid #b4b4b4
}

.one-line-label {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    display: box;
    box-orient: vertical;
    line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal
}

.two-line-label {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    display: box;
    box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal
}

.three-line-label {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    display: box;
    box-orient: vertical;
    line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal
}

::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 4px
}

::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #797070
}

::ng-deep .cdk-virtual-scroll-content-wrapper {
    position: unset
}

.date-label {
    color: #5c5b5b
}

.loading-div {
    display: flex;
    align-items: center;
    gap: 8px
}

.loading-div label {
    font-weight: 600;
    color: #666;
    letter-spacing: 1px
}

.spinner {
    width: 24px;
    height: 24px;
    border: 4px solid #ccc;
    border-top-color: #ec407a;
    border-radius: 50%;
    animation: spin 1s linear infinite
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.box-shadow {
    box-shadow: 0 2px 4px -1px #0003, 0 4px 5px #00000024, 0 1px 10px #0000001f !important
}

.pointer {
    cursor: pointer
}

.center {
    text-align: center !important
}

.extra-width {
    width: 22% !important
}

.medium-width {
    width: 17% !important
}

.small-width {
    width: 10% !important
}

.extra-small {
    width: 5% !important
}

.orange-color {
    background: linear-gradient(45deg, #ff8a65, #ffab91, #ffccbc, #fbe9e7)
}

.purple-color {
    background: linear-gradient(45deg, #ba68c8, #ce93d8, #e1bee7, #f3e5f5)
}

.indigo-color {
    background: linear-gradient(45deg, #7986cb, #9fa8da, #c5cae9, #e8eaf6)
}

.blue-color {
    background: linear-gradient(45deg, #64b5f6, #90caf9, #bbdefb, #e3f2fd)
}

.teal-color {
    background: linear-gradient(45deg, #4db6ac, #80cbc4, #b2dfdb, #e0f2f1)
}