@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  src: url('/fonts/open-sans-300.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/open-sans-regular.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 500;
  src: url('/fonts/open-sans-500.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  src: url('/fonts/open-sans-600.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: url('/fonts/open-sans-700.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 800;
  src: url('/fonts/open-sans-800.woff2') format('woff2');
}

:root {
  --c-basic: #1c1c1f;
  --c--primary: #3064D0;
  --c-light-blue: #c0e5fa;
}
*,
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  color: var(--c-basic);
  font-family: Open Sans, sans-serif;
  font-size: 16px;
}
body,
html {
  margin: 0;
  padding: 0;
}

a {
	text-decoration: none;
	color: #fff;
}

main {
	background-color: rgb(219 250 255);
}

.header__dropdown {
	background-color: rgb(219 250 255);
}

.loan-a {
    background: #00CF91;
    -webkit-border-radius: 3px 3px 3px 3px;
    border-radius: 3px 3px 3px 3px;
	max-width: 210px;
    padding: 7px;
    position: fixed;
    top: 10px;
    right: -100%;
    z-index: 10000;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}
.loan-a.shown {
    right: 10px;
    -webkit-box-shadow: 0 5px 20px 0 rgba(0,0,0,.2);
    box-shadow: 0 5px 20px 0 rgba(0,0,0,.2);
}
.loan-a .check-icon {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 24px;
    -ms-flex: 0 0 24px;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    background-color: #fff;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    position: relative;
    margin-right: 10px;
}
.check-icon:after {
	  position: absolute;
    content: "\2713";
    z-index: 2;
    font-size: 16px;
    line-height: 15px;
    text-align: center;
    font-weight: 900;
	  color: #00CF91;
}
.loan-a .push-text {
    font-size: 12px;
    line-height: 16px;
    color: #fff;
}

.header__dropdown.opened {
    left: 0;
}

.orange {
  background-color: #ffc46b !important;
}
.green {
  background-color: #3ac478 !important;
}
.blue {
  background-color: #5199ff !important;
}
.yellow {
  background-color: #ffd600 !important;
}
.red {
  background-color: #fe634e !important;
}
.purple {
  background-color: #782FEF !important;
}

.page {
  background-color: #eee;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  min-height: 100vh;
}
.wrapper {
  margin: 0 auto;
  max-width: 1280px;
}
.main {
  padding: 30px 20px 64px;
}
@media screen and (max-width: 768px) {
  .main {
    padding: 24px 20px 64px;
  }
}
@media screen and (max-width: 460px) {
  .main {
    padding: 24px 16px 64px;
  }
}
.page-subtitle {
  font-size: 16px;
  line-height: 22px;
  margin: 0 auto 30px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page-subtitle {
    display: none;
  }
}
.offers-list {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
}
@media screen and (max-width: 1200px) {
  .offers-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 768px) {
  .offers-list {
    gap: 16px;
    grid-template-columns: 1fr 1fr;
    margin: 0 0 24px;
  }
}
.offers-list__item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background-color: #fff;
  border: 1px solid rgba(28, 28, 31, 0.15);
  -webkit-box-shadow: 0 4px 4px hsla(0, 0%, 77%, 0.15);
  box-shadow: 0 4px 4px hsla(0, 0%, 77%, 0.15);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: var(--c-basic);
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 200px;
  position: relative;
  text-decoration: none;
  -webkit-transition: -webkit-box-shadow 0.25s ease;
  transition: -webkit-box-shadow 0.25s ease;
  -o-transition: box-shadow 0.25s ease;
  transition: box-shadow 0.25s ease;
  transition: box-shadow 0.25s ease, -webkit-box-shadow 0.25s ease;
}

.offers-list__item > a {
	padding: 17px 20px 16px;
    width: 100%;
}
@media screen and (max-width: 768px) {
  .offers-list__item {
    min-height: 148px;
  }
}
.offers-list__item:hover {
  -webkit-box-shadow: 0 4px 4px hsla(0, 0%, 77%, 0.5);
  box-shadow: 0 4px 4px hsla(0, 0%, 77%, 0.5);
}
.offers-list__item .item-label {
  background: #9ba2a6;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  left: 12px;
  line-height: 12px;
  padding: 4px 8px;
  position: absolute;
  top: -11px;
}
@media screen and (max-width: 768px) {
  .offers-list__item .item-label {
    font-size: 8px;
    padding: 2px 8px;
    top: -9px;
  }
}
.offers-list__item .item-title {
  margin-bottom: 32px;
  text-align: center;
}
.offers-list__item .item-image {
  background-position: 50%;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  background-size: contain;
  height: 120px;
  margin: 0 auto;
  width: 80%;
}
@media screen and (max-width: 768px) {
  .offers-list__item .item-image {
    height: 72px;
    margin: 0 auto 10px;
  }
}
@media screen and (max-width: 460px) {
  .offers-list__item .item-image {
    height: 60px;
    width: 100%;
  }
}
.offers-list__item .item-conditionals {
  font-weight: 500;
  margin: 0 0 18px;
  display: flex;
  justify-content: center;
  color: var(--c-basic);
  align-items: center;
}

