Обновлено: 01.07.2026
Находи отзывы о Rocket Money — кредиторе, который появился на рынке лучших МФО всего в этом месяце. Реальные отзывы от тех, кто уже брал кредит.
БЕЗОТКАЗНОЕ
Rocket Money — новое МФО без отказов
Сумма — 3–8 тыс.
Срок — до 360 дней
Ставка — 0,01% в день
/* Карточка оферу */
.credit-offer{
display:flex;
align-items:flex-start;
gap:15px;
background:#2b2b2b;
color:#fff;
border-radius:10px;
padding:15px 20px;
margin:20px auto;
max-width:800px;
box-shadow:0 4px 10px rgba(0,0,0,.5);
font-family:Segoe UI, sans-serif;
flex-wrap:nowrap;
position:relative; /* потрібно для абсолютного позиціонування розкривашки на мобільних */
}
/* Логотип */
.credit-offer img{
width:150px;
height:150px;
object-fit:contain;
border-radius:6px;
transition:all .3s ease;
flex-shrink:0;
}
/* Текстовий блок */
.credit-offer-text{
flex-grow:1;
min-width:200px;
}
.credit-offer-text p{
margin-top:5px;
line-height:1.4;
word-break:break-word;
color:#fff;
}
/* Заголовок */
.credit-title{
font-size:18px;
font-weight:bold;
margin-bottom:5px;
color:white;
}
/* Кнопка оформлення */
/* Кнопка оформлення */
.credit-button{
display:inline-block;
background:#16a34a; /* зелений як на скріні */
color:#fff;
font-family:’Segoe UI’, sans-serif;
font-size:17px;
font-weight:bold;
padding:12px 25px;
border-radius:8px;
text-decoration:none;
cursor:pointer;
text-align:center;
transition:background-color .2s ease, transform .05s ease;
white-space:nowrap;
}
.credit-button:hover{ background:#22c55e; } /* трохи темніше при наведенні */
.credit-button:active{ transform: translateY(1px); }
.credit-button:focus-visible{ outline:2px solid #ffe600; outline-offset:2px; } /* видимий фокус */
/* Розкривашка — вигляд за замовчуванням (ПК) */
.credit-disclaimer{
background:none;
border:none;
padding:0;
margin-top:6px; /* на ПК йде під кнопкою */
z-index:3;
}
.credit-disclaimer>summary{
list-style:none;
cursor:pointer;
font-size:0; /* прибираємо текст */
padding:0;
margin:0;
display:inline-flex;
align-items:center;
justify-content:center;
}
.credit-disclaimer>summary::before{
content:”▼”;
font-size:12px;
color:#ccc;
background:#444;
border-radius:50%;
width:20px;
height:20px;
display:flex;
align-items:center;
justify-content:center;
transition:transform .3s ease, background-color .3s ease;
}
.credit-disclaimer[open]>summary::before{
transform:rotate(180deg);
background:#555;
}
.credit-disclaimer>summary::-webkit-details-marker{ display:none; }
/* Тіло розкривного блоку (ПК) */
.credit-disclaimer-body{
margin-top:6px;
padding:6px;
font-size:12px;
color:#cfcfcf;
line-height:1.4;
background:#232323;
border-radius:6px;
}
.credit-disclaimer-body a{
color:#cfe6ff;
text-decoration:underline;
text-underline-offset:2px;
}
/* Мобільна адаптація */
@media (max-width:767px){
.credit-offer{
flex-direction:column;
align-items:center;
text-align:center;
}
.credit-offer img{
width:168px;
height:auto;
}
.credit-offer-text{
max-width:100%;
margin-top:10px;
}
/* кнопка по центру */
.credit-button{
margin:10px auto 0;
}
/* стрілочка фіксується в правому нижньому кутику картки */
.credit-disclaimer{
position:absolute;
right:10px;
bottom:10px;
margin-top:0; /* не потрібно, бо елемент вийшов з потоку */
}
/* панель з інфою відкривається над стрілкою, праворуч */
.credit-disclaimer-body{
position:absolute;
right:0;
bottom:30px; /* трохи вище кола */
margin-top:0;
text-align:left;
max-width:min(88vw,320px);
box-shadow:0 6px 16px rgba(0,0,0,.45);
}
}
.credit-mini{
display:flex;
flex-wrap:wrap;
gap:8px;
margin:6px 0 10px;
}
.credit-mini span{
background:rgba(255,255,255,.06);
border:1px solid rgba(255,255,255,.08);
border-radius:6px;
padding:4px 8px;
font-size:13px;
line-height:1;
white-space:nowrap;
color:#fff;
}
@media (max-width:480px){
.credit-mini{justify-content:center;}
}
/* Стильний другорядний лінк-«пігулка» */
.credit-review{
display:inline-flex;
align-items:center;
gap:8px;
padding:6px 10px;
margin:6px 0 10px;
font-size:13px;
color:#ddd;
text-decoration:none;
background:rgba(255,255,255,.04);
border:1px solid rgba(255,255,255,.15);
border-radius:999px;
transition:border-color .25s ease, color .25s ease, background-color .25s ease;
}
/* маленьке «i» у колі без картинок */
.credit-review::before{
content:”i”;
width:16px;
height:16px;
display:flex;
align-items:center;
justify-content:center;
font-weight:700;
font-size:12px;
line-height:1;
color:#2b2b2b;
background:#cfe6ff;
border-radius:50%;
}
/* hover/focus — непомітний, але відчутний */
.credit-review:hover{
color:#ffe600;
border-color:#ffe600;
background:rgba(255,255,255,.06);
}
.credit-review:focus-visible{
outline:2px solid #ffe600;
outline-offset:2px;
}
@media (max-width:767px){
.credit-review{ display:inline-flex; margin-left:auto; margin-right:auto; }
}
.credit-offer img{cursor:pointer;}
// робимо клік по зображенню еквівалентом кліку по кнопці “Оформити”
document.addEventListener(‘click’, function(e){
const img = e.target.closest(‘.credit-offer img’);
if(!img) return;
const card = img.closest(‘.credit-offer’);
const btn = card && card.querySelector(‘.credit-button’);
if(!btn) return;
// відкриваємо так само, як у кнопки
if(btn.target === ‘_blank’){
window.open(btn.href, ‘_blank’, ‘noopener’);
}else{
location.href = btn.href;
}
});
// доступність з клавіатури
document.addEventListener(‘keydown’, function(e){
if((e.key === ‘Enter’ || e.key === ‘ ‘) && e.target.matches(‘.credit-offer img’)){
e.preventDefault();
const card = e.target.closest(‘.credit-offer’);
const btn = card && card.querySelector(‘.credit-button’);
if(!btn) return;
if(btn.target === ‘_blank’){
window.open(btn.href, ‘_blank’, ‘noopener’);
}else{
location.href = btn.href;
}
}
});
Важно понимать, что когда вы хотите взять кредит в Rocket Money, отзывы — это основная опора, на которую стоит обращать внимание при выборе кредитора. Не забывайте, что заявку на получение средств нужно подавать ровно на ту сумму, которая решает ваши текущие финансовые вопросы.
Rocket Credit обладает всеми параметрами надёжного МФО — включая наличие официальных документов на сайте, реальный адрес, бесплатный номер 0800205020, поддержку в Telegram и стильный сайт, который явно создавали умные люди.
Чтобы оставить отзыв, воспользуйтесь специальной формой ниже. Пожалуйста, обязательно указывайте свой e-mail, ведь комментарии могут оставлять только реальные пользователи. В случае, если микрокредитная организация захочет разобраться в ситуации, мы сможем передать им ваш e-mail. Это, как минимум, защищает от клеветы конкурентов.
Кстати, вы также можете ознакомиться и с другими компаниями.
Оставить отзыв о Rocket Credit