.mprices-card {
    padding: 20px 14px;
    border: 1px solid #EEEEEE;
}

.mprices-card__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* КНОПКА */
.mprices-download-button {
    position: relative;
    display: block;
    width: 100%;
    padding: 12px 15px;
    background: #E31E24;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.mprices-download-wrapper {
    position: relative;
}

/* Иконка ? */
.mprices-help {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    color: #E31E24;
    font-size: 13px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: help;
}

/* ПОДСКАЗКА */
.mprices-tooltip {
    position: absolute;
    box-sizing: border-box;
    top: 100%;
    left: 138px;
    margin-top: 10px;
    width: 300px;
    background: #fff;
    border: 1px solid #F2F2F2;
    box-shadow: 1px 3px 4px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: 0.2s;
    z-index: 10;
}

.mprices-tooltip::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 20%;
    margin-left: -10px;
    border: 10px solid transparent;
    border-top-color: #F2F2F2;
    transform: rotate(180deg);
}

.mprices-tooltip__title {
    padding: 8px 16px;
    font-weight: 700;
    font-size: 14px;
    background: #F2F2F2;
    border: 1px solid #F2F2F2;
}

.mprices-tooltip__body {
    padding: 18px;
    font-size: 12px;
    line-height: 15px;
    text-align: justify;
    color: #000;
}

.mprices-download-wrapper:hover .mprices-tooltip {
    opacity: 1;
    pointer-events: auto;
}

/* ССЫЛКА "полный прайс" */
.mprices-full-price {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000;
    font-size: 14px;
}

/* Мобильная версия */
.mprices-mobile {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mprices-mobile__row {
    display: flex;
    gap: 10px;
}

.mprices-mobile-download-button {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 25px 5px 18px;
    background: #E31E24;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    gap: 8px;
}

.mprices-help-btn {
    width: 58px;
    height: 40px;
    background: #FAFAFA;
    border: none;
    font-size: 24px;
    color: #E31E24;
}

/* Скрытая подсказка */
.mprices-mobile__hint {
    display: none;
    font-size: 12px;
    line-height: 15px;
    text-align: justify;
    color: #000;
}

.mprices-mobile.is-open .mprices-mobile__hint {
    display: block;
}