@media screen and (max-width: 768px) {
  .offers-list__item .item-conditionals {
    letter-spacing: -0.04em;
    margin: 0 0 12px;
  }
}
.offers-list__item .item-conditionals__part {
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .offers-list__item .item-conditionals__part {
    font-size: 12px;
    line-height: 16px;
  }
}
.offers-list__item .item-conditionals__amount {
  color: var(--c--primary);
}
.offers-list__item .item-conditionals__divider {
  color: #d3d3d7;
  font-size: 20px;
  font-weight: 400;
}
.offers-list__item .item-conditionals__percent {
  color: var(--c--primary);
}
.offers-list__item .item-additional {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 12px;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .offers-list__item .item-additional {
    margin-bottom: 12px;
  }
}
.offers-list__item .item-link {
  color: #3177ff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 16px;
  text-decoration: underline;
  -webkit-transition: -webkit-text-decoration-color 0.2s ease;
  transition: -webkit-text-decoration-color 0.2s ease;
  -o-transition: text-decoration-color 0.2s ease;
  transition: text-decoration-color 0.2s ease;
  transition: text-decoration-color 0.2s ease,
    -webkit-text-decoration-color 0.2s ease;
}
@media screen and (max-width: 768px) {
  .offers-list__item .item-link {
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    margin-bottom: 12px;
  }
}
.offers-list__item .item-link:hover {
  -webkit-text-decoration-color: transparent;
  text-decoration-color: transparent;
}
.offers-list__item .item-rrpc-title {
  color: rgba(28, 28, 31, 0.8);
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .offers-list__item .item-rrpc-title {
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    margin-bottom: 8px;
  }
}
.offers-list__item .item-rrpc-value {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}
@media screen and (max-width: 768px) {
  .offers-list__item .item-rrpc-value {
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
  }
}
.offers-list__item .item-action {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  align-items: center;
  background-color: var(--c--primary);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: var(--c-basic);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  -webkit-justify-content: center;
  justify-content: center;
  margin: auto auto 0;
  padding: 24px 24px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  width: 100%;
}

.offers-list__item .item-action span {
	width: 100%;
	color: #fff;
	font-weight: 700;
}

