.container {
    background: var(--secondary-color);
    padding: 20px;
    border-radius: 10px;
    height: 100%;
}

.head {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0;
}

.tag {
    /* background: var(--gradient); */
    background: #fff;
    color: #000;
    margin: 0 7px 7px 0;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 25px;
    cursor: pointer;
    outline: none;
    border: none;
}
.tag:active {
    transform: scale(0.98);
}

.tag.active {
    background: var(--gradient);
    color: #fff;
}

.progress_bars {
    margin-top: 30px;
}

.progress_bar_container {
    margin-bottom: 20px;
}

.progress_bar_detail {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.progress_bar_holder {
    position: relative;
    height: 10px;
    width: 100%;
    border-radius: 10px;
    margin-top: 15px;
    background: var(--secondary-color-light);
}

.progress_bar {
    position: absolute;
    height: 100%;
    width: 100%;
    border-radius: inherit;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.4s linear;
}

.progress_bar_complete {
    background: linear-gradient(#8e2de2, #4a00e0);
}
.progress_bar_pending {
    background: linear-gradient(#ff839d, #f50b9a);
}

.doughnut_container {
    height: 180px;
}

@media screen and (min-width: 300px) {
    .head {
        font-size: 18px;
    }
    .tag {
        font-size: 14px;
    }
}

@media screen and (min-width: 550px) {
    .head {
        font-size: 24px;
    }
    .tag {
        padding: 8px 15px;
    }
}

@media screen and (min-width: 1000px) {
    .head {
        font-size: 16px;
    }
    .tag {
        font-size: 12px;
    }
}
