@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;700&family=Roboto:wght@700&display=swap');


.c-pill {
    align-items: center;
    font-family: 'Roboto', sans-serif;
    /* font-family: 'Roboto Condensed', sans-serif; */
	font-weight: bold;
	font-size: 11px;
    display: inline-block;
    height: 100%;
    white-space: nowrap;
    width: auto;

    position: relative;
    border-radius: 100px;
    line-height: 1;
    overflow: hidden;
    padding: 0px 28px 0px 28px;
    text-overflow: ellipsis;
	line-height: 1.25rem;
	color: #000000;
	
    word-break: break-word;

}
.c-pill::before {
    border-radius: 50%;
    content: '';
    height: 10px;
    left: 6px;
    margin-top: -5px;
    position: absolute;
    top: 50%;
    width: 10px;
}

.c-pill--success {
    background: #b4eda0; 
}
.c-pill--success:before {
    background: #6BC167; 
}
.c-pill--warning {
    background: #ffebb6; 
}
.c-pill--warning:before {
    background: #ffc400; 
}
.c-pill--danger {
    background: #ffd5d1; 
}
.c-pill--danger:before {
    background: #ff4436; 
}

.c-pill--discarded {
    background: #9b9b9b; 
}
.c-pill--discarded:before {
    background: #737373; 
}

.c-pill--bluecustom {
    background: #3fd5ff; 
}
.c-pill--bluecustom:before {
    background: #004e93;
}

.right-al{
    text-align: right;
}

.calendar {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 150px;
    bottom: 3px;
    left: calc(50% - 1.5px);
    content: " ";
    display: block;
    background: #ff0000;
}