#to-top-btn {
  width: 65px;
  height: 65px;
  border-radius: 100%;
  background-color: #ffcd1a;
  position: fixed;
  left: 41px;
  bottom: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all .2s;
}

#to-top-btn .icon {
  width: 34px;
  height: auto;
}

#to-top-btn.show {
  opacity: 1;
  z-index: 9;
  visibility: visible;
}

#to-top-btn:hover {
  cursor: pointer;
}

.footer-container {
  width: auto !important;
}

.calc__bottom .btn {
  width: 100%;
  height: 52px;
  border: 2px solid #FFDE52;
  border-radius: 38px;
  background: #FFFFFF;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0;
}
.calc__bottom a.btn {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  color: #1D2431;
  text-decoration: none;
}
.calc__bottom .btn:hover {
  background: #FFDE52;
  -webkit-transition: .225s ease-out;
  -o-transition: .225s ease-out;
  transition: .225s ease-out;
}
.calc__bottom .btn.btn-gu {
  border: 2px solid #0D4CD3;
  background: #0D4CD3;
  margin: 32px 0 16px 0;
}
.calc__bottom a.btn.btn-gu {
  color: #FFFFFF;
}
.calc__bottom a.btn.btn-gu img {
  margin-left: 5px;
  height: 19px;
}
.calc__bottom .btn.btn-gu:hover {
  border: 2px solid #2c60cf;
  background: #2c60cf;
}
.calc__bottom-wrap {
  margin-top: 40px;
}

.tarif {
  padding: 65px 0 90px;
  background: #ECF6FC url(/wp-content/themes/webbankir/img/v2/webbankir.svg) center bottom no-repeat;
  background-size: contain;
}

.tarif .container {
  overflow: hidden;
}

.tarif__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin-top: 55px;
  padding-bottom: 60px;
}

.tarif__body.swiper {
  overflow: unset;
}

.tarif__item {
  background: #FFFFFF;
  border: 1px solid #DFE4F2;
  border-radius: 22px;
  padding: 25px 20px 40px;
  min-width: 255px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
}

.tarif__item:hover {
  -webkit-box-shadow: 1px 1px 10px rgba(37, 67, 125, 0.15);
          box-shadow: 1px 1px 10px rgba(37, 67, 125, 0.15);
}

