﻿.row {
    display: flex;
    align-items: center;
}

.col {
    flex: 1;
}

.percent {
    font-weight: 600;
    margin-left: 6px;
}

.description {
    color: #666;
    margin: 12px 0;
    font-size: 14px;
    line-height: 1.4
}

.icons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 16px;
}

.icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100px;
    text-align: center;
}

    .icon .mdi {
        font-size: 36px;
        margin-bottom: 6px;
    }

@media (min-width: 1300px) {
    .icons {
        display: flex;
        gap: 24px;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 30px;
    }

    .icon .mdi {
        font-size: 54px;
        margin-bottom: 6px;
    }
}

@media (max-width: 768px) {
    .icons {
        display: flex;
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 12px;
    }

    .icon .mdi {
        font-size: 20px;
        margin-bottom: 3px;
    }
}

.label {
    font-size: 13px;
    color: #333;
}

.accordion-item{
    max-width:450px;
}

#inflationChart {
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: 100%;
}

.inflationchartContainer{
    width:100%;
    height:30vh;
    min-height:30vh;
}

@media (max-width: 768px) {
    .inflationchartContainer {
        width: 100%;
        height: 25vh;
        min-height: 25vh;
    }
}