.dashboard-heading {
    color: #268bff;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 2.5px;
}

@mixin user-card($bgColor) {
    background-color: $bgColor;
    box-shadow:
        0 2px 2px 0 rgba(0, 0, 0, 0.24),
        0 0 2px 0 rgba(0, 0, 0, 0.12);
    cursor: default;
    transition: 150ms;
    position: relative;
    border-radius: 0.25rem;
    padding: 1.5rem;
}

//orderCard issue 2
// .user-card:hover {
// box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.3), 0 2px 2px 0 rgba(0, 0, 0, 0.2);
// top: -2px;
// }

@mixin view_link {
    float: right;
    color: #268bff;
    cursor: pointer;
}

@mixin info-box {
    background-color: #c7e1ff;
    border-radius: $fs-4;
    padding: 0.1875rem 0.5rem 0 0.5rem;
    @include fonts(Roboto, 0.9375rem, normal, 500, normal, 1.25, 0.088rem);
}

.noData {
    background-color: lightgrey;
    padding: 0.5em;
    width: 40%;
    text-align: center;
    margin: 12.5em auto;
    border-radius: 0.2em;
    font-size: var(--page-link-fs);
}

@mixin svg-parent-card($cardHeight, $cardBgColor) {
    max-width: 100%;
    height: $cardHeight;
    width: 100%;
    background-color: $cardBgColor;
    border: none;
    outline: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

@mixin svg-content-placeholder($backgroundGradient, $clipPath) {
    animation: linear 1s placeHolderShimmer infinite;
    background: $backgroundGradient;
    background-size: 800px 104px;

    width: 100%;
    height: 100%;
    -webkit-clip-path: url($clipPath);
    clip-path: url($clipPath);
    // 	Safari render fix
    transform: translateZ(0);
}

@keyframes placeHolderShimmer {
    0% {
        background-position: -468px 0;
    }
    100% {
        background-position: 468px 0;
    }
}

:host::ng-deep.btn-secondary {
    box-shadow: none;
    border: 1px solid lightgray;
}
:host ::ng-deep .ui-select-match-text {
    padding-top: 0;
    display: inline-block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
@mixin material-icons-and-expand-icon {
    color: #268bff;
    position: absolute;
    float: right;
    cursor: pointer;
    pointer-events: none;
}

@mixin dropdownContainer {
    position: relative;
    margin: 0 0.5625rem 0 0;
    display: flex;
    flex-direction: column;
}