.tarif__item.hit {
  background: -webkit-gradient(linear, left top, left bottom, from(#FFE05B), to(#FFC906));
  background: -o-linear-gradient(top, #FFE05B 0%, #FFC906 100%);
  background: linear-gradient(180deg, #FFE05B 0%, #FFC906 100%);
}

.tarif__item.hit:after {
  content: "";
  position: absolute;
  top: 15px;
  right: 15px;
  width: 63px;
  height: 22px;
  background: url(/wp-content/themes/webbankir/img/v2/label.svg) center no-repeat;
  background-size: contain;
}

.tarif__item.hit .tarif__item-action a {
  background-color: #fff;
}

.tarif__item.hit .tarif__item-action a:hover {
  background: #F9F9F9;
  border: 1px solid #EFF1F8;
  -webkit-box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.07), 1px 1px 2px rgba(255, 255, 255, 0.3), inset 5px 5px 13px rgba(224, 224, 224, 0.5);
          box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.07), 1px 1px 2px rgba(255, 255, 255, 0.3), inset 5px 5px 13px rgba(224, 224, 224, 0.5);
}

.tarif__item.hit svg circle {
  stroke: #fff;
}

.tarif__item.hit svg path {
  stroke: #fff;
}

.tarif__item.hit svg path.rub,
.tarif__item.hit svg path.percent {
  stroke: none;
  fill: #fff;
}

.tarif__item.hit .tarif__item-list.percent small {
  color: #1D2431;
}

.tarif__item.hit .tarif__item-ico:before {
  background-color: #fff;
}

.tarif__item-ico {
  height: 115px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
}

.tarif__item-ico img {
  position: relative;
  z-index: 1;
}

.tarif__item h3 {
  font-family: "Manrope";
  font-weight: 500;
  font-size: 28px;
  line-height: 38px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.tarif__item-list {
  font-family: Manrope;
  font-size: 22px;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.tarif__item-list.percent {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.tarif__item-list.percent small {
  display: block;
  font-family: Roboto;
  width: 100%;
  font-size: 14px;
  line-height: 135%;
  font-weight: 400;
  color: #686D81;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.tarif__item-action {
  margin-top: 15px;
}

.tarif__item-action a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #FFDE52;
  border-radius: 90px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #002b4b;
  height: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border: 1px solid transparent;
}

.tarif__item-action a:hover {
  background: #FFCC00;
  -webkit-box-shadow: 1px 1px 2px rgba(255, 224, 0, 0.3), -1px -1px 2px rgba(230, 184, 0, 0.5), inset -5px 5px 10px rgba(230, 184, 0, 0.2), inset 5px -5px 10px rgba(230, 184, 0, 0.2), inset -5px -5px 10px rgba(255, 224, 0, 0.9), inset 5px 5px 13px rgba(230, 184, 0, 0.9);
          box-shadow: 1px 1px 2px rgba(255, 224, 0, 0.3), -1px -1px 2px rgba(230, 184, 0, 0.5), inset -5px 5px 10px rgba(230, 184, 0, 0.2), inset 5px -5px 10px rgba(230, 184, 0, 0.2), inset -5px -5px 10px rgba(255, 224, 0, 0.9), inset 5px 5px 13px rgba(230, 184, 0, 0.9);
}

.tarif__item svg circle {
  stroke: var(--accent);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.tarif__item svg path {
  stroke: var(--accent);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.tarif__item svg path.rub,
.tarif__item svg path.percent {
  stroke: none;
  fill: var(--accent);
}

.tarif .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #C4D5EA;
  opacity: 1;
}

.tarif .swiper-pagination-bullet-active {
  background: var(--accent);
}

.tarif__item.hit .tarif__item-title,
.tarif__item.hit .tarif__item-list {
  font-weight: 600;
}


.disabledBlock {
  pointer-events: none;
  opacity: .4;
}



.how__work {
  padding: 70px 0;
}

.how__work-description {
  margin-top: 18px;
  line-height: 135%;
  font-size: 20px;
}

.how__work ul {
  list-style-type: disc;
  margin-left: 17px;
  margin-top: 15px;
}

.how__work ul li {
  margin-bottom: 12px;
}

.how__work ul li::marker {
  color: #4D92E3;
}

.how__work ul a {
  font-size: 20px;
  line-height: 135%;
  color: #4D92E3;
  text-decoration: none;
}

.how__work-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.how__work-left {
  width: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: url(/wp-content/themes/webbankir/img/v2/section-works.png) center bottom no-repeat;
  background-size: contain;
}

.how__work-right {
  width: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 55px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 110px;
  padding-bottom: 40px;
}

.how__work-item {
  background: #ECF6FC;
  border: 1px solid #E0EAF4;
  border-radius: 25px;
  padding: 35px 125px 27px 42px;
  position: relative;
  min-height: 170px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.how__work-item:last-child {
  background: #FFDE52;
}

.how__work-item:last-child::after {
  opacity: 0.4;
}

.how__work-item:after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 0;
  height: 102px;
  width: 70px;
}

.how__work-item:nth-child(1) h3::after {
  content: "";
  width: 26px;
  height: 18px;
  display: inline-block;
  margin-left: 5px;
  background: url(/wp-content/themes/webbankir/img/v2/ico-arrow.svg) center no-repeat;
  background-size: contain;
  position: relative;
  top: 2px;
}

.how__work-item:nth-child(1)::after {
  background: url(/wp-content/themes/webbankir/img/v2/1.svg) right bottom no-repeat;
  background-size: contain;
}

.how__work-item:nth-child(2)::after {
  background: url(/wp-content/themes/webbankir/img/v2/2.svg) right bottom no-repeat;
  background-size: contain;
}

.how__work-item:nth-child(3)::after {
  background: url(/wp-content/themes/webbankir/img/v2/3.svg) right bottom no-repeat;
  background-size: contain;
}

.how__work-item h3 {
  margin-bottom: 10px;
  display: inline-block;
  vertical-align: middle;
}

.how__work-item p {
  font-size: 20px;
}

.stock {
  padding: 70px 0;
  background: #ECF6FC;
}

.stock-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.stock a.stock-links {
  display: inline-block;
  vertical-align: middle;
  border: 1px solid #4D92E3;
  border-radius: 5px;
  padding: 10px;
  -ms-flex-item-align: end;
      align-self: flex-end;
  text-decoration: none;
  color: #1470DC;
  font-size: 20px;
  font-weight: 400;
  margin-top: 15px;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.stock a.stock-links:hover {
  border-color: #2654A3;
  color: #2654a3;
  -webkit-box-shadow: 0 0 0 1px #2654A3;
          box-shadow: 0 0 0 1px #2654A3;
}

.stock-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin-top: 50px;
}

.stock-left {
  width: calc(60% - 30px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 37px 110px 37px 28px;
  background: url(/wp-content/themes/webbankir/img/v2/sbp_promo_stock.png) right bottom no-repeat, linear-gradient(311.11deg, #2E14B5 0.51%, #8444ED 90.34%);
  background-size: contain;
  border-radius: 25px;
  position: relative;
}

.stock-left h3 {
  font-family: Manrope;
  font-size: 40px;
  font-weight: 700;
  line-height: 55px;
  letter-spacing: 0;
  text-align: left;
  text-shadow: 0 0 20px #FEBF2FB2;
  color: #FFDE52;
  margin-bottom: 10px;
}

.stock-left p {
  font-family: Roboto;
  font-size: 32px;
  font-weight: 400;
  line-height: 43px;
  letter-spacing: 0;
  text-align: left;
  color: #FFFFFF;
  max-width: 330px;
}

.stock-left a {
  font-family: Roboto;
  font-size: 18px;
  font-weight: 600;
  background: #FFDE52;
  border-radius: 90px;
  border: 1px solid transparent;
  padding: 18px 40px;
  color: #1D2431;
  text-decoration: none;
  margin-top: 40px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: inline-block;
}

.stock-left a:hover {
  background: #FFCC00;
  -webkit-box-shadow: 1px 1px 2px rgba(255, 224, 0, 0.3), -1px -1px 2px rgba(230, 184, 0, 0.5), inset -5px 5px 10px rgba(230, 184, 0, 0.2), inset 5px -5px 10px rgba(230, 184, 0, 0.2), inset -5px -5px 10px rgba(255, 224, 0, 0.9), inset 5px 5px 13px rgba(230, 184, 0, 0.9);
  box-shadow: 1px 1px 2px rgba(255, 224, 0, 0.3), -1px -1px 2px rgba(230, 184, 0, 0.5), inset -5px 5px 10px rgba(230, 184, 0, 0.2), inset 5px -5px 10px rgba(230, 184, 0, 0.2), inset -5px -5px 10px rgba(255, 224, 0, 0.9), inset 5px 5px 13px rgba(230, 184, 0, 0.9);
}

.promo-banner-lk.stock-left {
  background: url(/wp-content/themes/webbankir/img/v2/lk_promo_all_stock.png) right bottom / contain no-repeat;
}
.promo-banner-lk.stock-left h3 {
  font-family: Manrope;
  font-size: 28px;
  font-weight: 700;
  line-height: 33px;
  color: #ffffff;
  text-shadow: none;
  margin-bottom: 10px;
}
.promo-banner-lk.stock-left p {
  font-family: Roboto;
  font-size: 20px;
  font-weight: 400;
  line-height: 27px;
  text-align: left;
  max-width: 330px;
}
.promo-banner-lk.stock-left a {
  font-family: Roboto;
  font-size: 18px;
  border-radius: 90px;
  border: 1px solid transparent;
  padding: 18px 40px;
  color: #1d2431;
  margin-top: 32px;
  transition: .3s;
  text-align: center;
  display: inline-block;
}

.stock-right {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}

.stock-item {
  background: #FFFFFF;
  border: 1px solid #E0EAF4;
  border-radius: 25px;
  padding: 35px 28px 27px;
}

.stock-item:nth-child(2) {
  padding-bottom: 20px;
}

.stock-item:nth-child(2) a {
  margin-top: 27px;
}

.stock-item h3 {
  margin-bottom: 16px;
}

.stock-item p {
  font-size: 20px;
  line-height: 135%;
}

.stock-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 43px;
  font-family: "Manrope";
  font-weight: 600;
  font-size: 20px;
  line-height: 27px;
  color: #1D2431;
  text-decoration: none;
  -webkit-transition: all 0.15s ease;
  -o-transition: all 0.15s ease;
  transition: all 0.15s ease;
}

.stock-item a:hover {
  text-shadow: 1px 0 0 #1D2431;
}

.stock-item a::after {
  content: "";
  width: 26px;
  height: 18px;
  display: inline-block;
  margin-left: 8px;
  background: url(/wp-content/themes/webbankir/img/v2/ico-arrow.svg) center no-repeat;
  background-size: contain;
}

.offer {
  padding: 60px 0;
  background: #ECF6FC;
}

.offer-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.offer-left {
  width: 60%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #FFFFFF;
  border-radius: 25px 0 0 25px;
  padding-top: 55px;
  padding-left: 27px;
  padding-bottom: 95px;
  position: relative;
}

.offer-left h2 {
  margin-bottom: 20px;
}

.offer-left p {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  max-width: 490px;
}

.offer-left ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-top: 45px;
}

.offer-left ul img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100px;
  height: 100px;
}

.offer-left ul img:hover {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

.offer-left-desktop {
  display: block;
}

.offer-left-mob {
  display: none;
}

.offer-right {
  width: 40%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: -o-radial-gradient(89.43% 131.1%, 89.43% 159.41%, #686D81 0%, #000000 100%);
  background: radial-gradient(89.43% 159.41% at 89.43% 131.1%, #686D81 0%, #000000 100%);
  border-radius: 0px 25px 25px 0px;
  position: relative;
}

.offer-right img {
  position: absolute;
  right: 0;
  bottom: -1px;
}

.offer-right img.show-medium {
  display: none;
}

.offer-right img.show-mob {
  display: none;
  right: 50%;
  -webkit-transform: translateX(50%);
      -ms-transform: translateX(50%);
          transform: translateX(50%);
}

.why {
  background: #ECF6FC;
}

.why-body {
  background: #FFFFFF;
  border-radius: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 45px 25px;
}

.why-left {
  padding-right: 40px;
  border-right: 2px solid #E0EAF4;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.why-left h2 {
  margin-bottom: 10px;
}

.why-left p {
  font-family: "Manrope";
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  max-width: 555px;
}

.why-right {
  padding-left: 40px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.why-top {
  font-family: "Manrope";
  font-weight: 600;
  font-size: 40px;
  line-height: 110%;
  color: #1D2431;
}

.why-bottom {
  font-family: "Manrope";
  font-weight: 700;
  font-size: 70px;
  line-height: 110%;
  color: #41BBFA;
}

.rating {
  background: #ECF6FC;
  padding: 46px 0;
}

.rating .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #C4D5EA;
  opacity: 1;
}

.rating .swiper-pagination-bullet-active {
  background: var(--accent);
}

.rating-body {
  padding-bottom: 60px;
  margin-top: 21px;
}

.rating .swiper-slide {
  background: #FFFFFF;
  border: 1px solid #E0EAF4;
  border-radius: 25px;
  padding: 10px 25px 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.rating-top {
  font-family: "Manrope";
  font-weight: 700;
  font-size: 40px;
  line-height: 55px;
  color: #DFE4F2;
  border-bottom: 1px solid #E0EAF4;
  padding-bottom: 8px;
  position: relative;
}

.rating-top.star:after {
  content: "";
  position: absolute;
  right: 0;
  top: 5px;
  width: 44px;
  height: 41px;
  background: url(/wp-content/themes/webbankir/img/v2/star.png) center no-repeat;
  background-size: contain;
}

.rating-top b {
  color: #1D2431;
}

.rating-bottom {
  font-family: "Manrope";
  font-style: normal;
  color: #1D2431;
  padding-top: 8px;
}

.rating-bottom b {
  font-weight: 600;
  font-size: 20px;
  line-height: 27px;
}

.rating-bottom span {
  font-size: 16px;
  line-height: 135%;
  display: block;
}

.news {
  padding: 5px 0 105px;
  background: #ECF6FC url(/wp-content/themes/webbankir/img/v2/webbankir.svg) center bottom no-repeat;
  background-size: contain;
}

.news-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 33px;
}

.news ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-top: 12px;
}

.news ul a {
  display: block;
  padding: 10px 10px;
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  color: #1470DC;
  text-decoration: none;
  border: 1px solid #4D92E3;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.news ul a:hover {
  border-color: #2654A3;
  color: #2654a3;
  -webkit-box-shadow: 0 0 0 1px #2654A3;
          box-shadow: 0 0 0 1px #2654A3;
}

.news-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.news-body a.link {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Manrope";
  font-weight: 600;
  font-size: 20px;
  line-height: 27px;
  color: #1D2431;
  text-decoration: none;
  -webkit-transition: all 0.15s ease;
  -o-transition: all 0.15s ease;
  transition: all 0.15s ease;
}

.news-body a.link::after {
  content: "";
  width: 26px;
  height: 18px;
  display: inline-block;
  margin-left: 8px;
  background: url(/wp-content/themes/webbankir/img/v2/ico-arrow.svg) center no-repeat;
  background-size: contain;
}

.news-body a.link:hover {
  text-shadow: 1px 0 0 #1D2431;
}

.news-body time {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  text-align: right;
  color: #C5C9D2;
}

.news-body p {
  font-size: 16px;
  line-height: 135%;
  color: #000;
}

.news-body h4 {
  margin-bottom: 14px;
}

.news-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 15px;
}

.news-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  width: calc(60% - 30px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #FFFFFF;
  border: 1px solid #DFE4F2;
  border-radius: 25px;
  overflow: hidden;
}

.news-img {
  width: 40%;
  position: relative;
  overflow: hidden;
}

.news-img img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}

.news-text {
  width: calc(60% - 30px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 45px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 28px;
  padding-bottom: 43px;
}

.news-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 40%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.news-item {
  background: #FFFFFF;
  border: 1px solid #DFE4F2;
  border-radius: 25px;
  padding: 35px 20px 44px 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: 238px;
}

.news-item p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.reviews {
  padding-top: 35px;
}

.reviews-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.reviews-left {
  width: 50%;
  background: url(/wp-content/themes/webbankir/img/v2/doverie.png) left bottom no-repeat;
  background-size: contain;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.reviews-right {
  width: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 68px;
  padding-left: 16px;
  padding-bottom: 80px;
}

.reviews-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}

.reviews-links a {
  display: block;
  padding: 10px 10px;
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  color: #1470DC;
  text-decoration: none;
  border: 1px solid #4D92E3;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.reviews-links a:hover {
  border-color: #2654A3;
  color: #2654a3;
  -webkit-box-shadow: 0 0 0 1px #2654A3;
          box-shadow: 0 0 0 1px #2654A3;
}

.reviews-slider {
  padding-bottom: 50px;
}

.reviews-slider .swiper-slide {
  padding: 24px 27px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #ECF6FC;
  border: 1px solid #E0EAF4;
  border-radius: 25px;
}

.reviews-slider .slider-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.reviews-slider .slider-top time {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  text-align: right;
  color: #91A5C1;
}

.reviews-slider .slider-left {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  color: #91A5C1;
}

.reviews-slider .slider-left b {
  font-weight: 600;
  color: #000;
}

.reviews-slider .slider-body {
  font-size: 16px;
  line-height: 19px;
  margin-top: 15px;
}

.reviews .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #C4D5EA;
  opacity: 1;
}

.reviews .swiper-pagination-bullet-active {
  background: var(--accent);
}

.questions {
  background: #ECF6FC;
}

.questions-body {
  background: url(/wp-content/themes/webbankir/img/v2/questions.png) right bottom no-repeat;
  padding: 82px 0 78px;
}

.questions-body h2 {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  font-size: 28px;
  line-height: 120%;
  color: #1D2431;
  max-width: 350px;
  margin-bottom: 8px;
}

.questions-body p {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 30px;
  color: #1D2431;
  max-width: 475px;
}

.questions-body a.but {
  background: #FFDE52;
  border-radius: 100px;
  display: inline-block;
  padding: 16px 98px;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: #002B4B;
  text-decoration: none;
  margin-top: 33px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.questions-body a.but:hover {
  background: #FFCC00;
  -webkit-box-shadow: 1px 1px 2px rgba(255, 224, 0, 0.3), -1px -1px 2px rgba(230, 184, 0, 0.5), inset -5px 5px 10px rgba(230, 184, 0, 0.2), inset 5px -5px 10px rgba(230, 184, 0, 0.2), inset -5px -5px 10px rgba(255, 224, 0, 0.9), inset 5px 5px 13px rgba(230, 184, 0, 0.9);
          box-shadow: 1px 1px 2px rgba(255, 224, 0, 0.3), -1px -1px 2px rgba(230, 184, 0, 0.5), inset -5px 5px 10px rgba(230, 184, 0, 0.2), inset 5px -5px 10px rgba(230, 184, 0, 0.2), inset -5px -5px 10px rgba(255, 224, 0, 0.9), inset 5px 5px 13px rgba(230, 184, 0, 0.9);
}

.questions-body span {
  display: block;
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  margin-top: 5px;
}

.questions-body span a {
  color: #4d92e3;
  text-decoration: none;
}

.mobile__message {
  width: 64px;
  height: 64px;
  position: fixed;
  right: 15px;
  bottom: 85px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFDE52), to(#F4CE29));
  background: -o-linear-gradient(top, #FFDE52 0%, #F4CE29 100%);
  background: linear-gradient(180deg, #FFDE52 0%, #F4CE29 100%);
  border-radius: 50%;
  overflow: hidden;
  z-index: 15;
  display: none;
}

.mobile__message a {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: url(/wp-content/themes/webbankir/img/v2/message.svg) center no-repeat;
}

/* GDPR v2 */
#cookie-law-info-bar {
  background-color: rgb(255, 255, 255);
  color: rgb(104, 109, 129);
  font-family: inherit;
  bottom: 0;
  position: fixed;
  display: block;
  width: 100%;
  transition: all 0.3s ease 0s;
  z-index: 350;
  box-shadow: 0 -2px 9px rgba(71, 77, 98, 0.08);
  padding: 0;
}

.gdpr_v2_content {
  height: 85px;
  margin: 0 auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.gdpr_v2_center {
  width: 100%;
  display: flex;
}

.gdpr_v2_left {
  width: 100%;
  font-weight: 400;
  font-size: 19px;
  line-height: 28px;
  align-items: center;
  color: #1D2431;
  display: flex;
  text-align: left;
}

.gdpr_v2_left a {
  color: #1470dc;
  text-decoration: underline;
}

.gdpr_v2_left .gdpr_v2_left_text_full {
  display: block;
}

.gdpr_v2_left .gdpr_v2_left_text_min {
  display: none;
}

.gdpr_v2_right {
  margin-left: 30px;
  display: flex;
  align-items: center;
}

#wt-cli-accept-all-btn {
  color: rgb(29, 36, 49);
  background-color: #ffffff;
  width: 206px;
  height: 45px;
  border: 1px solid rgb(255, 222, 82);
  box-sizing: border-box;
  border-radius: 8px;
  line-height: 25px;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
  display: inline-block;
  padding: 9px 12px;
  position: relative;
  margin: 0;
}

#wt-cli-accept-all-btn:hover {
  background-color: rgb(255, 222, 82) !important;
  color: rgb(29, 36, 49) !important;
}

.noUi-handle-lower:hover,
.noUi-handle-lower:active {
  -webkit-box-shadow: 0 0 0 5px rgba(255, 222, 82, 0.4);
  box-shadow: 0 0 0 5px rgba(255, 222, 82, 0.4);
}

.file-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  padding-left: 16px;
  padding-top: 10px;
  padding-bottom: 25px;
  border-radius: 0 0 25px 25px;
  border: 1px solid #DFE4F2;
  border-top: none;
  padding-right: 15px;
}

.file-wrapper #file-text {
  margin-left: 15px;
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: -5px;
  color: #686D81;
}

.file-wrapper #file-text span:first-child {
  font-weight: 600;
}

.ajax-file-upload {
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--accent);
  color: #000;
  border-radius: 50%;
  cursor: pointer;
}

.ajax-file-upload-statusbar {
  font-size: 12px;
  width: 50%;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 40px;
  padding-left: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  border-right: 3px solid transparent;
}

.ajax-file-upload-statusbar:nth-child(1) {
  border-right: 3px solid #DFE4F2;
}

.ajax-file-upload-statusbar:nth-child(3) {
  border-right: 3px solid #DFE4F2;
}

.ajax-file-upload-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: auto;
  gap: 5px 0;
}

