.achieved-block {
    padding: 50px 0;
}

.achieved-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 30px 0 0;
}

.achieved-content_imets {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1 1 calc(50% - 20px);
}

.achieved-content_imet {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-radius: 8px;
    padding: 15px 20px;
    height: 89px;
    background-color: #fff;
    box-sizing: border-box;
    border: 1px solid #fff;
    cursor: pointer;
}

.achieved-content_imet div {
    font-weight: 500;
    font-size: 16px;
    color: #676767;
    margin: 0;
    text-align: right;
}

.achieved-content_imet p {
    font-weight: 700;
    font-size: 24px;
    color: #252525;
    margin: 0 0 3px;
}

.achieved-content_imet__place.red {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    color: white;
    border-radius: 100px;
    width: 40px;
    height: 40px;
    background: #900;
}

.achieved-content_imet__place.black {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    color: white;
    border-radius: 100px;
    width: 40px;
    height: 40px;
    background: #322b25;
}

.achieved-content_imet__place.gold {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    color: white;
    border-radius: 100px;
    width: 40px;
    height: 40px;
    background: #e0a76a;
}

.chart-container {
    background: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    width: 100%;
    flex: 1 1 calc(50% - 20px);
    height: 287px;
    box-sizing: border-box;
    border: 1px solid #fff;
}

.chart-container.dark .chart-title {
    color: #322b25;
}

.chart-container.gold .chart-title {
    color: #e0a76a;
}

.chart-title {
    font-weight: 600;
    font-size: 14px;
    color: #900;
    margin-bottom: 10px;
}

.chart-wrapper {
    display: flex;
}

.chart {
    display: flex;
    align-items: flex-end;
    height: 200px;
    gap: 30px;
    flex: 1;
    border-bottom: 1px solid #D8D8D8;
    padding-left: 10px;
    position: relative;
}

.chart-container.dark .bar {
    background-color: #322b25;
}

.chart-container.gold .bar {
    background-color: #e0a76a;
}

.bar {
    flex: 1;
    position: relative;
    background-color: #900;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 0;
    transition: height 1s ease-in-out;
}

.bar span {
    font-size: 14px;
    font-weight: 600;
    position: absolute;
    top: -20px;
    color: #252525;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s, transform 0.5s;
}

.bar.animated span {
    opacity: 1;
    transform: translateY(0);
}

.bar-labels {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-top: 10px;
    /* padding-left: 30px; */
    font-size: 14px;
    font-weight: 500;
    color: #252525;
    margin-left: auto;
}

.bar-labels div {
    display: flex;
    justify-content: center;
    flex: 1;
    text-align: center;
}

.y-axis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-right: 10px;
    height: 200px;
    padding-top: 8px;
}

.y-axis div {
    text-align: right;
    font-size: 12px;
    color: #676767;
}

.achieved-content_imet.red.active {
    border: 1px solid rgba(153, 0, 0, 0.35);
    box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.08);
}

.achieved-content_imet.black.active {
    border: 1px solid rgba(0, 0, 0, 0.35);
    box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.08);
}

.achieved-content_imet.gold.active {
    border: 1px solid rgba(151, 111, 23, 0.35);
    box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.08);
}

.chart-container.active-red {
    border: 1px solid rgba(153, 0, 0, 0.35);
    box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.08);
}

.chart-container.active-red .bar {
    background: linear-gradient(180deg, #900 0%, #be4141 100%);
}

.chart-container.active-black {
    border: 1px solid rgba(0, 0, 0, 0.35);
    box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.08);
}

.chart-container.active-black .bar {
    background: linear-gradient(180deg, #322b25 0%, #564b42 100%);
}

.chart-container.active-gold {
    border: 1px solid rgba(151, 111, 23, 0.35);
    box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.08);
}

.chart-container.active-gold .bar {
    background: linear-gradient(180deg, #e0a76a 0%, #f6c28b 100%);
}