.object_history_in_advert {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 40px;
    margin-bottom: 35px;
    border-top: 1px solid #ddd;
}

.object_history_in_advert .oh_row {
    display: flex;
    flex-direction: row;
    gap: 39px;
}

.object_history_in_advert .oh_row.row2 {
    align-items: center;
    justify-content: center;
}

.object_history_in_advert .oh_item {
    display: flex;
    flex-direction: row;
    gap: 8px;
    max-width: 199px;
}

.object_history_in_advert .green_circle {
    width: 44px;
    height: 44px;
    border-radius: 22px;
    flex-shrink: 0;
    background-color: #74D08E;
    position: relative;
}

.object_history_in_advert .white_circle {
    width: 44px;
    height: 44px;
    border-radius: 22px;
    flex-shrink: 0;
    background-color: white;
    position: relative;
    border: 1px solid #EEF0F0;
}

.object_history_in_advert .white_circle::after {
    content: " ";
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    width: 12px;
    height: 12px;
    border-radius: 6px;
    background: url(/static/svg/object_history/check-green-11.svg) no-repeat center center;
}
.object_history_in_advert .oh_item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 44px;
    height: 44px;
    z-index: 2;
}

.object_history_in_advert .oh_text {
    line-height: 14px;
    font-size: 12px;
    display: block;
    width: 150px;
    padding-top: 8px;
}

.object_history_in_advert .oh_text .accent {
    font-weight: bold;
    color: #74D08E;
}

.object_history_in_advert .oh_action {
    box-sizing: border-box;
    height: 40px;
    width: 100%;
    border: 1px solid #74D08E;
    color: #74D08E;
    font-weight: bold;
    border-radius: 4px;
    background-color: #FFFFFF;
    font-size: 14px;
    line-height: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4px;
}