.ajax-file-upload-filename {
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.ajax-file-upload-filesize {
  color: #C5C9D2;
}

.ajax-file-upload-red {
  position: absolute;
  right: 15px;
  top: 5px;
  width: 12px;
  height: 12px;
  background: url(/wp-content/themes/webbankir/img/v2/close.svg) center;
  background-size: contain;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

.ajax-file-upload-red:hover {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}

.ajax-file-upload-progress {
  height: 3px;
}

.ajax-file-upload-bar {
  height: 3px;
  background-color: var(--accent);
}

body #cookie-law-info-bar {
  display: none;
  padding: 16px;
  box-sizing: border-box;
  width: 100%;
  max-width: 1110px;
  left: 0;
  right: 0;
  box-shadow: 0px 0px 40px 0px rgba(104,109,129,0.75);
  -webkit-box-shadow: 0px 0px 40px 0px rgba(104,109,129,0.75);
  -moz-box-shadow: 0px 0px 40px 0px rgba(104,109,129,0.75);
}

body #cookie-law-info-bar .gdpr_v2_center .gdpr_v2_left_text_full {
  color: #000000;
  font-size: 16px;
}

body #cookie-law-info-bar .gdpr_v2_center .gdpr_v2_left_text_full.desktop {
  display: block !important;
}

