#sale_prediction {
    display: block;
    position: relative;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    background: var(--main_bg_gray);
    border-radius: 12px;
    padding: 24px 32px 24px 102px;
    color: var(--main_text_black);
    margin-bottom:12px;
}

#sale_prediction:before {
    content: '';
    position: absolute;
    width: 56px;
    height: 56px;
    background: url(./images/sale_v2.svg) no-repeat center;
    top: 20px;
    left: 32px;
}
#sale_prediction .sale-prediction-title{
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 19.6px */
    text-transform: uppercase;
    margin-bottom: 8px;
}
#sale_prediction .catalog-element-popup-info{
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
#sale_prediction .catalog-element-popup-info a {
    color: var(--blue-link);
    border-bottom: 1px solid transparent;
    transition: 0.2s all linear;
}

#sale_prediction .catalog-element-popup-info a:hover {
    color: var(--blue-link);
    border-bottom: 1px solid var(--blue-link);
    transition: 0.2s all linear;
}

.catalog-element-popup-element {
    text-decoration: underline;
}

@media (max-width: 576px) {
    #sale_prediction{
        font-size: 12px;
        padding: 20px 20px 20px 62px;
    }
    #sale_prediction:before{
        left: 20px;
        top: 20px;
    }
    #sale_prediction .sale-prediction-title,
    #sale_prediction .catalog-element-popup-info a{
        font-size: 12px;
    }
}