/* === Сетка карточек займа === */
/* === Сетка карточек займа === */
.kkvbr-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
    margin: 0 0 20px;
}
.kkvbr-list .frame{
	padding: 0;
	border: none;
}
.kkvbr-list .extra_text.visible {
	padding-top: 20px;
}

.kkvbr-list .kkvbr-card {
    margin: 0;
    min-width: 0;
    height: 100%;
    cursor: pointer;
}

/* === Карточка займа === */
.kkvbr-card {
    box-sizing: border-box;
    border: 1px solid #d9e1ea;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(16, 24, 40, 0.04);
    overflow: hidden;
    min-width: 0;
}

.kkvbr-card * {
    box-sizing: border-box;
}

.kkvbr-card__wrap {
    padding: 14px 14px 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* === Верх === */
.kkvbr-card__top {
    margin-bottom: 12px;
}

.kkvbr-card__brand {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
}

.kkvbr-card__logo {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    border: 1px solid #e7edf3;
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-decoration: none;
}

.kkvbr-card__logo img {
    max-width: 42px;
    max-height: 42px;
}

.kkvbr-card__brand-text {
    min-width: 0;
    flex: 1 1 auto;
}

.kkvbr-card__title {
    margin: 0 0 4px;
    color: #0f2d5c;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
}

.kkvbr-card__title:hover {
    color: #0b63f6;
}

.kkvbr-card__subtitle {
    margin: 0 0 6px;
    color: #4e6280;
    font-size: 13px;
}

.kkvbr-card__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

.kkvbr-card__rating {
    font-weight: 700;
}

.kkvbr-card__reviews {
    color: #6b7280;
    text-decoration: none;
}

.kkvbr-card__rating {
    font-weight: 700;
    font-size: 14px;
}

.kkvbr-card__rating-value {
    color: #101828; /* обычный текст */
}

.kkvbr-card__rating-stars {
    color: #ffc107;
    font-size: 16px;
    letter-spacing: 2px;
}

/* === Параметры === */
.kkvbr-card__param {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px solid #eef2f6;
}

.kkvbr-card__param:last-child {
    border-bottom: 0;
}

.kkvbr-card__label {
    color: #4e6280;
    font-size: 13px;
}

.kkvbr-card__value {
    font-size: 13px;
    font-weight: 700;
    text-align: right;
}

/* === КНОПКИ (ГЛАВНОЕ ИСПРАВЛЕНИЕ) === */
.kkvbr-card__actions {
    margin-top: auto;
    padding-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* главная кнопка */
.kkvbr-card__btn {
    width: 100%;
    height: 42px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    transition: .2s;
}

.kkvbr-card__btn--primary {
    background: #ffd400;
    border: 1px solid #ffd400;
    color: #101828;
}

.kkvbr-card__btn--primary:hover {
    background: #f0c800;
}

/* сравнение */
.kkvbr-card__compare {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #6b7280;
    cursor: pointer;
    width: unset !important;
}

.kkvbr-card__compare:hover {
    color: #0b63f6;
}

.kkvbr-card__compare img {
    width: 14px;
}

/* === ВСЕ УСЛОВИЯ (УЛУЧШЕННЫЙ БЛОК) === */
.kkvbr-card__more {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #22a447;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 6px;
}

/* стрелка */
.kkvbr-card__more::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: .2s;
}

/* при открытии */
.kkvbr-card__more.active::after {
    transform: rotate(-135deg);
}

/* текст */
.kkvbr-card__extra {
    display: none;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #edf1f5;
    font-size: 13px;
    color: #344054;
}

.kkvbr-card__extra.visible {
    display: block;
}
.img_links_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2%;
    margin: 0px 0 12px 0;
}
.img_links_container>div {
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* === Мобильная === */
@media (max-width: 1100px) {
    .kkvbr-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .kkvbr-list {
        grid-template-columns: 1fr;
    }
}
/* === Блок "карточки займа конец" === */


/* === Блок "Результаты расчета" === */
.offer__result-value {
  background: #fff;
  border: 1px solid #e8eef4;
  border-radius: 14px;
  padding: 18px 18px 8px;
  box-shadow: 0 6px 18px rgba(20, 37, 63, 0.06);
}

.offer__result-value h2 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: .2px;
}