body #cookie-law-info-bar .gdpr_v2_center .gdpr_v2_left_text_full.mobile {
  display: none !important;
}

body #cookie-law-info-bar .gdpr_v2_center .gdpr_v2_left_text_full a {
  text-decoration: none;
}

body #cookie-law-info-bar .gdpr_v2_center {
  justify-content: space-between;
}

body #cookie-law-info-bar .gdpr_v2_center .gdpr_v2_left {
  width: auto;
}

body #cookie-law-info-bar .container.gdpr_v2_content {
  height: auto;
  padding: 0;
}

body #cookie-law-info-bar .gdpr_v2_right #wt-cli-accept-all-btn {
  font-size: 14px;
  width: auto;
  height: auto;
  padding: 10px 80px;
  border-radius: 100px;
}

@media (max-width: 1350px) {
  body #cookie-law-info-bar {
    max-width: 820px;
  }
}

@media (max-width: 1279px) {
  .gdpr_v2_left {
    font-size: 15px;
  }
}

@media (max-width: 1200px) {
  .rating-top.star:after {
    top: 0;
    width: 32px;
    height: 31px;
  }

  .tarif {
    padding-top: 51px;
    padding-bottom: 31px;
  }

  .tarif__body {
    margin-top: 30px;
  }

  .tarif .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
  }

  .how__work {
    padding: 40px 0;
  }

  .how__work-description {
    margin-top: 14px;
    font-size: 16px;
  }

  .how__work ul a {
    font-size: 16px;
  }

  .how__work-body {
    gap: 20px;
  }

  .how__work-left {
    padding-left: 0;
    width: calc(60% - 20px);
    background-size: 70%;
    background-position-x: left;
  }

  .how__work-right {
    padding-left: 0;
    width: 40%;
    gap: 25px;
  }

  .how__work-item {
    padding: 22px 110px 15px 31px;
    min-height: 125px;
  }

  .how__work-item:after {
    height: 77px;
  }

  .how__work-item h3 {
    margin-bottom: 2px;
  }

  .how__work-item p {
    font-size: 14px;
    line-height: 135%;
  }

  .stock a.stock-links {
    font-size: 16px;
    padding: 7px;
  }

  .stock-body {
    margin-top: 33px;
  }

  .stock-left {
    padding: 29px 110px 37px 21px;
  }

  .stock-left h3 {
    font-size: 33px;
  }

  .stock-left p {
    font-size: 21px;
    line-height: 26px;
    max-width: 224px;
  }

  .stock-left a {
    margin-top: 168px;
  }

  .promo-banner-lk.stock-left {
    background: url(/wp-content/themes/webbankir/img/v2/lk_promo_stock.png) right bottom / 260px no-repeat, radial-gradient(165.64% 165.25% at 100% 97.18%, #FA00FF 0%, #8248FF 100%);
  }
  .promo-banner-lk.stock-left h3 {
    font-size: 19px;
    line-height: 27px;
    font-weight: 600;
  }
  .promo-banner-lk.stock-left p {
    font-size: 16px;
    line-height: 18.75px;
  }
  .promo-banner-lk.stock-left a {
    margin-top: 24px;
    width: 180px;
    font-size: 14px;
    padding: 12px 14px;
  }

  .stock-right {
    gap: 19px;
  }

  .stock-item {
    padding: 24px 30px 10px 21px;
  }

  .stock-item h3 {
    font-size: 20px;
    line-height: 27px;
    margin-bottom: 7px;
  }

  .stock-item p {
    font-size: 16px;
  }

  .stock-item a {
    font-size: 16px;
    margin-top: 12px;
  }

  .stock-item a::after {
    width: 20px;
  }

  .offer {
    padding-top: 23px;
  }

  .offer-left {
    padding-top: 42px;
    padding-left: 22px;
    padding-bottom: 67px;
  }

  .offer-left h2 {
    margin-bottom: 8px;
  }

  .offer-left p {
    font-size: 16px;
    line-height: 22px;
    max-width: 365px;
  }

  .offer-left ul {
    margin-top: 22px;
    gap: 16px;
  }

  .offer-left ul img {
    width: 73px;
    height: 73px;
  }

  .offer-right img {
    max-width: 468px;
    right: 3px;
    bottom: -1px;
  }

  .why-body {
    padding: 30px 19px;
  }

  .why-left {
    width: 55%;
  }

  .why-left h2 {
    margin-bottom: 4px;
  }

  .why-left p {
    font-size: 16px;
    line-height: 22px;
  }

  .why-right {
    width: 45%;
  }

  .why-top {
    font-size: 29px;
  }

  .why-bottom {
    font-size: 51px;
  }

  .rating .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
  }

  .rating-body {
    margin-top: 15px;
    padding-bottom: 50px;
  }

  .rating .swiper-slide {
    padding: 7px 20px 4px;
  }

  .rating-top {
    font-size: 28px;
    line-height: 120%;
    padding-bottom: 4px;
  }

  .rating-bottom b {
    font-size: 16px;
    line-height: 22px;
  }

  .rating-bottom span {
    font-size: 12px;
  }

  .news {
    padding-top: 10px;
    padding-bottom: 67px;
  }

  .news-head {
    margin-bottom: 24px;
  }

  .news ul a {
    font-size: 16px;
    line-height: 22px;
    padding: 5px;
  }

  .news-body {
    gap: 20px;
  }

  .news-body a.link {
    font-size: 14px;
    line-height: 20px;
  }

  .news-body a.link::after {
    width: 19px;
  }

  .news-body time {
    font-size: 14px;
    line-height: 20px;
  }

  .news-body p {
    font-size: 14px;
  }

  .news-body h4 {
    margin-bottom: 5px;
  }

  .news-left {
    gap: 20px;
    width: calc(60% - 20px);
  }

  .news-text {
    padding-top: 28px;
    width: calc(60% - 20px);
    padding-right: 38px;
  }

  .news-item {
    min-height: 176px;
    padding: 21px 20px 44px 22px;
  }

  .reviews-body {
    gap: 20px;
  }

  .reviews-left {
    width: calc(40% - 20px);
  }

  .reviews-right {
    width: 60%;
    padding-left: 23px;
    padding-top: 22px;
    padding-bottom: 0;
  }

  .reviews-head {
    margin-bottom: 30px;
  }

  .reviews-links a {
    font-size: 16px;
    line-height: 22px;
    padding: 5px;
  }

  .reviews-slider {
    padding-bottom: 40px;
  }

  .reviews-slider .swiper-slide {
    padding: 17px 27px;
  }

  .reviews-slider .slider-top time {
    font-size: 16px;
    line-height: 22px;
  }

  .reviews-slider .slider-left {
    font-size: 16px;
    line-height: 22px;
  }

  .reviews-slider .slider-body {
    font-size: 12px;
    line-height: 135%;
    margin-top: 8px;
  }

  .reviews .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
  }

  .questions-body {
    padding: 42px 0;
    background-size: contain;
  }

  .questions-body h2 {
    font-size: 22px;
    line-height: 30px;
    max-width: 300px;
  }

  .questions-body p {
    font-size: 16px;
    line-height: 22px;
    max-width: 345px;
  }

  .questions-body a.but {
    font-size: 16px;
    line-height: 135%;
    padding: 16px 110px;
  }
}

