@import url('https://fonts.googleapis.com/css2?family=Manrope&display=swap');

.cdcp-ongoing-task-container {

    max-width: 80rem;
    margin: 0 auto;
    font-family: "Manrope", sans-serif;

    .cdcp-title {
        margin: 0;
        margin-bottom: 1rem;
        font-size: 2.25rem;
        line-height: 2.5rem;
        font-weight: 700;
        color: hsl(222.2 47% 11%);
        text-align: center;
    }

    .cdcp-desc {
        margin: 0;
        margin: 0 auto 3rem;
        max-width: 42rem;
        font-size: 1.125rem;
        line-height: 1.75rem;
        color: hsl(215 16% 47%);
        text-align: center;
    }

    .cdcp-grid {}

    .cdcp-card {
        border-radius: 0.75rem;
        border: 1px solid hsl(214 32% 91%);
        background-color: hsl(0 0% 100%);
        color: hsl(222.2 47% 11%);
        box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / 0.05);
        transition-property: all;
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        transition-duration: 200ms;
        animation-duration: 200ms;
    }

    .cdcp-card-header {
        display: flex;
        padding: 1.5rem;
        align-items: flex-start;
        justify-content: space-between;
        gap: 0.5rem;
    }

    .cdcp-card-title {
        margin: 0;
        font-size: 1.125rem;
        line-height: 1.75rem;
        font-weight: 600;
        letter-spacing: -0.025em;
        color: hsl(222.2 47% 11%);
    }

    .cdcp-card-badge {
        display: inline-flex;
        align-items: center;
        border-radius: 9999px;
        background-color: hsl(38 92% 50%);
        padding: 0.125rem 0.625rem;
        font-size: 0.75rem;
        line-height: 1rem;
        font-weight: 600;
        color: hsl(0 0% 100%);
        transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        transition-duration: 150ms;
    }

    .cdcp-card-body {
        padding: 1.5rem;
        padding-top: 0px;
    }

    .cdcp-info-container {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.875rem;
        line-height: 1.25rem;
        color: hsl(215 16% 47%);
    }

    [class^="ri-"] {
        color: hsl(38 92% 50%);
    }

    .cdcp-info-container:not(:last-child) {
        margin-bottom: 0.75rem;
    }

    .owl-nav {
        position: absolute;
        width: 106%;
        top: 50%;
        display: flex;
        justify-content: space-between;
        transform: translateY(-50%);
        margin-left: -3%;
    }

    .owl-dots {
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 20px;
    }

    .owl-dot {
        height: 10px;
        width: 10px;
        background-color: rgba(0, 0, 0, .2) !important;
        border-radius: 50%;
    }

    .owl-dot.active {
        background-color: hsl(38 92% 50%) !important;
    }
}