/* Список — сеткой: на мобиле столбец, на десктопе 3 карточки */
.zaim_calc_result{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.common_table td {
    border: 1px solid #0d0d0d;
}
.my-4 {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fffbe6;
    border-radius: 10px;
    padding: 16px 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    margin: 0px 0 20px 0;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.my-4 blockquote {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
}
.search_full #slider_srok{
    margin-top: 30px;
}
@media (min-width: 720px){
  .zaim_calc_result{ grid-template-columns: repeat(3, 1fr); }
}

/* Карточка значения */
.zaim_calc_result li{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 14px;
  border: 1px solid #e8eef4;
  border-radius: 12px;
  background: #f9fbfd;
  font-size: 16px;
  line-height: 1.35;
}

/* Значение — плашкой */
.zaim_calc_result li b{
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 8px;
  background: #fff;
  box-shadow: inset 0 0 0 1px #e8eef4;
  white-space: nowrap;
}

/* Иконка-семантика слева */
.zaim_calc_result li::before{
  content: "";
  width: 28px; height: 28px;
  border-radius: 8px;
  flex: 0 0 28px;
  background: #dfe8f2;
  display: inline-block;
  margin-right: 8px;
}
.zaim_calc_result li:nth-child(1)::before{ background: #e6f6ec url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24'%3E%3Cpath fill='%232a7e3b' d='M12 3a9 9 0 1 0 9 9A9.01 9.01 0 0 0 12 3m.75 14h-1.5v-1.5H9.5v-1.5h1.75V9.5H9.5V8h1.75V6.5h1.5V8h1.75v1.5h-1.75v4.5h1.75V17z'/%3E%3C/svg%3E") center/18px 18px no-repeat; }
.zaim_calc_result li:nth-child(2)::before{ background: #fff6e6 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24'%3E%3Cpath fill='%23a86900' d='M19 3H5a2 2 0 0 0-2 2v14l4-4h12a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2'/%3E%3C/svg%3E") center/18px 18px no-repeat; }
.zaim_calc_result li:nth-child(3)::before{ background: #ffe9ea url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24'%3E%3Cpath fill='%23c81e1e' d='M12 3a9 9 0 1 0 9 9A9.01 9.01 0 0 0 12 3m3.5 10.5h-7v-3h7z'/%3E%3C/svg%3E") center/18px 18px no-repeat; }

/* Цветовые акценты по пунктам */
.zaim_calc_result li:nth-child(1){
  background: #f3fbf6;
  border-color: #d6f0de;
}
.zaim_calc_result li:nth-child(1) b{
  color: #2a7e3b;
  box-shadow: inset 0 0 0 1px #cde6d7;
}

.zaim_calc_result li:nth-child(2){
  background: #fff9ef;
  border-color: #f3e1b9;
}
.zaim_calc_result li:nth-child(2) b{
  color: #a86900;
  box-shadow: inset 0 0 0 1px #efd7a0;
}

/* ИТОГО — делаем крупнее и заметнее */
.zaim_calc_result li:last-child{
  background: #fff2f3;
  border-color: #ffccd1;
  font-weight: 700;
}
.zaim_calc_result li:last-child b{
  font-size: 18px;
  color: #c81e1e;
  background: #fff;
  box-shadow: inset 0 0 0 2px #ffc3c8;
}

/* На очень узких экранах ужмём размеры */
@media (max-width: 360px){
  .zaim_calc_result li{ padding: 12px; font-size: 15px; }
  .zaim_calc_result li b{ padding: 3px 8px; }
}


h2{
    color: black;
    font-size: 24px;
    font-weight: 400;
    text-decoration: none;
    margin: 5px 0 15px;
}
.vote_rew .thumb-up.voted {
    background-position: 0 -44px;
}
.vote_rew .thumb-down.voted {
    background-position: 0 -55px;
}
.vote_rew a {
    background: url(/new_site/img/vote.png) 0 -22px no-repeat;
    display: inline-block;
    height: 11px;
    padding-left: 17px;
    font-size: 11px;
}
.vote_rew a {
    background: url(/new_site/img/vote.png) 0 -22px no-repeat;
    display: inline-block;
    height: 11px;
    line-height: 11px;
    font-size: 11px;
    padding-left: 17px;
}
.vote_rew a.thumb-down {
    background-position: 0 -33px;
}


.rating_left{
	align-items: normal;
	margin-top: 2px;
}

.reviews-list.loading {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.reviews-block {
    position: relative;
}

.rating-row {
    display: flex;
    align-items: center;
    padding: 10px 0;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.rating-row:hover {
    background-color: #f0f0f0;
}

.stars {
    color: #ffd000;
    font-size: 18px;
    margin-right: 10px;
}

.progress-bar {
    flex-grow: 1;
    height: 10px;
    background: #ddd;
    margin: 0 15px;
    border-radius: 5px;
    position: relative;
}

.progress-bar div {
    height: 100%;
    background: #30AA1F;
    border-radius: 5px;
    transition: width 0.5s ease;
}

.count, .percentage {
    font-size: 14px;
    color: #555;
}

/* Лоадер в виде звезды */
.loader_star {
    display: none;
    position: absolute; /* Абсолютное позиционирование */
    top: 50%; /* Центрирование по вертикали */
    left: 50%; /* Центрирование по горизонтали */
    transform: translate(-50%, -50%); /* Точное центрирование */
    z-index: 10; /* Поверх других элементов */
}

.star {
    display: inline-block;
    width: 80px; /* Увеличенный размер */
    height: 80px; /* Увеличенный размер */
    background-color: #ffd000;
    clip-path: polygon(
        50% 0%,
        61% 35%,
        98% 35%,
        68% 57%,
        79% 91%,
        50% 70%,
        21% 91%,
        32% 57%,
        2% 35%,
        39% 35%
    );
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.podbor_form_min .grid__cell{
	min-width: calc(20% - 20px);
}

.chapter_wiki p img {
	float: left;
	padding-right: 20px;
	padding-top: 10px;
}
.chapter_wiki .image {
	margin: 0 auto;
}
.chapter_wiki .image-style-side {
	float: right;
	padding-left: 20px;
	padding-top: 10px;
}

.mobile-only{
	display: none;
}

.max-100{
	max-height: 100px;
}

.hide__block_mobile{
	display: block;
}
.bank__logo_img{
	justify-content: center;
}
.chapter_wiki ul, .chapter_wiki ol {
	overflow: inherit;
}

.chapter ul:not([class]),
.chapter ol:not([class]) {
    padding-left: 0;
    padding-right: 2.5em;
}
.chapter ul:not([class]) li,
.chapter ol:not([class]) li {
    transform: translateX(2.5em);
    animation: fixlists 1s;
}



.wiki__photo_author {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  /* -webkit-flex-wrap: wrap; */
  /* -ms-flex-wrap: wrap; */
  /* flex-wrap: wrap; */
  flex-direction:row;
  justify-content: left;
}
.bankFeedback__photo:hover {
  -webkit-box-shadow: 0 0 10px 1px rgba(0,0,0,.15);
  box-shadow: 0 0 10px 1px rgba(0,0,0,.15);
}
.bankFeedback__photo_min {
  margin: 0 20px 0 0;
  padding: 0;
  height: 70px;
  width: 70px;
}
.bankFeedback__photo {
  background-size: cover;
  -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,.1);
  box-shadow: 0 0 10px 0 rgba(0,0,0,.1);
  height: 100px;
  margin: 0 20px 20px 0;
  width: 200px;
  border: 1px solid #e0e0f0;
  border-radius: 20%;
}
.wiki__photo_author .bankFeedback__photo{
	width:100px;
	min-width: 100px;
}
a.text_title_news{
	color: #268719;
}
a.text_title_news:hover {
  text-decoration: underline;
}
.section__rko__pagination{
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-flex: 1;
	-webkit-flex-grow: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	margin: 10px;
	min-width: 280px;
	padding: 20px;
	width: -webkit-calc(50% - 20px);
	width: calc(50% - 20px);
	max-width: 400px;
}
.wiki_text {
	font-size: 11.5pt;
}
.wiki_text table{
	width: auto !important;
}
.wiki_text h2{
  color: black;
  /*font-size: 15pt;*/
  font-weight: 400;
  text-decoration: none;
  margin: 5px 0 15px;
}
.wiki_text h3{
  color: black;
  /*font-size: 24px;*/
  font-weight: 400;
  text-decoration: none;
  margin: 5px 0 15px;
}
.happy_new_year {
  background-image: url(https://kompaskreditov.ru/images/happy_new_year.png);
  background-position: bottom;
  height: 32px;
  margin: 0 -7px;
}
.form_otv{
	left: 25%;
  position: fixed;
  top: 25%;
  z-index: 99999;
  width: 50%;
}
.rate_otz_header {
  text-align: center;
  color: #000;
  font-size: 17px;
  font-weight: 700;
}
.input_textarea {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  height: 80px;
  padding: 5px 15px;
}
.calculator-form-left {
  width: 315px;
  height: 320px;
  float: left;
  background: #ffe26c;
  padding: 12px 20px 0;
  overflow: visible;
  height: 274px;
  background: #b6daf2 none repeat scroll 0% 0%;
  border-radius: 6px;
  width: 435px;
}
.button_news{
font-weight: 100;
background: #FFD000;
border-color: #ffd300;
color: #000;
border: 1px solid #e0e0f0;
  border-top-color: rgb(224, 224, 240);
  border-right-color: rgb(224, 224, 240);
  border-bottom-color: rgb(224, 224, 240);
  border-left-color: rgb(224, 224, 240);
-webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,.1);
box-shadow: 0 0 10px 0 rgba(0,0,0,.1);
cursor: pointer;
display: inline-block;
font-size: 11.5pt;
line-height: 16pt;
min-width: 250px;
padding: 10px 20px;
-webkit-transition: all .1s ease;
-o-transition: all .1s ease;
transition: all .1s ease;
text-align: center;	
}


.button_news:hover {
background-color: rgba(255, 208, 0, 0.9);
-webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
color: #30AA1F;
text-decoration: none;
  }

.button_news:active {
  background: #e0e0f0;
  border-color: #e0e0f0;
  -webkit-box-shadow: none;
          box-shadow: none; }




.button_news:active {
  background: #efeff9;
  border-color: #e0e0f0; 
}


.calc_zag{
	display: none;
}
.bank__logo{
	position: relative;
}
.promotext {
  position: absolute;
  padding: 0px 0px 0 0px;
  left: 0px;
  margin-top: 0px;
  opacity: 1;
  width: 100%;
  font-size: 0.8em;
  text-align: center;
}
.promotext.green{
	background: green;
	color: white;
}
.promotext.red{
	background: red;
	color: white;
}
.promotext.orange{
	background: orange;
	color: black;
}
.promotext.blue {
    background: #5f89b4;
    color: white;
}

.offer__sum{
	white-space: nowrap;
}
figure {
	margin:0;
}
figure img{
	max-width: -moz-available;
	max-width: -webkit-fill-available;
	max-width: 100%;
}
.frame img{
	max-width: -moz-available;
	max-width: -webkit-fill-available;
	max-width: 100%;
}
.poll__popup-close {
    background: url(https://kompaskreditov.ru/images/icons/icon-close.svg);
    background-size: contain;
    width: 16px;
    height: 16px;
    display: block;
    position: absolute;
    right: 9px;
    top: 9px;
    opacity: .4;
    cursor: pointer;
}
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
    top: 50%;
    transform: translateY(-50%);
}

/* The Close Button */
.close {
    color: #eee;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    padding: 2px 16px;
    background-color: #58ade3;
    color: white;
}

/* Modal Body */
.modal-body {padding: 2px 16px;}

/* Modal Footer */
.modal-footer {
    padding: 2px 16px;
    background-color: #5cb85c;
    color: white;
}

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 80%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    animation-name: animatetop;
    animation-duration: 0.4s
}


.chapter_news{
	font-size: 1.0rem;
	line-height: 1.7rem;	
	margin: 25px 5px;
}
.offer__sum-period-nobreak b{
	white-space: nowrap;
}
.forecast__question-box {
  margin-bottom: 20px;
  cursor: pointer; }

.forecast__question-button {
  background: url("https://kompaskreditov.ru/new_site/img/icon-input-select.svg") no-repeat 50% 50%;
  background-size: 15px;
  display: inline-block;
  height: 100%;
  opacity: 0.4;
  width: 30px; }

.forecast__question-box:hover .forecast__question-button {
  opacity: 1; }

.forecast__recomendation-box_active .forecast__question-button {
  background-image: url("/new_site/img/icon-close.svg"); }

.forecast__question {
  border-bottom: 1px dashed #369;
  color: #369; }

.forecast__question:hover {
  border-color: #000;
  color: #000; }
 .forecast__recommendation {
  display: none;
  font-size: 10pt;
  margin-bottom: 20px; } 
.credit_p_right{
	text-align: right;
	color: #90909f;
	font-size: 10pt;
	font-weight: 100;
	line-height: 10pt;	
}
.header{
	z-index: 9999;
}
.header__myCity {
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  color: #000;
  left: 50px;
  margin: 10px;
  padding: 20px 30px;
  position: absolute;
  top: 60px;
  z-index: 999; }

.header__myCity:hover {
  -webkit-box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.15); }

.header__myCityButtons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: -5px;
  padding-top: 10px;
  width: -webkit-calc(100% + 10px);
  width: calc(100% + 10px); }

.header__myCityButtons .button {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin: 5px;
  padding: 5px 30px; }

.offer__offices{
	color: #30AA1F;
}
.chapter__txt img {
	max-width: 100%;
}
.cursor {
	cursor: pointer; 
}

.custom_link_h2{
	font-size: 16px;
}
.map_annot {
    color: #808080de;
}
#pereplata{
	display:none;
}
#geo__columns2 a, #geo__columns2 .custom_link_h2{
	color: black;
}
.iframe{
	border:none;
	width:750px;
	height:370px;
}
.clear{
	clear:both;
}
.reg__no{
	color: #30aa1f;
}
.bread_last{
	color:#30aa1f;
}
.paginator__item_prev:before {
    text-align: center;
    color: #30AA1F;
    content: '...';
    left: 27px;
    position: absolute;
    top: 0;
    width: 20px;
    height: 26px;
}
.paginator__item_prev:after {
    background-image: url(https://kompaskreditov.ru/new_site/img/icons/icon-arrow-down.svg);
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 10px;
    content: '';
    height: 10px;
    position: absolute;
    top: -webkit-calc(50% - 5px);
    top: calc(50% - 5px);
    left: -webkit-calc(50% - 5px);
    left: calc(50% - 5px);
    width: 10px;
    -webkit-transform: rotate(92deg);
    -ms-transform: rotate(92deg);
    transform: rotate(92deg);
}
.buttons__2 .button{
	padding: 9px 4px;
}
.elem_center{
	display:flex;
	justify-content:center;
	align-items: center;
}
.rating .button{
	padding: 9px 3px;
	margin: 4px 0px 0px 0px
}
.button__cell{
	border: 2px solid #FFD000;
}
.button__cell .button_tag:hover{
	border: 2px solid #FFD000;
}
.g_play_img{
	max-width: 200px;
}
.old_frame .zform-left {
    min-height: 850px;
}
.old_frame {
    min-height: 981px;
}

.tin_deb_card_mobile{
	display: none;
}	
.another_kredit__letter2 {
    font-weight: bold;
    font-size: 15px;
}
#_kredit_inf{
    display: flex;
    flex-direction: column;
}
.left_column_new{
	webkit-flex: 1 1 169px;
    -ms-flex: 1 1 169px;
    flex: 1 1 169px;	
}
.poll__form{
	margin: 2px 2px 10px 2px;	
}
.custom__radio {
    display: none;
    position: relative;
    z-index: -1;
    opacity: 0;
    margin: 0 0 0 -10px;
}
.custom__radio + label {
    position: relative;
    padding: 3px 0 0 35px;
    cursor: pointer;
}
.poll__variant-title {
    font-family: 'proximanovaregular', "Segoe UI", Helvetica, sans-serif;
    font-size: 1.2em;
}
.poll_variant-answers{
	margin: 15px 0px 15px 0px;
}
.poll__variant-answer {
    margin: 0px 0px 5px 5px;
}
.custom__radio + label:before {
    content: '';
    position: absolute;
    top: 4px;
    left: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #e0e0f0;
    border-radius: 50%;
    background: #fff;
    -webkit-box-shadow: inset 0px 0px 5px 0px rgb(0 0 0 / 10%);
    box-shadow: inset 0px 0px 5px 0px rgb(0 0 0 / 10%);
}
.custom__radio:checked + label:after {
    opacity: 1;
}
.custom__radio + label:after {
    content: '';
    position: absolute;
    top: 8px;
    left: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #2079b8;
    opacity: 0;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}
.poll_variant-answers .input{
	-webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
    border: 1px solid #e0e0f0;
    -webkit-box-shadow: inset 0 0 5px 0 rgb(0 0 0 / 10%);
    box-shadow: inset 0 0 5px 0 rgb(0 0 0 / 10%);
    box-sizing: border-box;
    color: #000;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-family: 'Open Sans','Segoe UI',Arial,Helvetica,sans-serif;
    font-size: 11.5pt;
    font-weight: 100;
    height: 40px;
    padding: 0 15px;
    position: relative;	
}
.poll__textarea {
    width: 100%;
    height: 100px !important;
    resize: none;
    padding: 15px !important;
    font-weight: 500 !important;
    font-size: 1.2em !important;
}
.offer__buttons > .grid_2 > .grid__cell{
    flex: 1 1 48%;
    padding: 0 0 0 0px;
}
.tags__list  > .grid__cell{
    /* flex: 1 1 230px; */
    /* padding: 0 0 0 0px; */
}
.ya_ads_footer{
	height: 290px;
}
/* .podr_calc_btn{ */
	/* max-width:300px; */
/* } */
/* .grid__cell_width_50{ */
	/* min-width: -webkit-calc(40% - 20px); */
    /* min-width: calc(40% - 20px); */
    /* -webkit-flex-basis: 225px; */
    /* -ms-flex-preferred-size: 225px; */
    /* flex-basis: 225px;	 */
/* } */
/* .calc__btns{ */
    /* margin: 11px 0px 0px 0px;	 */
/* } */
/* .calc__chapter .input_multy{ */
	/* max-width: 40%; */
/* } */
.allbranches {
	overflow-x: auto;
	margin-bottom: 20px;
	margin-top: 20px;
	width: calc(100% - 30px);
	padding: 15px;
	box-shadow: rgba(1, 1, 1, 0.1) 0 0 30px;
}

.allbranches>table {
	width: 100%;
	/* margin-top: 15px; */
}

.allbranches>table>thead>tr {
	background: #30aa1f;
}

.allbranches>table>thead>tr>th {
	font-weight: 600;
	color: #fff;
	padding: 10px 0;
	width: 20%;
	min-width:200px;
}

.allbranches>table>tbody>tr {
	border-bottom: 1px solid #e4e4e4;
}

.allbranches>table>tbody>tr>td {
	padding: 5px;
	line-height: 20px;	
    text-align: center;
	vertical-align: middle;
}

.allbranches>table>tbody>tr>td>p {
	line-height: 25px;
}
.allbranches b {
    font-size: unset;
    /* font-weight: unset; */
}
.allbranches .button{
    border-color: #30aa1f;
    color: black;
}
.allbranches .button:hover{
	background-color: #30aa1f;
    color: white;
}
.bestMfoTbl {
    width: 100%;
    padding: 0px 0px;
    max-height: 607px;
	overflow:auto;
}
.bestMfoTbl table{
	min-width:800px;
}
.text_gerb_img{
	float:left;
	margin: 0px 10px 0px 0px;
}
.video_iframe{
	width:50%;
}
.vydacha_na{
    display: flex;
}
.input_select_div{
    background: #F7F9F7;
    border: 1px solid #b9b9b9;
    border-top: 0px;
    border-radius: 0 0 5px 5px;
    -webkit-box-shadow: 0 6px 5px 0 rgb(0 0 0 / 3%);
    box-shadow: 0 6px 5px 0 rgb(0 0 0 / 3%);
    display: none;
    margin: 0;
    max-height: 300px;
    left: -1px;
    list-style: none;
    overflow-y: auto;
    padding: 10px 0;
    position: absolute;
    top: -webkit-calc(100% - 1px);
    top: calc(100% - 1px);
    width: -webkit-calc(100% + 2px);
    width: calc(100% + 2px);
    z-index: 3;
}
.input_select_div div{
	padding: 5px 10px 5px 15px;
}
.popup-fade {
	content: '';
	background: #000;
	position: fixed; 
	left: 0;
	top: 0;
	width: 100%; 
	height: 100%;
	opacity: 0.7;
	z-index: 9999;
}
.lazy_youtube_video{
	/* min-width:50%; */
	/* min-height:200px; */
}
.col > div{
	margin:10px 0;
}
.col-4-1, .col-4-2{
	column-count:4;
}
.underline{
	text-decoration:underline;
}
.black{
	color:black;
}
.invisible{
	display:none;
}
.desktop_invisible{
	display:none;
}
.visible{
	display:block;
}
.show_more{
	cursor:pointer;
}
.mfo-navbar {
	display:block;
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030;
    top: 0px;
    -webkit-transition: all .25s ease;
    transition: all .25s ease;
    background-color: #fff;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    padding: 10px
0;
}
.mfo-navbar__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
}
.mfo-navbar__buttons{
	display:flex;
}
.mfo-navbar__buttons a {
    margin: 0px 8px;
}
.mfo-navbar__logo {
    max-height: 43px;
    border-radius: 6px;
    margin: 0 7px 0 0;
}
.bg__white{
	background:white;
}
.submenu__link{
	text-decoration: none;
	/* pointer-events: none; */
	color:black;
}
.abc, .abc1, .abc2, .abc3, .abc4, .abc5{
	min-height: 250px;
}

.vote div:last-child{
	display:flex;
}
.vote .thumb-up.voted {
    background-position: 0 -44px;
}
.vote .thumb-down.voted {
    background-position: 0 -55px;
}
.vote{
    display: flex;
    align-items: self-start;	
    color: #737373;
	width: 100%;
	justify-content: space-between;
}
.vote .vote_txt{
	font-size: 17px;
	display: flex;
}
.vote .vote_txt .vote_txt_inner div:first-child{
	font-size: 25px;
    font-weight: bold;
}
.vote .vote_txt .vote_txt_inner div:last-child{

}
.vote_txt_inner{
	flex-direction: column;
	margin-left: 20px;
}
.vote a{
    display: flex;
    align-items: center;
    height: 60px;
    width: 70px;
    padding-left: 3px;
    font-size: 23px;
	text-decoration:none;
	background-size: 45px 45px !important;
}
.vote .thumbs-up {
    background: url(https://kompaskreditov.ru/images/icons/thumbs-up.png) 30px 0px no-repeat;
}
.vote .thumbs-up-voted {
    background: url(https://kompaskreditov.ru/images/icons/thumbs-up-voted.png) 30px 0px no-repeat;
	color: #00a72d !important;
}
.vote .thumbs-down {
    background: url(https://kompaskreditov.ru/images/icons/thumbs-down.png) 30px 0px no-repeat;
}
.vote .thumbs-down-voted {
    background: url(https://kompaskreditov.ru/images/icons/thumbs-down-voted.png) 30px 0px no-repeat;
	color: #ed1c24 !important;
}
.soft {
    color: #bbb;
}
.vote a.thumb-down {
    background-position: 0 -33px;
}
.response_vote{
	cursor:pointer;
}
.review__signature{
	align-items:center;
}
.review_likes{
    width: 100%;
    display: flex;
    justify-content: center;
	color: #b9b9b9;
	font-size: 12px;
}
.vote_rew{
	color: black;
}
.vote_rew .soft {
	color: black;
}
.app_links{
	display:flex;
}
.app_links a, .app_links img {
    width: 202px;
}
.setup-app {
    background: #2b2a29;
    display: flex;
    max-width: 200px;
    color: #fff;
    border-radius: 12px;
    margin-bottom: 10px;
    padding: 9px;
    line-height: 1;
    border: 1px solid white;
    text-decoration: none;
	align-items: center;
	font-weight:bold;
	line-height: 18px;
    font-size: 15px;
	height: 63px;
	cursor:pointer;
}
.setup-app:hover{
	text-decoration:none;
}
.setup-app img {
    max-width: 40px;
	margin: 0 16px 0 0;
}
.popup__common {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup__common #popup {
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
  max-width: 93%;
}

.popup__common #closeButton {
  margin-top: 10px;
  display: block;
  cursor:pointer;
}

.popup__common #timer {
  margin-top: 10px;
  font-size: 16px;
}
.popup__common .button__cell{
    max-width: 160px;
    margin: 0 10px;
}
.overflow__none{
	max-height: unset;
    overflow: unset;
}
.modal_window{
    border-radius: 23px;
    position: fixed;
    outline: none;
    z-index: 2147483647;
    display: none;
    margin-top: -200px;
    top: 50%;
    margin-left: -300px;
    left: 50%;
	flex-direction:row;
}
.modal_no_prlogo{
	left:55%;
}
.mw_child1{
    position: relative;
    outline: none;
    transform-origin: center center;
    box-shadow: rgb(0 0 0 / 20%) 0px 0px 21px 0px;
    top: 0px;
    left: 0px;
    background-color: white;
    z-index: 2147483647;
	height: max-content;
	margin-top: 9%;
	cursor:pointer;
}
.mw_child2{
    position: relative;
    outline: none;
    transform-origin: center center;
    box-shadow: rgb(0 0 0 / 20%) 0px 0px 21px 0px;
    top: 0px;
    left: 0px;
    background-color: white;
    z-index: 2147483647;
	min-height:400px;
	max-width: 300px;
	border-radius: 10px;
	cursor:pointer;
}
.mw_child2 div{
	padding: 8px 10px;
}
.mw_child2 .button{
	margin: 25px 0px 0px 0px;
}
.modal__logo{
	max-width:100%;
	margin-bottom:50px;
}
.mw_close{
	text-align: right;    
	padding: 10px 3px 0px 0 !important;
	cursor:pointer;
}
[class^=mw_close] {
    -webkit-tap-highlight-color: transparent;
}
.mw_close-close {
    z-index: 2;
    align-items: center;
    justify-content: center;
    width: 1.2em;
    height: 1.2em;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: -1.2em;
    padding: 0;
    overflow: hidden;
    transition: color .1s,box-shadow .1s;
    border: none;
    border-radius: 5px;
    background: 0 0;
    color: #ccc;
    font-family: serif;
    font-family: monospace;
    font-size: 2.5em;
    cursor: pointer;
    justify-self: end;
}
.modal__single{
	left:60%;
}
.modal__single .mw_child2{
	min-height:300px;
}
#zad_plan {
    background: rgba(0, 0, 0, 0.5) none repeat scroll 0% 0%;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 99999;
}
.button__links {
    margin: 10px 0;
}
.button__links p {
    font-size: 18px;
}
.button__links a {
    display: flex;
    align-items: center;
    margin: 0 0 0 15px;
    box-shadow: rgba(1, 1, 1, 0.1) 0 0 30px;
    padding: 7px;
    border-radius: 15px;
    text-decoration: none;
	color: #56ad33;
	font-weight: 100;
}
.button__links img {
    width: 40px;
    margin: 0px 3px 0 0;
}
.white_bg{
	background:white;
	color:black;
}
.flex_grow_0{
	flex-grow:0;
}
.flex{
	display:flex;
	/*margin: 0 0 10px 0px;*/
}
.flex img{
	margin:0 10px 0px 0;
}
.flex__column{
    display: flex;
    flex-direction: column;
}
.flex > .input{
	margin: 0px 5px 0 0px;
}
.flex > button{
    min-width: 115px;
}
.wrap{
    flex-wrap: wrap;
}
.p_header{
    font-size: 15px;
    font-weight: bold;
}
.header__geo {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    background: url(https://kompaskreditov.ru/new_site/img/icon-geo.svg) no-repeat 0 5px;
    background-size: 20px;
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 40px;
    left: 3%;
    opacity: .4;
    padding-top: 5px;
    padding-left: 25px;
    position: absolute;
    top: 0;
}
form .grid__cell_width_50{
	min-width:unset;
}
form .buttons{
	margin: 10px 15px 0px 0px;
}
.feedback__answer{
    border: 1px solid #4ccc19;
    border-radius: 10px;
    padding: 9px 0px 0 10px;
}
.usl_zaim {
    color: #090909;
    font-size: 11px;
    margin: 7px 0 0 0px;
    font-weight: 100 !important;
}
.offer__card_hint{
    color: #808080ad;
    font-size: 10px;
    margin: 0 0 0 0px;
}
.calc_table table{

}
.calc_table table td {
    text-align: center;
    border: 1px solid #23bc23;
    padding: 6px 4px;
    color: green;
}
.calc_table table th {
    text-align: center;
    border: 1px solid #23bc23;
    padding: 6px 4px;
    color: green;
}
.faint{
	color:#bdbdbd;
}
p.text_header{
	font-size: 15px;
}

.credits__about {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: -10px; }

.credits__age {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 11.5pt;
  font-weight: 100;
  line-height: 18pt;
  min-width: 150px;
  padding: 0 5px 0 0;
  width: 20%; }

.credits__age_th {
  font-size: 10pt;
  font-weight: 100;
  margin: 0;
  padding: 10px 5px 10px 0; }

.credits__bold {
  font-weight: 400; }

.credits__button {
  margin: 10px; }

.credits__buttons {
  margin-top: 50px;
  text-align: center;
  width: 100%; }

.credits__description {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin: 0 10px 10px 10px;
  min-width: 250px;
  padding: 10px 20px;
  width: -webkit-calc(50% - 20px);
  width: calc(50% - 20px); }

.credits__details-crd {
  -webkit-align-self: flex-start;
      -ms-flex-item-align: start;
          align-self: flex-start;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-basis: 200px;
      -ms-flex-preferred-size: 200px;
          flex-basis: 200px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-flex-wrap: wrap-reverse;
      -ms-flex-wrap: wrap-reverse;
          flex-wrap: wrap-reverse;
  padding: 10px 20px;
  min-width: 150px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between; }

.credits__details-crd_th {
  line-height: 0;
  padding-bottom: 0;
  padding-top: 0; }

.credits__details-link {
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
  color: #369;
  margin-top: 10px; }

.credits__details-link:hover {
  border-bottom: 1px dashed #369; }

.credits__details {
  display: block;
  padding: 10px 20px;
  text-align: center;
  min-width: 150px; }

.credits__detailsInfo {
  border: 1px solid #e0e0f0;
  display: none;
  margin: 10px 10px 10px 10px;
  padding: 10px;
  width: 100%; }

.credits__info-crd {
  -webkit-align-self: flex-start;
      -ms-flex-item-align: start;
          align-self: flex-start;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 850px;
      -ms-flex: 1 1 850px;
          flex: 1 1 850px;
  margin: 5px 0;
  padding: 0 0 0 20px;
  width: -webkit-calc(100% - 350px);
  width: calc(100% - 350px); }

.credits__info-crd_th {
  margin: 0; }

.credits__info {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin: 5px 20px;
  min-height: 80px;
  padding: 5px 0;
  width: -webkit-calc(100% - 500px);
  width: calc(100% - 500px); }

.credits__info_th {
  margin-top: 0;
  margin-bottom: 0;
  min-height: 0;
  padding: 10px 0; }

.credits__intro {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 50px; }

.credits__introPicture {
  background: url(https://kompaskreditov.ru/new_site/img/backgrounds/credits-intro.png) no-repeat 50% 50%;
  background-size: cover;
  -webkit-flex-basis: 300px;
      -ms-flex-preferred-size: 300px;
          flex-basis: 300px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-right: 20px;
  min-height: 120px; }

.credits__introText {
  -webkit-flex-basis: 300px;
      -ms-flex-preferred-size: 300px;
          flex-basis: 300px;
  -webkit-box-flex: 1000;
  -webkit-flex-grow: 1000;
      -ms-flex-positive: 1000;
          flex-grow: 1000; }

.credits__logo {
  margin: 5px 0 5px 20px;
  width: 160px; }

.credits__logo img {
  border-radius: 3px;
  display: block; }

.credits__logo_th {
  font-size: 10pt;
  font-weight: 100;
  line-height: 18pt;
  margin: 0;
  margin-left: 20px;
  padding: 10px;
  padding-left: 0; }

.credits__name {
  -webkit-align-self: start;
      -ms-flex-item-align: start;
          align-self: start;
  color: #369;
  display: block;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 200px;
      -ms-flex: 1 0 200px;
          flex: 1 0 200px;
  font-size: 16pt;
  font-weight: 100;
  line-height: 16pt;
  margin: -5px 0;
  width: 200px;
  padding: 10px 10px 10px 20px; }

.credits__name_th {
  font-size: 0;
  font-weight: 100;
  padding-bottom: 0;
  padding-top: 0; }

.credits__order {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 20px 0 0;
  padding: 10px 0 0;
  width: 250px; }

.credits__order_th {
  margin-top: 0;
  margin-bottom: 0;
  padding: 10px 0; }

.credits__other {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 11.5pt;
  font-weight: 100;
  line-height: 18pt;
  min-width: 200px;
  padding: 0 5px 0 0;
  width: 25%; }

.credits__other_th {
  font-size: 10pt;
  font-weight: 100;
  margin: 0;
  padding: 10px 5px 10px 0; }

.credits__param {
  -webkit-align-self: stretch;
      -ms-flex-item-align: stretch;
          align-self: stretch;
  font-weight: 400;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-flex-basis: 250px;
      -ms-flex-preferred-size: 250px;
          flex-basis: 250px;
  padding: 5px 0 5px 7px; }

.credits__perc {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 11.5pt;
  font-weight: 400;
  line-height: 18pt;
  min-width: 200px;
  padding: 0 5px 0 0;
  width: 25%; }

.credits__percent {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 11.5pt;
  font-weight: 400;
  line-height: 18pt;
  min-width: 200px;
  padding: 0 5px;
  width: 33%; }

.credits__percent_th {
  font-size: 10pt;
  font-weight: 100;
  padding: 0 10px; }

.credits__perc_th {
  font-size: 10pt;
  font-weight: 100;
  margin: 0;
  padding: 10px 5px 10px 0; }

.credits__period {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 11.5pt;
  font-weight: 400;
  line-height: 18pt;
  min-width: 100px;
  padding: 0 5px;
  width: 33%; }

.credits__period_th {
  font-size: 10pt;
  font-weight: 100;
  padding: 0 10px; }

.credits__row {
  cursor: pointer; }

.credits__sum-period {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 11.5pt;
  font-weight: 100;
  line-height: 18pt;
  min-width: 200px;
  padding: 0 5px 0 0;
  width: 30%; }

.credits__sum-period_th {
  font-size: 10pt;
  font-weight: 100;
  margin: 0;
  padding: 10px 5px 10px 0; }

.credits__sum {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 11.5pt;
  font-weight: 400;
  line-height: 14pt;
  min-width: 200px;
  padding: 0 5px;
  width: 33%; }

.credits__sum_th {
  font-size: 10pt;
  font-weight: 100;
  padding: 0 10px; }

.credits__tbl {
    border: 1px solid #e0e0f0;
    margin: 10px 0px;
    min-width: 250px;
    width: -webkit-calc(100% - 20px);
    width: 100%;
}

.credits__tblRow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding: 5px 10px; }

.credits__tblRows {
  overflow-x: auto;
  width: 100%; }

.credits__tblTop {
  background: #d1ebd1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px;
  width: 100%; }

.credits__total_th {
  display: none;
  font-size: 10pt;
  font-weight: 100;
  padding: 12px 10px; }
.credits__tblRow .credits__val {
    flex-wrap: wrap;
}
.credits__val {
  -webkit-align-self: stretch;
      -ms-flex-item-align: stretch;
          align-self: stretch;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  padding: 5px 0 5px 7px;
  width: 90px; }
.txt__img{
	display: flex;
}
.txt__img img{
	margin: 0 5px 0 0;
}
.button_green{
    border-color: #30aa1f;
    color: black;
}
.button_green:hover{
    background-color: #30aa1f;
    color: white;
}
.prlogo{
	max-height: 85px;
    margin: 5px 6px 0 0;
}

.show_medals .offer:nth-child(1) .bank__logo::before{
	Content:'';
	width: 43px;
    height: 54px;
	background-image:url("data:image/png;base64,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");
	background-size: 43px 54px;
	margin: -13px -16px 0px -30px;
    z-index: 9;
}

.show_medals .offer:nth-child(2) .bank__logo::before{
	Content:'';
	width: 43px;
    height: 54px;
	background-image:url("data:image/png;base64,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");
	background-size: 43px 54px;
	margin: -13px -16px 0px -30px;
    z-index: 9;
}

.show_medals .offer:nth-child(3) .bank__logo::before{
	Content:'';
	width: 43px;
    height: 54px;
	background-image:url("data:image/png;base64,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");
	background-size: 43px 54px;
	margin: -13px -16px 0px -30px;
    z-index: 9;
}
.show_medals .offer:nth-child(4){
    border: 2px solid #32a83f;
}
.show_medals .offer:nth-child(4):after{
    content: 'Рекомендуем';
    background: #32a83f;
    color: #fff;
    position: relative;
    bottom: -1px;
    line-height: normal;
    left: 41%;
    right: 0;
    margin: auto;
    text-align: center;
    padding: 5px 30px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    font-size: 13px;
    font-weight: bold;
}

.show_medals .hide_medals:nth-child(4){
    border: unset;
}

.show_medals .hide_medals:nth-child(4):after{
    content: '';
    background: none;
}

.offer__numbers b:nth-child(1){
    font-weight: 100;
}
.mobile_vis_flex{
	display:none;
}
.bankFeedback__popup {
    background: #efeff9;
    border: 1px solid #e0e0f0;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-height: -webkit-calc(100% - 20px);
    max-height: calc(100% - 20px);
    left: 3%;
    overflow-y: auto;
    overflow-x: none;
    padding: 15px 20px;
    position: absolute;
    top: 10px;
    width: 94%;
	flex-direction: column;
}
.lk_authorize_parent{
	display:flex;
	justify-content:center;
}
.lk_authorize{
	margin-top: 0%;
	background: #efeff9;
	border: 1px solid #d1d1d1;
	width: 50%;
}
.lk_authorize .bankFeedback__popup .button{
    min-width: 42%;
}
.lk_authorize .input_textarea {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    height: unset;
    padding: 9px 15px;
	margin: 12px 0;
}
.lk_authorize .bankFeedback__popup {
   background: none;
}
.lk_authorize .bankFeedback__popup_position_relative{
	margin-top: 0px;
	display: flex;
    justify-content: center;	
}
.lk_authorize_links{
    display: flex;
	flex-wrap: wrap;
    justify-content: center;
    padding: 15px 0px 20px 0px;	
}
.lk_authorize_links div{
    width: 30%;
    text-align: center;
}
.lk_authorize_links a{
	text-decoration: none;
	cursor: unset;
	color:Black;
	font-weight:bold;
}
.lk_authorize_links a:hover{
	color:Black;
}
.authorize_passive a{
	background: #469123b0;
    border-color: #0a0;
    color: white;
    border-radius: 6px;
    padding: 6px 35px;	
}
.authorize_passive a:hover{
	color:white;
	cursor:pointer;
}
.lk_authorize .bankFeedback__sides{

}
.bankFeedback__popup_position_relative {
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    left: 0;
    /* margin-bottom: -30px; */
    margin-top: -20px;
    max-height: auto;
    position: relative;
    top: 0;
    width: 100%;
}
.review {
    background: #fff;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    /* display: -webkit-box; */
    /* display: -webkit-flex; */
    /* display: -ms-flexbox; */
    /* display: flex; */
    /* -webkit-flex-wrap: wrap; */
    /* -ms-flex-wrap: wrap; */
    /* flex-wrap: wrap; */
    /* -webkit-box-pack: end; */
    /* -webkit-justify-content: left; */
    /* -ms-flex-pack: end; */
    /* justify-content: left; */
    margin-bottom: 30px;
    padding: 20px;
    margin: 10px 0px;
}
.review-descr {
    margin: 7px 0px;
    text-indent: 4px;
    font-size: 15px;
    width: 100%;
}
.acc_enter{
	width: 24px;
}
.app_menu{
	display: flex;
    justify-content: space-evenly;
    width: 68%;
}
/* .add-to-compare { */
    /* display: block; */
    /* top: 15px; */
    /* right: 130px; */
    /* color: #2b5e80; */
    /* cursor: pointer; */
    /* background: url(https://kompaskreditov.ru/new_site/img/compare.png) 0 50% no-repeat; */
    /* padding-left: 25px; */
    /* background-size: 20px; */
    /* text-align: left; */
    /* font-weight: 400; */
    /* margin: 10px 0% 5% 17%; */
/* } */
.add-to-compare {
    color: #2b5e80;
    cursor: pointer;
    margin: 5px 0% 3% 0%;
    display: flex;
    width: 100%;
    justify-content: center;
}
.add-to-compare img {
    height: 15px;
    margin: 0 5px 0 0;
}
.add-to-compare.active {
    background: url(https://kompaskreditov.ru/new_site/img/tick.png) 0 50% no-repeat,url(https://kompaskreditov.ru/new_site/img/compare_active.png) 20px 50% no-repeat;
    background-size: 20px;
    padding-left: 45px;
    color: #1eb047;
	margin:10px 0% 5% 10%;
}
.compare-bar {
    position: fixed;
    bottom: 0;
    right: 0%;
    /* background: linear-gradient(0deg,#054169,#336485); */
    background: #32a83f;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    z-index: 151;
}
.compare-bar .compare-button{
	display:none;
}
.compare-bar .compare-link {
    display: inline-block;
    text-decoration: none;
    color: #FFF;
    margin: 10px 20px;
}
.compare_table{
	display: flex;
}
.compare__row-names{
	min-width:15%;
}
.compare__row {
    font-size: 16px;
    min-height: 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.compare__row:nth-child(1){
	min-height:150px;
	display:block;
}
.compare__row:nth-child(2n+3) {
    background: #f7f7f7;
}
.compare__row a.button_accent{
	width:90%;
}
.compare__body{
	display:flex;
}
.compare__body .compare__item{
    display: flex;
    flex-direction: column;
}
.compare__vydacha{

}
.compare__vydacha div {
    height: 40px;
    margin-top: 10px;
}
.slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.slides {
  display: flex;
  transition: transform 0.3s ease;
  width:100%;
  position: relative; /* Добавим относительное позиционирование для .slides */
}

.slide {
	/* flex: 0 0 20%; */
    width: inherit;
	min-width:25%;
}

.slider_arrow {
  /* position: absolute; */
  top: 50%;
  width: 50px;
  height: 50px;
  transform: translateY(-50%);
  cursor: pointer;
  /* background-color: #ddd; */
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M6.3 18.71a1 1 0 0 0 1.41 0L12 13.42l4.29 4.29a1 1 0 0 0 1.42-1.42l-5-5a1 1 0 0 0-.71-.29 1 1 0 0 0-.71.29l-5 5a1 1 0 0 0 0 1.42z"/></svg>');
  background-repeat: no-repeat;
  background-size: 70%;
  background-position: center;
  margin-top: -20px;
  z-index: 2; /* Установим z-index, чтобы стрелки были поверх слайдов */
}

.prev {
  transform: rotate(270deg);
  margin-left: -40px;
}

.next {
  right: 0px; /* Переместим вправо за пределы блока */
  transform: rotate(90deg);
}
#form_wrap_anketa .form .content .content_block form .next{
	transform:unset;
}
.right_align{
	text-align:right;
}
.clear_btn {
    background: url(https://kompaskreditov.ru/new_site/img/garbage.png) no-repeat;
    background-position: 100% 0%;
    background-size: 18px;
    cursor: pointer;
    width: auto;
    padding-right: 27px;
    padding-top: 4px;
    padding-bottom: 15px;
    color: #295c7e;
    font-size: 14px;
}
.clear_btn a {
    text-decoration: none;
    color: #005c80;
}
.zaim__calc_block .grid{
	margin:6px 9px 3px -10px;
}
.wrapper_author{
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
	padding: 10px 10px;
	background-color: white;
}
.flex_space_between{
	justify-content:space-between;
    align-items: flex-start;
}
.author_page img{
	align-self:flex-start;
	max-height:250px;
	margin:0 7px 0 0;
}
.author__title{
	font-size:18px;
}
.equal_tags .grid__cell{
	flex:19%;
}
.geo__columns_links3, .geo__columns_links4{
	display:flex;
}
.geo__columns_links3 ul, .geo__columns_links4 ul {
    flex: 30%;
}

/* Telegram Popup Notification */
.tg_iframe{
	border:0px;
	height:500px;
	max-width:420px;
	width:100%;
	margin:5px;
	box-shadow: 0 0 16px 3px rgba(0,0,0,.2);
}

.d-none {
	display: none !important;
}

.telegram-notification {
    padding: 20px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, .85);
    position: fixed;
    bottom: 80px;
    right: 20px;
    max-width: 275px;
}
.telegram-notification-icon {
    width: 100%;
    text-align: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
.telegram-notification-icon img {
    max-width: 60%;
    border-radius: 15px;
}
.telegram-notification-body {
    text-align: center;
    font-size: 1.3em;
    color: #FFF;
    line-height: 1.2;
}
.telegram-notification-body div{
	margin:7px 0 14px 0;
}
.telegram-notification-body p{
	font-size:0.8em;
}
.telegram-notification-button {
    width: 100%;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background-color: #fff;
    text-transform: uppercase;
    text-align: center;
    padding: 5px;
    color: rgb(53, 127, 226);
    font-size: 16px;
    display: inline-block;
    margin-top: 10px;
}
.telegram-notification-button:hover {
    background-color: rgb(216, 240, 251);
    -webkit-transition: background-color 0.2s ease-in-out;
    -moz-transition: background-color 0.2s ease-in-out;
    -ms-transition: background-color 0.2s ease-in-out;
    -o-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
	text-decoration: none;
}
.telegram-notification-close {
    width: 32px;
    height: 32px;
    position: absolute;
    top: 10px;
    right: 10px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #000 url("/new_site/img/icon-close-inv.svg") no-repeat center center / 40% 40%;
}
/* Telegram Popup Notification */

.no_link, .no_link:hover {
    color: black;
	opacity:1;
	text-decoration:none;
}
.app_chance{
	/*font-weight:bold;*/
	/*font-size: 15px;*/
}
.green{
	color:#0a0;
}
.yellow{
	color:yellow;
}
.orange{
	color:orange;
}
.red{
	color:red;
}
.crossed{
	text-decoration: line-through;
}
.offer .hide__block{
	width:100%;
}
.zaim__calc_block label{
	margin:-67px 0 0px -9px;
	font-size:10px;
}
.cursor__pointer{
	cursor:pointer;
}
.el-table__body, .el-table__footer, .el-table__header {
    table-layout: fixed;
    border-collapse: separate;
}
.el-table thead {
    color: #909399;
    font-weight: 500;
}
.el-table tr {
    background-color: #FFF;
}
tr.el-table__row td span {
    word-wrap: break-word;
}
.el-table td.el-table__cell, .el-table th.el-table__cell.is-leaf {
    border-bottom: 1px solid #EBEEF5;
}

.el-table th.el-table__cell > .cell {
    display: inline-block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    vertical-align: middle;
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
}
.el-table th.el-table__cell {
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #FFF;
}
.el-table .el-table__cell {
    padding: 12px 0;
    min-width: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-overflow: ellipsis;
    vertical-align: middle;
    position: relative;
    text-align: left;
}
.el-table th.el-table__cell {
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #FFF;
}
.el-table .cell {
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    line-height: 23px;
    padding-left: 18px;
    padding-right: 10px;
}
.offer_stats{
	margin:12px 0 0 0;
	width:100%;
}
.offer_stats > div {
    margin: 5px 0px;
	font-weight:bold;
}
.offer__top h3{
	margin:6px 0 0 0;
}
.buttons_mob_min .button {
    width: 100%;
}
.footer_show_more{
    margin: 0 0 20px 0;
}
.h2 {
    font-weight: bold;
    font-size: 21px;
    margin: 18px 0 22px 0;
}
.head_text{
    margin: 10px 0px;
    line-height: 21px;
}
.limited_text .read-more{
    display:none;
}
.offer .review_likes_par_offer{
    margin: 6px 0;
}
#calc .chapter {
    margin-bottom: 0px;
}
.zaim__calc_block_result{
    /*display: flex;*/
    flex-direction: column;
    margin: 0 0 0 0;
}
.zaim_calc_result {
    display: flex;
}
.zaim_calc_result li {
    margin: 0 30px 0 0;
}
.minimal_offer_cards {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.minimal_offer_cards > div {
    flex: 1 1 calc(20% - 8px); /* по умолчанию 5 в ряд */
    max-width: calc(20% - 8px);
    box-sizing: border-box;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    padding: 10px;
    text-align: center;
    cursor: pointer;
}

/* Если элементов меньше 5 — растянуть их */
.minimal_offer_cards:not(:has(div:nth-child(5))) > div {
    flex: 1 1 0;
    max-width: 100%;
}
.search_form label {
    margin: 7px 0 0 12px;
    font-size: 12px;
}
.checkbox_li>input[type="checkbox"]{
    pointer-events: none;
}

/* блок с чекбоксами с поиском по займам */
.multicheckbox {
    /*max-width: 700px;*/
    padding: 5px 18px;
    /*background: #f9fafb;*/
    /*border: 1px solid #e5e7eb;*/
    /*border-radius: 8px;*/
    font-family: sans-serif;
    box-sizing: border-box;
    margin: 14px auto;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.multicheckbox .flex-container{
    gap: 6%;
}
.multicheckbox .checkbox {
    /*position: relative;*/
    /*width: calc(50% - 6px); !* 2 в ряд на десктопе *!*/
    /*box-sizing: border-box;*/
}

.multicheckbox .checkbox input[type="checkbox"] {
    display: none; /* скрываем дефолтный чекбокс */
}

.multicheckbox .checkbox label {
    display: flex;
    align-items: center;
    padding: 8px 12px 8px 40px;
    /*background-color: #fff;*/
    /*border: 1px solid #ccc;*/
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    transition: background 0.2s, border 0.2s;
    font-size: 15px;
    color: #333;
    min-height: 40px;
}

.multicheckbox .checkbox label:hover {
    background-color: #eef2ff;
    border-color: #32a83f;
}

/* Кастомный квадратик */
.multicheckbox .checkbox label::before {
    content: "";
    position: absolute;
    left: 11px;
    top: 50%;
    transform: translateY(-50%);
    width: 17px;
    height: 17px;
    border: 2px solid #666;
    border-radius: 4px;
    background: #fff;
    transition: background 0.2s, border-color 0.2s;
}

/* Галочка при чекнутом состоянии */
.multicheckbox .checkbox input:checked + label::after {
    content: "✓";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 14px;
    width: 18px;
    height: 18px;
    background-color: #32a83f;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* ------------------------------------- */
.qa_type_perelinkovka{
    display: block;
}
.qa_type_perelinkovka .frame__section{

}
.qa_type_perelinkovka .geo__cities{
    column-count: 4;
    margin: 10px 10px 10px 0px;
}
.company_rekv_zaim{

}
.company_rekv_zaim > .offers{
    width:100%;
    border: none;
}
.bold{
	font-weight:bold;
}
.collectors-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
	margin:0 0 7px 0;
}
.collector-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1 1 calc(25% - 20px);
    box-sizing: border-box;
    /* max-width: calc(25% - 20px); */
    height: 100%;
    transition: transform 0.2s;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    min-height: 399px;
    padding: 0px 10px 16px 10px;
}
.collector-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.card-body{
	/* min-height: 200px; */
}
.search-box {
    background: #f8f9fa;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 10px;
}

.collector-details-btn {
    display: inline-block;
    padding: 10px 24px;
    background: white;
    color: black;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    /* font-weight: 500; */
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    /* box-shadow: 0 2px 8px rgba(0,123,255,0.08); */
    align-self: center;
    margin-top: auto;
    border-color: #333333;
    border: 2px solid #FFD000;
}
.collector-details-btn:hover, .collector-details-btn:focus {
    /* background: #0056b3; */
    /* color: #fff; */
	border-color:#30AA1F;
    box-shadow: 0 4px 16px rgba(0,123,255,0.15);
    text-decoration: none;
}
.break_word{
    word-break: break-word;
}
.classic_table{
    border-collapse: collapse;
}
.classic_table td{
    border: 1px solid black;
}
.tags__list_scrollableParent{
    margin:0px 0 14px 0;
    border-top: 0px;
}
.tags__list_scrollable li{
    -webkit-box-flex: unset;
    -webkit-flex: unset;
}
.tags__list_scrollable > .grid__cell{
    flex:1 1 100px;
}
.tags__list_scrollable .button{
    /*background-color: #e0e7ff;*/
    /*color: #2c7be5;*/
    border: 1px solid #e7e7e7;
    /*padding: 8px 15px;*/
    /*border-radius: 20px;*/
    /*cursor: pointer;*/
    /*font-size: 14px;*/
    /*font-weight: 500;*/
    /*transition: background-color 0.3s ease, color 0.3s ease;*/
}
.tags__list_scrollable .button:hover{
    /*background-color: #2c7be5;*/
    /*color: #fff;*/
}
.rating{
    margin: 5px 0 -2px 0;
}
.frame_small{
    max-width: 380px;
    max-height: max-content;
}
.frame_small img{
    height: fit-content;
}
.show_more_zaim_info {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    font-weight: 500;
    position: relative;
    padding-right: 20px;        /* место для стрелки */
    color: #32a83f;
}

/* Стрелка вниз (псевдоэлемент) */
.show_more_zaim_info::after {
    content: "";
    width: 6px;
    height: 6px;
    border: solid #32a83f;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    position: absolute;
    right: 0;
    top: 50%;
    translate: 0 -50%;
    transition: transform 0.1s;
    margin: -2px 6px 0 0px;
}

/* При активном состоянии стрелка поворачивается вверх */
.show_more_zaim_info.active::after {
    transform: rotate(-135deg);
    margin: 4px 6px 0 0px;
}

.extra_text {
    display: none;
    margin-top: 10px;
    width:100%;
}
.extra_text.visible {
    display: block;
    margin: 1% 0%;
    /*max-width: 510px;*/
}
@media screen and (max-width: 1150px) {
	.intro {
		background-image: none;
	}
}
@media screen and (max-width: 1000px) {
	.hide__block_mobile{
		display: none;
	}	
	.hide_active .hide__block_mobile, .hide_active_podbor_mobile .hide__block_mobile {
		display: block;
	}
	.lk_authorize_links div {
	  width: auto;
	  margin: 0px 20px;
	}
    .button_podbor_mobile_show{
        display: none;
    }
	.submenu__link, .submenu__link:hover, .submenu__link:active, .submenu__link:visited, .submenu__link:focus {
		text-decoration: none;
		pointer-events: unset;
		color:unset;
	}
}
@media screen and (max-width: 750px) {
    .collector-card {
        min-height: unset;
        flex: 1 1 100%;
    }
	.app_main{
		margin: 31px 0 0 0;
	}
	.app_header_menu{
		position:fixed
	}
	header .header__menu_active{/* удалить, если буден убран закреп хедера */
		height:600px;
		overflow:auto;
	}
	header .menu_light{
		height:150px;
	}
	/* header.fixed .header__menu_active{ */
		/* height:600px; */
		/* overflow:auto; */
	/* } */
	header.fixed {
		position: fixed;
		top: 0;
		z-index: 9999;
		padding:15px 5px 7px 0px;
	}
	.mobile_invis{
		display:none;
	}
	.desktop_invisible{
		display:block;
	}
	.header__logo-link img {
		 content: url('/new_site/img/logo/kompaskreditov-logo-2.svg');
		/*content: url('/new_site/img/logo_new_year_mobile.png');*/
	}
	.header__logo .button{
		flex:1 1 1px;
		font-size:13px;
		/* padding:2px 0px; */
	}
	.lk_authorize_links div {
	  margin: 10px 20px;
	}	
	.lk_authorize{
		width: auto;
	}
	.app_links {
		flex-direction: column;
	}
	.setup-app {
		max-width: 80%;
	}
	.ya_ads_footer{
		height:300px;
	}
	.old_frame .zform-left {
		min-height: 862px;
	}	
	.iframe{
		width:auto;
		height:auto;
	}
	.iframe_urist{
		height: 650px;
	}
	.geo__cities li {
		/* min-height: 29px; */
		margin-bottom: 10px;
	}	
	.review_likes_par{
		padding:10px 4px;
	}
	.vote{
	    flex-direction: column;
	}
	.vote div:last-child {
		width:100%;
		justify-content: center;
		margin-top: 0px;
		max-height: 37px;
	}	
	.vote_txt img{
		width: 40px;
	}
	.vote .vote_txt .vote_txt_inner div:first-child{
		font-size: 14px;
		font-weight: bold;
	}
	.vote .vote_txt .vote_txt_inner div:last-child{
		font-size:12px;
	}
	.txt__img{
		display: flex;
		flex-direction:column;
		align-items: center;
	}
	.txt__img img{
		max-width:200px;
	}
	.mobile_vis_flex{
		display:flex;
	}
	.add-to-compare{
		/* margin: 10px 32% 2% 0%; */
	}
	/* .add-to-compare.active{ */
		/* margin: 10px 25% 3% 0%; */
	/* } */
	.add-to-compare.active {
		margin: 10px 0% 3% 26%;
		justify-content: left;
		display: flex;
		text-align: center;
		align-items: center;
		width: 100%;
	}	
	.compare__row {
		font-size: 14px;
		display: flex;
		align-items: center;
		padding: 0 0 0 7px;
	}
	.compare__row-names {
		margin-left: 2%;
	}	
	.compare__vydacha {
		flex-direction: column;
	}
	.compare__vydacha div{
		width:100%;
		margin-top:2px;
	}
	.compare_icons div{
		text-align: center;
	}
	.slider_arrow{
		margin-top: -12px;
	}
	.slide {
		/* flex:unset; */
		width: 100%;
		min-width: 100%;;
	}	
	.table__wrapper{
		overflow:auto;
	}
	.table__wrapper .table{
		min-width:700px;
	}	
	.minimalistic_mobile{
		display:flex;
		flex-wrap:wrap;
	}
	.show_medals .offer:nth-child(4):after{
		padding:5px 5px;
	}
	.minimalistic_mobile .zaim_name{
		display:none;
	}
	.minimalistic_mobile .offer__info{
		margin:0px 10px 0px 10px;
	}
	.minimalistic_mobile .bank{
		margin: 6px 10px 0px 10px;
	}
	.minimalistic_mobile .offer__description{
		display:none;
	}
	.minimalistic_mobile .add-to-compare{
		display:none;
		color:transparent;
		margin:15px 0% 0% 5%;
		width:20px;
	}
	.minimalistic_mobile .offer__percent{
		display:none;
	}
	.minimalistic_mobile .offer__comment{
		display:none;
	}
	.minimalistic_mobile .offer__datas {
		margin-top: 5px;
	}
	.minimalistic_mobile .grid_offer_btns {
		flex-direction: row;
	}
	.minimalistic_mobile .offer__buttons > .grid_2 > .grid__cell{
		flex:1 1 42%;
	}
	.minimalistic_mobile .button_hide .button__text:after{
		display:none;
	}
	.minimalistic_mobile .button__text_show_opis{
		display:none;
	}
	.minimalistic_mobile .grid_offer_btns{
		min-width:72%;
		width:72%;
		margin:0% 0% 5px 14%;
	}
	.minimalistic_mobile .grid_5{
		text-align:center;
	}
	.minimalistic_mobile .frame__section{
		border:1px solid #00000042;
		width: 46%;
        margin: 1% 1%;
	}
	.minimalistic_mobile .bank__logo{
		width:60px;
	}
	.minimalistic_mobile .rating_numb {
		text-align: center;
	}
    .minimalistic_mobile .usl_zaim{
        display: none;
    }
    .minimalistic_mobile .offer_phone{
        display: none;
    }
    .minimalistic_mobile .review_likes_par_offer{
        display: none;
    }
	.flex_column_mobile{
		flex-direction:column;
	}
	.wiki__photo_author{
		flex-direction:column;
	}
	.wiki__photo_author .bankFeedback__photo{
        margin-left: 14%;
        width: 70%;
        height: 158px;
	}
	.equal_tags .grid__cell {
		flex: 48%;
	}
	
	.zaim__calc_block label{
		margin:-60px 0 0px -9px;
		font-size:10px;
	}
	.zaim__calc_block .grid > .grid__cell {
		margin:30px 10px 10px 10px;
	}
	.rating {
		margin: 7px 0;
	}
	.responsive_table thead {
		display: none;
	}
	.responsive_table tr {
		display: flex;
		flex-direction: column;
	}
	.responsive_table td{
		flex: unset;
		padding:unset;
	}
	.el-table .el-table__cell{
		padding: 5px 0px;
	}
	.el-table td.el-table__cell, .el-table th.el-table__cell.is-leaf {
		border-bottom: unset;
	}
	.offer_stats{
		text-align:center;
	}
    .vydacha_na div{
        margin: 0 0px 0 3px;
    }
    .vydacha_na span {
        display: none;
    }
    .limited_text{
        display: -webkit-box;           /* Используем гибкий контейнер WebKit */
        -webkit-box-orient: vertical;   /* Вертикальная ориентация */
        -webkit-line-clamp: 2;          /* Ограничение до 3 строк */
        overflow: hidden;               /* Скрываем переполнение */
        position: relative;             /* Для позиционирования кнопки */
    }
    .limited_text .read-more {
        display:block;
        position: absolute;             /* Абсолютное позиционирование внутри .text-block */
        bottom: 0;                      /* Прикрепляем к нижнему краю блока */
        right: 0;                       /* Прикрепляем к правому краю блока */
        background: #f7f9f7;            /* Фоновый цвет для лучшей читаемости */
        padding-left: 5px;              /* Отступ слева для визуального отделения */
        cursor: pointer;                /* Указатель курсора при наведении */
        text-decoration: underline;		/* Подчеркивание */
    }
    .tags__list_scrollableParent{
        overflow: auto;
    }
    .tags__list_scrollable {
        min-width: 1200px;
    }
    .tags__list_scrollable li{

    }
    .zaim_calc_result {
        display: flex;
        flex-direction: column;
    }
    .zaim__calc_block_result .buttons{
        width: 90%;
    }
    .minimal_offer_cards > div{
        flex: 0 0 calc(50% - 10px);
        max-width: unset;
    }
    .minimal_offer_cards:not(:has(div:nth-child(5))) > div {
        flex: 0 0 calc(50% - 10px);
    }
    .multicheckbox{
        overflow: auto;
        padding: 2px;
    }
    .multicheckbox .flex-container{
        min-width: 975px;
        gap:0px;
    }
    .multicheckbox .checkbox label {
        padding: 8px 1px 8px 35px;
    }
    .qa_type_perelinkovka .geo__cities{
        column-count: 2;
        width: 100%;
    }
    .tags__list_scrollableParent{
        margin: -15px 0 20px 0;
    }
    .tags__list_scrollable > .grid__cell{
        flex:1 1 100px;
    }
    .overflow_auto_mobile{
        overflow: auto;
    }
    .img_links_container {
        gap: 14px 10px;
    }
}
@media screen and (max-width: 650px) {
	.credits__tblRow .credits__val {
	  width: fit-content;
	}
	.grid_offer_btns{
	    flex-direction: row-reverse;
	}
	.video_iframe{
		width:99%;
	}
	.tin_deb_card_pk{
		display: none;
	}
	.tin_deb_card_mobile{
		display: block;
	}	
}
@media screen and (max-width: 600px) {
	.show-text-head{
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-align-items: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		max-width: 100%;
		padding-right: 15px;
		font-size: 14px;
		-webkit-transition: color .2s;
		transition: color .2s;
		color: #369;
		-webkit-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
		background: #F7F9F7;
		position: absolute;
		top: 26px;
		right: 0;
		padding: 0px 5px 0px 7px;
		cursor: pointer;
	}
	.text-head{
		display: flex;
		flex-direction: column;
		max-height: 46px;
		overflow: hidden;
		text-align: justify;
		padding: 8px 0 20px;
		margin: 0 0 10px 0;
		clear: both;
		position: relative;
	}	
	
	.wiki_text table{
		overflow-x: auto;
		display: block;	
	}	
	.geo__columns_links4 {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}	
	.geo__columns_links4 ul {
		width: 48%;
		flex: unset;
	}
}
	
@media screen and (max-width: 550px) {
	.buttons_mob_min .button_tag{
		-webkit-flex: 1 1 145px;
		-ms-flex: 1 1 145px;
		flex: 1 1 145px;	
		height: 35px;
		min-height: 35px;		
	}
	.buttons_mob_min .button {
		-webkit-flex: 1 1 145px;
		-ms-flex: 1 1 145px;
		flex: 1 1 145px;	
		height: 35px;
		min-height: 35px;		
	}
	.tags__list_min .button{
		height: 35px;
		min-height: 35px;
	}
	.calc_table thead tr{
		display: none;
	}
	.calc_zag{
		display: inline;
	}
	.headtxt{
		display:none;
	}
	.reg__no{
		margin: 0 0 0 10px;
	}
	.prlogo{
		max-height:unset;
		max-width:100%;
	}	
	.show_medals .offer:nth-child(1) .bank__logo::before{
		margin: 5px -7px 0px 0px;
	}
	.show_medals .offer:nth-child(2) .bank__logo::before{
		margin: 5px -7px 0px 0px;
	}
	.show_medals .offer:nth-child(3) .bank__logo::before{
		margin: 5px -7px 0px 0px;
	}
	.show_medals .offer:nth-child(4):after {
		left: 25%;
	}	
	
}
@media screen and (max-width: 550px) {
	.rating_numb{
		margin: 0px 20px;
	}
	.old_frame .zform-left {
		min-height: 923px;
	}
	#comparison thead{
		display:none;
	}
	.col-4-1{
		column-count:1;
	}
	.col-4-2{
		column-count:2;
	}
}
@media screen and (max-width: 480px) {

	.g-gap-horizontal{
		margin: 0 !important;
	}
	.b-pager__arrow{
		display: none !important;
	}
	.mfo-navbar__logo {
		display:none;
	}	
	.mfo-navbar__buttons a {
		margin: 9px 5px 0 5px;
		min-width: 150px;
	}	
	.bank__icon br{
		display:none;
	}
	.geo__found li {
		height: 30px;
	}
	.modal_window{
		flex-direction:column;
		margin-top: 0;
		top: 12%;
		margin-left: 0;
		left: 10%;
	}
	.mw_child1{
		width:max-content;
		left: 15%;
		top: 6px;
	}
	.mw_child1 img{
		width: 204px;
	}
	.mw_child2 div {
		padding: 3px 15px;
	}
	.mw_child2{
		min-height: 333px;
	}			
	.button__links {
		flex-direction: column; 
	}
	.button__links .links {
		flex-direction: column;
	}
	.button__links a {
		min-width: 84%;
		margin: 6px 0;
	}
	.buttons__compact .button{
	    flex: 1 1 45%;
	}
	form .buttons{
		width: 100%;
		margin: 0px 10px;	
	}
	form .no_form_marg{
		margin: 15px 0px 0px 0px;
	}	
}
@media screen and (max-width: 440px) {
	.bank__logo_min{
		-webkit-flex: 1 1 80px;
		-ms-flex: 1 1 80px;
		flex: 1 1 80px;		
	}
}
@media screen and (max-width: 420px) {
	.prod__image{
		width: 100%;
	}
	.plat_sist{
		display: block;
		margin-top: 10px;		
	}
	.map_company_h2{
		display: none;
	}
	.map_company_logo{
		display: none;
	}
	.minimalistic_mobile {
		display: unset;
	}
	.minimalistic_mobile .frame__section {
		width: 100%;
	}
	.geo__columns_links3{
		flex-direction:column;
	}
	/* .geo__columns_links3 ul { */
		/* flex: 30%; */
	/* } */
}

@media screen and (max-width: 400px) {
	.order__img img {
		width: 100%;
	}
}