@media (max-width: 1050px) {
  body #cookie-law-info-bar {
    max-width: 710px;
  }
}

@media (max-width: 1023px) {
  .gdpr_v2_content {
    height: 50px;
  }

  #wt-cli-accept-all-btn {
    width: 179px;
    height: 38px;
    font-size: 14px;
    padding: 6px 12px;
  }

  .gdpr_v2_left .gdpr_v2_left_text_full {
    display: none;
  }

  .gdpr_v2_left .gdpr_v2_left_text_min {
    display: block;
  }

  .loan-button-fixed {
    display: none;
  }

  .single-content {
    margin-bottom: 50px;
  }
}

@media (max-width: 992px) {
  .tarif {
    padding-bottom: 13px;
  }

  .tarif__item {
    min-width: auto;
    padding: 14px 18px 33px;
  }

  .tarif__item.hit:after {
    width: 58px;
  }

  .tarif__item-ico {
    height: 100px;
  }

  .tarif__item-ico img {
    width: auto;
    height: 100px;
    display: block;
  }

  .tarif__item h3 {
    font-size: 24px;
    line-height: 33px;
  }

  .tarif__item-list {
    font-size: 18px;
    line-height: 25px;
  }

  .tarif__item-list.percent small {
    font-size: 12px;
    line-height: 16px;
  }

  .tarif__item-action a {
    font-size: 14px;
    height: 42px;
  }

  .how__work {
    padding: 33px 0;
  }

  .how__work-left {
    width: 50%;
    background-size: 100%;
  }

  .how__work-right {
    width: 50%;
    padding-bottom: 69px;
  }

  .how__work-item {
    padding: 22px 64px 15px 37px;
  }

  .stock {
    padding: 55px 0;
  }

  .stock-left {
    width: 50%;
    padding: 27px 21px 37px 21px;
  }

  .stock-left h3 {
    font-size: 29px;
  }

  .stock-left p {
    font-size: 20px;
    line-height: 26px;
    max-width: 216px;
  }

  .stock-left a {
  }

  .stock-right {
    width: 50%;
  }

  .offer {
    padding-top: 38px;
    padding-bottom: 40px;
  }

  .offer-body {
    gap: 0;
  }

  .offer-left {
    padding-top: 23px;
    padding-bottom: 25px;
    width: 65%;
    padding-right: 65px;
  }

  .offer-right {
    width: 35%;
  }

  .offer-right img {
    max-width: 324px;
    bottom: 0;
  }

  .offer-right img.show-main {
    display: none;
  }

  .offer-right img.show-medium {
    display: block;
  }

  .why-left {
    width: 50%;
  }

  .why-right {
    width: 50%;
    padding-left: 20px;
  }

  .rating {
    padding-bottom: 25px;
  }

  .news {
    padding-bottom: 40px;
  }

  .news-head {
    margin-bottom: 21px;
  }

  .news ul {
    gap: 20px;
  }

  .news-body {
    gap: 30px;
  }

  .news-body h4 {
    margin-bottom: 12px;
  }

  .news-left {
    width: calc(50% - 30px);
  }

  .news-left .news-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-top: 15px;
  }

  .news-img {
    width: calc(40% - 10px);
  }

  .news-text {
    padding-right: 10px;
    padding-top: 33px;
    padding-bottom: 15px;
  }

  .news-right {
    width: 50%;
  }

  .news-item {
    padding: 26px 20px 30px 20px;
  }

  .reviews {
    padding-top: 0;
  }

  .reviews-left {
    width: calc(35% - 20px);
  }

  .reviews-right {
    width: 65%;
    padding-left: 0;
    padding-bottom: 15px;
  }

  .reviews-head {
    padding-top: 14px;
  }

  .questions-body {
    background-position-x: calc(100% + 75px);
  }
}

