


.stat1_container {
    width: 100%;
    margin: 35px auto;
    background: white;
    padding: 0 20px;
    position: relative;
    gap: 12px;
    flex-direction: column;
    display: flex;
}

.badge1 {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #d4f4dd;
    border: 4px solid #19895A;
    padding: 6px 12px;
    border-radius: 6px;
    gap: 0px;
    border-top-width: 1px;
    border-right-width: 4px;
    border-bottom-width: 4px;
    border-left-width: 1px;
    font-family: Satoshi;
    font-weight: 700;
    font-size: 14px;
    line-height: 150%;
    text-align: center;
    color: #19895A;
}

.badge-icon1 {
    background: url('./kpi1.svg') no-repeat 1px center;
    width: 30px;
    height: 16.98px;
    border-radius: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;

}

.title1 {
    color: #141A21;
    font-family: Satoshi;
    font-weight: 700;
    font-size: 36px;
    line-height: 100%;
    text-align: start;
}

.description1 {
    color: #2c3947;
    font-family: Satoshi;
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
}

.right-section1 {
flex-shrink: 0;
}

.test1 {
    display: flex;
}

.content1 {
    padding-right:50px;
    gap: 12px;
}

.rectangle-placeholder1 {
    width: 250px;
    height: 201px;
    background-color: #f1f1f1; 
    border-radius: 10px;
}

.stat1-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 15px;
}

.stat1-card {
    
    background: transparent;
    border-left: 5px solid;
    padding: 4px 24px;
    position: relative;
    min-height: 45px;
    /* max-height: 94px; */
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    gap: 2px;
}

.stat1-card.purple {
    border-left-color: #5657E4;
}

.stat1-card.teal {
    border-left-color: #00a690;
}

.stat1-card.yellow {
    border-left-color: #a6ad3d;
}

.stat1-card.blue {
    border-left-color: #22c2d4;
}

.stat1-card.gray {
    border-left-color: #AA70E0;
}

.stat1-card.orange {
    border-left-color: #EA521C;
}

.stat1-number {
    font-family: Satoshi;
    font-weight: 700;
    font-size: 28px;
    line-height: 150%;
    color: #141A21;
}

.stat1-label {
    color: #2C3947;
    font-family: Satoshi;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
}

.user-icon1 {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
    background: #8a8a8a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-icon svg {
    width: 12px;
    height: 12px;
    fill: white;
}

.background-pattern1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(circle, #e0e0e0 1px, transparent 1px);
    background-size: 10px 10px;
    opacity: 0.3;
    pointer-events: none;
}

@media (max-width: 990px){
    .stat1_container{
        padding: 0 20px;
    }

    .test1{
        flex-direction: column;
    }

    .title1{
        font-size: 28px;
    }

    .description1{
        font-size: 16px;
    }
    
    .rectangle-placeholder1{
        width: 100%;
    }

    .stat1-grid{
        margin-top: 15px;
        flex-direction: column;
        display: flex;
        gap: 0px;
    }

    .stat1-card{
        padding: 30px 24px;
    }
}