@media screen and (max-width: 768px) {
  .offers-list__item .item-action {
    font-size: 14px;
    height: 32px;
    line-height: 20px;
    padding: 4px 12px;
  }
}
@media screen and (max-width: 390px) {
  .offers-list__item .item-action {
    height: auto;
    line-height: 18px;
    padding: 6px;
    white-space: normal;
  }
}
.offers-list__item .color-accent {
  color: var(--c--primary);
}
.shape--medium_rounded {
  border-radius: 14px;
}
.shape--rounded {
  border-radius: 22px;
}
.nothing-found {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  align-items: center;
  background-color: transparent;
  border: 2px solid var(--c--primary);
  border-radius: 26px;
  color: var(--c--primary);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  margin: 0 auto 40px;
  max-width: 254px;
  padding: 13px 32px;
  text-decoration: none;
  white-space: nowrap;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .nothing-found {
    max-width: 100%;
  }
}
.nothing-found.offers-list__nothing-found {
  display: none;
  grid-column: span 2;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .nothing-found.offers-list__nothing-found {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.creditors-subtitle {
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .creditors-subtitle {
    font-size: 18px;
    line-height: 24px;
  }
}
.creditors-list {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr 1fr;
  list-style: none;
  margin: 0 0 48px;
  padding: 0;
}
@media screen and (max-width: 992px) {
  .creditors-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 768px) {
  .creditors-list {
    gap: 12px;
    grid-template-columns: 1fr;
    margin: 0 0 40px;
  }
}
.conditionals-subtitle {
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .conditionals-subtitle {
    font-size: 18px;
    line-height: 24px;
  }
}
.conditionals-text {
  color: #7d7d8a;
  font-size: 14px;
  line-height: 20px;
}
.conditionals-text h3 {
  color: var(--c-basic);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  margin-bottom: 4px;
}
.conditionals-text p {
  margin-top: 4px;
}
.footer {
  background-color: #102429;
  color: #fff;
  padding: 32px 20px;
}
@media screen and (max-width: 768px) {
  .footer {
    font-size: 12px;
    line-height: 16px;
    padding: 20px;
  }
}
@media screen and (max-width: 460px) {
  .footer {
    padding: 20px 16px;
  }
}
.footer__copyrights {
  font-size: 14px;
  line-height: 20px;
}
.footer__copyrights p {
  margin: 0 0 12px;
}
.footer__copyrights p:last-child {
  margin: 0;
}
.header {
  background: #fff;
  -webkit-box-shadow: 0 4px 4px hsla(0, 0%, 53%, 0.1);
  box-shadow: 0 4px 4px hsla(0, 0%, 53%, 0.1);
  padding: 0 20px;
}
@media screen and (max-width: 460px) {
  .header {
    padding: 0 16px;
  }
}
.header__container {
  display: grid;
  grid-template-columns: 1fr 3fr 1fr;
  min-height: 70px;
}
@media screen and (max-width: 768px) {
  .header__container {
    min-height: 56px;
  }
}
.header__part {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.header__logo .logo {
  background-position: 0;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  background-size: contain;
  height: 50px;
  width: 148px;
}
@media screen and (max-width: 768px) {
  .header__logo .logo {
    height: 40px;
    width: 82px;
  }
}
.header__title {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.header__title .page-title {
  color: #7d7d8a;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
  text-align: center;
}
@media screen and (max-width: 992px) {
  .header__title .page-title {
    font-size: 14px;
    line-height: 18px;
  }
}
@media screen and (max-width: 768px) {
  .header__title .page-title {
    font-size: 10px;
    line-height: 14px;
  }
}
.header__action {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.header__action .action-link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  align-items: center;
  background-color: var(--c--primary);
  border-radius: 26px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  max-width: 254px;
  padding: 16px 32px;
  text-decoration: none;
  white-space: nowrap;
  width: 100%;
}
@media screen and (max-width: 768px) {
	.offers-list__item > a {
		padding: 10px;
	}
}
@media screen and (max-width: 768px) {
  .header__action .action-link {
    display: none;
  }
}
.header__action .action-burger {
  cursor: pointer;
  display: none;
  height: 24px;
  width: 24px;
}
@media screen and (max-width: 768px) {
  .header__action .action-burger {
    display: block;
  }
}
.header__dropdown {
  bottom: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  left: 100%;
  padding: 20px;
  position: fixed;
  top: 56px;
  -webkit-transition: left 0.25s ease;
  -o-transition: left 0.25s ease;
  transition: left 0.25s ease;
  width: 100%;
  z-index: 10;
}
.header__dropdown .dropdown-title {
  background-color: #102429;
  border-radius: 16px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 14px;
  padding: 20px;
}
.header__dropdown .dropdown-link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  align-items: center;
  background-color: var(--c--primary);
  border-radius: 26px;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 16px 32px;
  text-decoration: none;
  white-space: nowrap;
  width: 100%;
}
.header__dropdown .dropdown-menu {
  margin-bottom: 12px;
}
.header__dropdown .dropdown-menu__item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-align-items: center;
  align-items: center;
  border-bottom: 1px solid #d3d3d7;
  color: var(--c-basic);
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  font-weight: 700;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  line-height: 26px;
  padding: 20px 0;
  text-decoration: none;
}
.header__dropdown .dropdown-menu__item:last-child {
  border-bottom: none;
}
.creditor {
  background-color: #fff;
  border: 1px solid rgba(28, 28, 31, 0.15);
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 4px hsla(0, 0%, 77%, 0.15);
  box-shadow: 0 4px 4px hsla(0, 0%, 77%, 0.15);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: var(--c-basic);
  min-height: 200px;
  padding: 16px 16px 20px;
  text-decoration: none;
  -webkit-transition: -webkit-box-shadow 0.25s ease;
  transition: -webkit-box-shadow 0.25s ease;
  -o-transition: box-shadow 0.25s ease;
  transition: box-shadow 0.25s ease;
  transition: box-shadow 0.25s ease, -webkit-box-shadow 0.25s ease;
}
.creditor:hover {
  -webkit-box-shadow: 0 4px 4px hsla(0, 0%, 77%, 0.5);
  box-shadow: 0 4px 4px hsla(0, 0%, 77%, 0.5);
}
@media screen and (max-width: 992px) {
  .creditor {
    padding: 16px;
  }
}
@media screen and (max-width: 768px) {
  .creditor {
    padding: 12px 12px 16px;
  }
}
.creditor__header {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-align-items: center;
  align-items: center;
  border-bottom: 1px solid #e8e8eb;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .creditor__header {
    margin-bottom: 12px;
    padding-bottom: 16px;
  }
}
.creditor__title {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .creditor__title {
    font-size: 14px;
    line-height: 16px;
  }
}
.creditor__data-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  margin-bottom: 12px;
}
.creditor__data-key {
  -ms-flex-preferred-size: 30%;
  color: #a8a8b0;
  -webkit-flex-basis: 30%;
  flex-basis: 30%;
  margin-right: 16px;
}
.creditor__data-value {
  -ms-flex-preferred-size: 70%;
  -webkit-flex-basis: 70%;
  flex-basis: 70%;
}