@media (max-width: 767px) {
  .gdpr_v2_content {
    height: 40px;
  }

  .gdpr_v2_right {
    margin-left: 10px;
  }

  #wt-cli-accept-all-btn {
    width: 80px;
    height: 30px;
    border-radius: 5px;
    font-size: 11px;
    line-height: 18px;
  }

  .tarif {
    padding-top: 15px;
    background-image: none;
  }

  .tarif__body {
    padding-bottom: 45px;
    margin-top: 22px;
  }

  .tarif__item {
    width: 240px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: 30px;
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
  }

  .tarif__item-action {
    width: 200px;
    margin-top: 8px;
  }

  .how__work {
    padding: 20px 0;
  }

  .how__work-description {
    margin-top: 15px;
  }

  .how__work ul {
    margin-top: 7px;
  }

  .how__work-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }

  .how__work-left {
    width: 100%;
    background-image: none;
  }

  .how__work-right {
    width: 100%;
    padding-bottom: 0;
  }

  .how__work-item {
    min-height: auto;
    padding: 19px 64px 21px 23px;
  }

  .how__work-item:after {
    height: 62px;
  }

  .stock {
    padding: 20px 0;
  }

  .stock a.stock-links {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    padding: 10px 25px;
    margin-top: 0;
  }

  .stock-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 14px;
    gap: 20px;
  }

  .stock-left {
    width: 100%;
    padding: 27px 21px 27px 21px;
  }

  .stock-left h3 {
    font-size: 26px;
    line-height: unset;
  }

  .stock-left p {
    font-size: 16px;
    max-width: 180px;
    line-height: unset;
  }

  .stock-left a {
    text-align: center;
    display: block;
    max-width: 220px;
    margin-top: 140px;
    padding: 13px 19px;
  }

  .promo-banner-lk.stock-left {
    background: url(/wp-content/themes/webbankir/img/v2/lk_promo_stock.png) right bottom / 214px no-repeat, radial-gradient(165.64% 165.25% at 100% 97.18%, #FA00FF 0%, #8248FF 100%);
    min-height: 346px;
  }

  .stock-right {
    width: 100%;
  }

  .offer {
    padding-top: 10px;
  }

  .offer-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }

  .offer-left {
    width: 100%;
    padding-right: 20px;
    padding-bottom: 65px;
    border-radius: 25px 25px 0 0;
  }

  .offer-left:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 100%;
    height: 30px;
    background-color: #fff;
  }

  .offer-left ul {
    margin-top: 5px;
    gap: 12px;
  }

  .offer-left ul img {
    width: 138px;
    height: 49px;
  }

  .offer-left-desktop {
    display: none;
  }

  .offer-left-mob {
    display: block;
    padding-top: 27px;
  }

  .offer-left-mob ul {
    justify-content: center;
  }

  .offer-left p {
    max-width: unset;
  }

  .offer-right {
    width: 100%;
    height: 235px;
    border-radius: 25px;
  }

  .offer-right img.show-medium {
    display: none;
  }

  .offer-right img.show-mob {
    display: block;
  }

  #to-top-btn {
    width: 50px;
    height: 50px;
    left: 16px;
  }

  #to-top-btn .icon {
    width: 26px;
  }

  .wbchat-wrapper {
    margin-right: 16px !important;
  }

  .wbchat-wrapper div {
    height: 50px !important;
    width: 50px !important;
    line-height: 50px !important;
  }

  img.wbchat-icon {
    height: 50px !important;
    width: 50px !important;
  }

  .wbchat-menu-item img {
    width: 50px;
  }

  .why-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 27px;
  }

  .why-left {
    width: 100%;
    border-right: none;
    border-bottom: 2px solid #E0EAF4;
    padding-bottom: 15px;
  }

  .why-left h2 {
    margin-bottom: 15px;
  }

  .why-right {
    width: 100%;
    padding-left: 0;
    padding-top: 15px;
  }

  .why-top {
    font-size: 24px;
    line-height: 110%;
    font-weight: 400;
  }

  .why-bottom {
    font-size: 41px;
    line-height: 110%;
  }

  .rating {
    padding-top: 42px;
  }

  .rating-body {
    padding-bottom: 38px;
  }

  .rating .swiper-slide {
    padding-bottom: 6px;
  }

  .rating-bottom {
    padding-top: 1px;
  }

  .rating-bottom b {
    font-size: 12px;
    line-height: 17px;
  }

  .rating-bottom span {
    font-size: 10px;
    line-height: 12px;
  }

  .news {
    padding-top: 5px;
    background-image: none;
    padding-bottom: 30px;
  }

  .news-head {
    margin-bottom: 15px;
  }

  .news ul {
    margin-top: 0;
    gap: 20px;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }

  .news ul a {
    padding: 10px 25px;
  }

  .news-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }

  .news-body p {
    font-size: 16px;
  }

  .news-body h4 {
    margin-bottom: 7px;
    font-size: 18px;
  }

  .news-bottom {
    margin-top: 13px;
  }

  .news-left {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }

  .news-left .news-bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 15px;
  }

  .news-img {
    width: 100%;
    height: 210px;
  }

  .news-text {
    width: 100%;
    padding-top: 0;
    padding-left: 15px;
    padding-right: 15px;
  }

  .news-right {
    width: 100%;
  }

  .news-item {
    padding: 21px 15px 18px 15px;
    min-height: auto;
  }

  .reviews-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0px;
  }

  .reviews-left {
    display: none;
  }

  .reviews-right {
    width: 100%;
    padding-top: 2px;
  }

  .reviews-head {
    margin-bottom: 13px;
  }

  .reviews-links {
    text-align: center;
  }

  .reviews-links a {
    padding: 10px;
    display: inline-block;
  }

  .reviews-slider {
    padding-bottom: 47px;
  }

  .reviews-slider .swiper-slide {
    padding: 23px 24px;
    padding-bottom: 37px;
  }

  .reviews-slider .slider-body {
    font-size: 14px;
    line-height: 16px;
    margin-top: 11px;
  }

  .questions {
    margin-top: 20px;
  }

  .questions-body {
    padding: 30px 0;
    background-image: none;
  }

  .questions-body h2 {
    font-size: 24px;
    line-height: 33px;
    margin-bottom: 10px;
  }

  .questions-body a.but {
    display: block;
    width: 100%;
    max-width: 380px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
  }

  .mobile__message {
    display: block;
  }

  body #cookie-law-info-bar {
    max-width: unset;
    bottom: 36px;
  }

  body #cookie-law-info-bar .gdpr_v2_center {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  body #cookie-law-info-bar .gdpr_v2_center .gdpr_v2_left_text_full.desktop {
    display: none !important;
  }
  
  body #cookie-law-info-bar .gdpr_v2_center .gdpr_v2_left_text_full.mobile,
  body #cookie-law-info-bar .gdpr_v2_center .gdpr_v2_left {
    display: inline-block !important;
  }

  body #cookie-law-info-bar .gdpr_v2_center .gdpr_v2_right {
    display: inline-block;
    margin: 0 0 0 5px !important;
    width: auto;
  }

  body #cookie-law-info-bar .gdpr_v2_center .gdpr_v2_right #wt-cli-accept-all-btn {
    padding: 6px 18px;
    width: auto;
    height: auto;
  }
}

@media (max-width: 650px) {
  body #cookie-law-info-bar {
    padding: 16px 16px;
    bottom: 24px;
  }

  body #cookie-law-info-bar .gdpr_v2_center {
    display: block;
  }

  body #cookie-law-info-bar .gdpr_v2_center .gdpr_v2_right {
    margin-left: 0;
    margin-top: 20px;
    justify-content: center;
  }

  body #cookie-law-info-bar .gdpr_v2_center .gdpr_v2_left_text_full {
    font-size: 14px;
    line-height: 19px;
  }
}

@media (max-width: 585px) {
  body #cookie-law-info-bar {
    bottom: 15px;
  }
}

@media (max-width: 480px) {
  .feedbackAttachList {
    grid-template-columns: repeat(1, 1fr);
  }

  body #cookie-law-info-bar .gdpr_v2_right #wt-cli-accept-all-btn {
    width: 100%;
  }
}

@media (max-width: 413px) {
  .offer .container {
    padding: 0;
  }

  .offer-left {
    padding-left: 15px;
    padding-right: 15px;
  }

  .news ul a {
    padding: 10px;
  }
}

@media (max-width: 413px), (min-width: 768px) and (max-width: 990px) {
  .calc__bottom a.btn {
    font-size: 14px;
  }
  .calc__bottom a.btn.btn-gu img {
    margin-left: 4px;
    height: 17px;
  }
  .calc__bottom .btn.btn-gu {
    margin: 22px 0 12px 0;
  }
  .calc__bottom-wrap {
    margin-top: 23px;
  }
}

@media (max-width: 375px) {
  .promo-banner-lk.stock-left {
    background: url(/wp-content/themes/webbankir/img/v2/lk_promo_stock.png) right -10px bottom -44px / 214px no-repeat, radial-gradient(165.64% 165.25% at 100% 97.18%, #FA00FF 0%, #8248FF 100%);
    min-height: 346px;
  }
  .promo-banner-lk.stock-left a {
    width: 100%;
  }
}

@media (max-width: 350px) {
  body #cookie-law-info-bar {
    bottom: 5px;
  }
}

.button-rating {
  display: inline-block;
  line-height: 16px;
  border-radius: 500px;
  background: #FFDE52;
  color: #1D2431;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  margin-top: 10px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .button-rating {
    font-size: 10px;
    line-height: 14px;
  }
}
