@font-face {
 font-family: "Inter";
 src: url("../fonts/Inter/Inter_18pt-Medium.ttf");
 font-style: normal;
 font-weight: 400;
}
body {
 font-family: Inter;
 background: rgb(242, 243, 251);
}

body:has(#animation-popup) .timer {
 display: none !important;
}
h1 {
 color: rgba(255, 255, 255, 1);
 font-size: 32px;
 font-weight: 600;
 line-height: 39px;
 letter-spacing: 0%;
 text-align: center;
}
h2 {
 color: rgba(171, 193, 255, 1);
 font-size: 16px;
 font-weight: 400;
 line-height: 19px;
 letter-spacing: 0%;
 text-align: center;
}
.header_wrapper {
 background: #1e23ac url(../img/bg.png) no-repeat center;
 background-size: contain;
 padding: 40px 0 80px;
 width: 100%;
 height: 280px;
 position: relative;
 display: flex;
 align-items: flex-start;
 justify-content: center;
 box-sizing: border-box;
}
#feed {
 position: relative;
 z-index: 99;
 top: -80px;
}
#regions-section,
#cities-results {
 display: flex;
 flex-direction: column;
 max-height: 152px;
 overflow-y: scroll;
 padding-left: 20px;
 gap: 8px;
 margin-bottom: 12px;
 max-width: calc(100% - 16px);
}
#current-city {
 color: #b1bad4;
 text-align: center;
 font-size: 14px;
 font-style: normal;
 font-weight: 500;
 line-height: normal;
 text-wrap: nowrap;
}
.city-modal {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background-color: rgba(0, 0, 0, 0.5);
 display: flex;
 justify-content: center;
 align-items: center;
 z-index: 1000;
}

.city-modal__content {
 background-color: white;
 padding: 20px;
 border-radius: 8px;
 width: 90%;
 max-width: 500px;
 max-height: 80vh;
 position: relative;
 display: flex;
 flex-direction: column;
}

.city-modal__close {
 position: absolute;
 right: 15px;
 top: 10px;
 font-size: 28px;
 cursor: pointer;
 color: #999;
}

.city-modal__close:hover {
 color: #333;
}

.city-modal h3 {
 margin-top: 0;
 margin-bottom: 20px;
 text-align: center;
}

#region-search {
 width: 100%;
 padding: 10px;
 font-family: inherit;
 font-size: 1rem;
 -webkit-appearance: none;
 -moz-appearance: none;
 appearance: none;
 outline: none;
 box-sizing: border-box;
 border: 1px solid #cbd5e1;
 border-radius: 6px;
 background: #fff;
 color: #334155;
 margin: 0;
}

#region-search:focus {
 outline: none;
 border-color: #007bff;
}

.regions-list {
 overflow-y: auto;
 max-height: 400px;
}

.region-item,
.city-item {
 padding: 12px;
 cursor: pointer;
 border-bottom: 1px solid #eee;
 transition: background-color 0.2s;
}

.city-item:empty {
 display: none !important;
}

.region-item:hover,
.city-item:hover {
 background-color: #f5f5f5;
}

.region-item:active,
.city-item:active {
 background-color: #e0e0e0;
}

.geolocation {
 position: fixed;
 top: 16px;
 z-index: 99;
 transition: 0.2s;
 max-width: 350px;
 height: auto;
}
.geolocation__vpn-block {
 display: flex;
 align-items: center;
 gap: 8px;
}
.geolocation-city {
 align-items: center;
 gap: 6px;
 padding: 6px 12px;
 box-sizing: border-box;
 cursor: pointer;
}
.geolocation-city__name {
 color: #b1bad4;
 text-align: center;
 font-size: 14px;
 font-style: normal;
 font-weight: 500;
 line-height: normal;
 text-wrap: nowrap;
}

.geolocation-city__list {
 min-width: 290px;
 display: flex;
 flex-direction: column;
 border-radius: 10px;
 background: #ffffff;
 padding: 20px 0;
 box-shadow: 0 4px 16px #0000001a;
 position: relative;
 margin-top: 3.5px;
 z-index: 4;
}

.geolocation-city__list-title {
 display: flex;
 align-items: center;
 justify-content: space-between;
 padding: 0 16px 0 20px;
 box-sizing: border-box;
 margin-bottom: 12px;
}

.geolocation-city__list-title > span {
 color: #000000;
 font-size: 18px;
 font-style: normal;
 font-weight: 600;
 line-height: 22px;
}

.geolocation-city__list-title > img {
 cursor: pointer;
 width: 15px;
 height: 15px;
}

.geolocation-city__list-input {
 padding: 0 16px;
 border-radius: 10px;
 background: #fff;
 display: flex;
 align-items: center;
 gap: 8px;
 max-width: 100%;
 padding: 0 16px 0 20px;
 box-sizing: border-box;
 margin-bottom: 12px;
}

.geolocation-city__list-input__block {
 padding: 0 16px;
 border-radius: 10px;
 border: 1px solid #f2f3fb;
 background: #fff;
 display: flex;
 align-items: center;
 gap: 8px;
 max-width: 100%;
}

.geolocation-city__list-input__block .input {
 width: 100%;
}

.input-text-ui {
 display: flex;
 flex-direction: column;
}

.input-text-ui .p-inputgroup {
 position: relative;
}

.input-text-ui .p-float-label {
 display: block;
 position: relative;
}

.geolocation-city__list-input__block .input .input-text-ui,
.geolocation-city__list-input__block .input .input-text-inp-ui {
 border: unset;
 padding-top: 20px;
}

.input-text-ui .p-float-label > label {
 position: absolute;
 pointer-events: none;
 top: 50%;
 margin-top: -0.5rem;
 left: 0.75rem;
 color: var(--color10);
 transition-property: all;
 transition-timing-function: ease;
 transition-duration: 0.2s;
 line-height: 1;
}

.geolocation-city__list-data {
 display: flex;
 flex-direction: column;
 max-height: 152px;
 overflow-y: scroll;
 padding-left: 20px;
 gap: 8px;
 margin-bottom: 12px;
 max-width: calc(100% - 16px);
}

.geolocation-city__list-data > span {
 color: var(--color5);
 font-size: 14px;
 font-style: normal;
 font-weight: 400;
 line-height: 24px;
}
.cursor {
 transition: 0.2s;
}

.geolocation-city__list-btn.dizable {
 background: var(--color12);
 cursor: default;
}
.animation-overlay {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: rgba(33, 34, 43, 1);
 z-index: 9999;
 display: flex;
 align-items: center;
 justify-content: center;
}

.animation {
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 text-align: center;
 width: 100%;
 overflow: hidden;
 border-radius: 40px;
 background: rgba(255, 255, 255, 1);
 max-width: 650px;
 height: 700px;
 padding: 50px 27px;
 margin: 0 10px;
}
.animation__title {
 color: rgba(1, 1, 1, 1);
 font-size: 48px;
 font-weight: 600;
 line-height: 58px;
 letter-spacing: 0%;
 text-align: center;
}
.animation__sub {
 color: rgba(1, 1, 1, 1);
 font-size: 30px;
 font-weight: 400;
 line-height: 36px;
 letter-spacing: 0%;
 text-align: center;
}

.animation__gifts-wrapper {
 position: relative;
 width: 100%;
 min-height: 320px;
 overflow: hidden;
 background: #ebecf6;
 display: flex;
 justify-content: center;
 align-items: center;
 padding: 60px 0;
 margin: 40px 0;
}
.animation__fixed-bg {
 position: absolute;
 left: 50%;
 top: 50%;
 transform: translate(-50%, -50%);
 width: 220px;
 height: 260px;
 background: #ffffff;
 border-radius: 20px;
 z-index: 0;
 box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}
.animation__gifts,
.animation__gifts-numbers {
 display: flex;
 gap: 100px;
 padding: 30px 0;
 position: relative;
 z-index: 1;
 background: transparent !important;
}

.animation__gifts-numbers {
 display: none;
}

.animation__gift,
.animation__gift-number {
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-self: center;
 background: transparent !important;
 opacity: 0.6;
 transition: opacity 0.3s ease;
 color: rgba(41, 43, 47, 1);
 font-size: 20px;
 font-weight: 600;
 line-height: 24px;
 letter-spacing: 0%;
 text-align: center;
}

.animation__gift-number {
 color: rgba(30, 35, 172, 1);
 font-size: 100px;
 font-weight: 400;
 line-height: 121px;
 text-align: center;
 transition: filter 0.3s ease, transform 0.3s ease;
 filter: blur(4px);
 will-change: filter, transform;
}
.animation__gift.active-center {
 background: rgba(255, 255, 255, 1) !important;
 opacity: 1 !important;
}
.animation__gift img {
 width: 118px;
 height: 118px;
 margin-bottom: 20px;
 border-radius: 10px;
}
.animation__bottom {
 width: 100%;
}
.animation__btn {
 position: relative;
 width: 100%;
 height: 100px;
 margin: 0 auto;
 border-radius: 30px;
 background: rgba(176, 186, 213, 1);
 overflow: hidden;
 display: flex;
 align-items: center;
 justify-content: center;

 color: rgba(255, 255, 255, 1);

 font-size: 24px;
 font-weight: 400;
 line-height: 29px;
 letter-spacing: 0%;
 text-align: center;
 padding: 20px 30px;
}
.button-ui__label:hover,
.button-ui:hover,
.button-ui:focus {
 text-decoration: none;
 color: #fff;
 opacity: 0.7;
}
.choose-more-btn {
 margin: 20px auto;
 box-sizing: border-box;
 border: 2px solid rgba(25, 182, 119, 1);
 border-radius: 20px;
 background: rgba(255, 255, 255, 1);
 color: rgba(25, 182, 119, 1);
 font-size: 24px;
 font-weight: 500;
 line-height: 29px;
 text-align: center;
 cursor: pointer;
 position: absolute;
 bottom: -150px;
 width: 100%;
 height: 87px;
 left: 0;
}
.choose-more-btn img{
 margin-left: 10px;
}
#btn-text {
 z-index: 2;
}
#btn-progress {
 transition: width 0.1s linear;
 will-change: width;
}
.animation__progress {
 position: absolute;
 left: 0;
 top: 0;
 height: 100%;
 background: #1e23ac;
 width: 0%;
 z-index: 1;
}

.timer {
 position: absolute;
 width: 270px;
 left: calc(50% - 136px);
 top: -20px;
 z-index: 3;
 display: flex;
 justify-content: center;
 align-items: center;
 padding: 11px 17px 13px;
 opacity: 1;
 transition: 0.2s;
 background: #ffffff;
 border-radius: 15px;
 box-shadow: 0px 4px 8px 0px rgba(229, 230, 242, 1);
 color: #292b2f;
 text-align: center;
 font-size: 14px;
 font-style: normal;
 font-weight: 600;
 line-height: 14%;
 overflow: hidden;
 transition: all 0.3s ease;
}
.timer.timer--fixed {
 position: fixed !important;
 bottom: 50px !important;
 top: auto !important;
 left: 50% !important;
 transform: translateX(-50%) !important;
 width: 270px !important;
 z-index: 10000 !important;
}
.timer > img {
 margin-right: 10px;
}
.timer__progress {
 position: absolute;
 left: 0;
 top: 0;
 height: 100%;
 background-color: rgba(0, 0, 0, 0.1);
 z-index: -1;
 width: 0%;
 transition: width 0.05s linear;
}

.timer span {
 display: inline-flex;
 margin-left: 5px;
}

.timer span div {
 min-width: 20px;
 text-align: center;
}
.geolocation.geolocation--scrolled {
 height: auto;
 border-radius: 10px;
 background: #fff;
 box-shadow: 0 4px 16px #0000001a;
 gap: 6px;
}

.geolocation.geolocation--scrolled .geolocation-city__name {
 display: none;
}
.geolocation.geolocation--scrolled.is-open .geolocation-city__name {
 display: inline-block;
}
.feed_block {
 padding-top: 50px;
 padding-bottom: 60px;
 border-radius: 70px 70px 0px 0px;
 background: rgba(242, 243, 251, 1);
}
.descrip_feed {
 display: none;
 text-align: center;
 margin: 18px 0 0;
}
.req_succ {
 font-weight: 700;
}
.comp_guarantee {
 font-size: 16px;
}
.one_company {
 display: flex;
 align-items: center;
 justify-content: space-between;
 text-align: center;
 border-radius: 30px;
 background: rgba(255, 255, 255, 1);
 height: 160px;
 padding: 20px 40px 20px;
 max-width: 1140px;
 width: 100%;
 margin: 10px auto 0;
 position: relative;
 cursor: pointer;
}
.one_company > div {
 display: flex;
 align-items: center;
 justify-content: center;
}
.link_wrap {
 position: absolute;
 right: 0;
 bottom: 0;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 display: block;
 border-radius: 10px;
}
.one_company.active_company {
 border-radius: 30px;
 border: 2px solid rgba(25, 182, 119, 1);
}
.one_company.active_company:before,
.show_more a.btn {
 display: block;
 border-radius: 20px;
 text-align: center;
 color: #fff;
 text-transform: uppercase;
}
.one_company.active_company:before {
 padding: 0 20px;
 content: attr(data-attr);
 position: absolute;
 color: rgba(255, 255, 255, 1);
 font-size: 14px;
 font-weight: 800;
 line-height: 17px;
 letter-spacing: 0%;
 text-align: center;
 text-transform: uppercase;
 left: calc(50% - 75px);
 top: 0;
 border-radius: 0px 0px 15px 15px;
 background-color: #19b677;
 width: auto;
 height: 22px;
 display: flex;
 align-items: center;
 justify-content: center;
}
[data-offer-name="metrocredit"] .logo_feed img {
 margin-top: 23px;
}
[data-offer-name="ezaem"] .logo_feed img,
[data-offer-name="lime"] .logo_feed img,
[data-offer-name="zaymer"] .logo_feed img,
[data-offer-name="zaymo"] .logo_feed img {
 margin-top: 3px;
}
[data-offer-name="dozarplati"] .logo_feed img {
 margin-top: 2px;
}
[data-offer-name="turbozaim"] .logo_feed img {
 margin-top: 16px;
}
[data-offer-name="creditplus1"] .logo_feed img {
 margin-top: 20px;
}
[data-offer-name="joymoney"] .logo_feed img {
 margin-top: 22px;
}
[data-offer-name="oneclick"] .logo_feed img {
 margin-top: 5px;
}
[data-offer-name="platiza"] .logo_feed img {
 margin-top: 10px;
}
[data-offer-name="tinkoff"] .logo_feed img {
 width: 91px;
 margin-top: -3px;
}
[data-offer-name="glavfinans"] .logo_feed img {
 margin-top: 14px;
}
[data-offer-name="fastmoney"] .logo_feed img {
 margin-top: 18px;
}
[data-offer-name="smartcredit"] .logo_feed img {
 margin-top: 12px;
}
[data-offer-name="greenmoney"] .logo_feed img {
 margin-top: 6px;
}
[data-offer-name="moneza"] .logo_feed img {
 margin-top: 11px;
}
[data-offer-name="webbankir"] .logo_feed img {
 margin-top: 24px;
}
[data-offer-name="webzaim"] .logo_feed img {
 margin-top: -6px;
}
[data-offer-name="credistar"] .logo_feed img {
 margin-top: 10px;
}
[data-offer-name="migcredit"] .logo_feed img {
 margin-top: 5px;
 width: 100px;
}
[data-offer-name="konga"] .logo_feed img {
 margin-top: 23px;
}
[data-offer-name="zaymigo"] .logo_feed img {
 margin-top: 30px;
}
.info_title {
 color: rgba(41, 43, 47, 1);
 font-size: 24px;
 font-weight: 700;
 line-height: 29px;
 text-align: left;
 margin-left: 30px;
}
.logo_feed {
 width: 260px;
 height: 74px;
 background: no-repeat center center;
 background-size: contain;
}
.content_company .title_comp {
 color: #8b9096;
 text-align: center;
 font-size: 12px;
 font-weight: 400;
 line-height: normal;
 letter-spacing: 2.4px;
 text-transform: uppercase;
 margin-top: 0;
}
.content_company .proc_comp {
 color: #3f4247;
 text-align: center;
 font-size: 16px;
 font-weight: 400;
 line-height: normal;
 margin-top: 5px;
 margin-bottom: 5px;
 text-transform: lowercase;
}
.content_company .proc_comp span {
 color: #3f4247;
 font-size: 24px;
 font-weight: 700;
 line-height: normal;
}
.content_company .descrip_comp {
 color: #3f4247;
 text-align: center;
 font-size: 14px;
 font-weight: 400;
 line-height: normal;
 text-transform: lowercase;
}
.info_company {
 position: relative;
}
.info_company .window_info {
 position: absolute;
 top: 70px;
 left: -33px;
 width: 312px;
 box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.5);
 border: 1px solid #979797;
 border-radius: 13px;
 background-color: #fff;
 display: none;
 z-index: 9999;
}
.info_company .window_info .close_window,
.one_company .give_money a:after,
.one_company .give_money a:before {
 display: none;
}
.info_company .active_window {
 display: block;
}
.info_company .window_info .figure_window {
 width: 24px;
 height: 20px;
 display: inline-block;
 position: absolute;
 top: -38px;
 left: 32px;
 z-index: 9999999999;
 -webkit-clip-path: polygon(0 0, 100% 0, 100% 89%, 0 89%);
 clip-path: polygon(0 0, 100% 0, 100% 89%, 0 89%);
}
.info_company .window_info ul {
 margin: 15px 0;
 padding-left: 35px;
}
.info_company .window_info ul li {
 list-style-type: none;
 text-align: left;
 margin: 5px 0;
 padding-left: 5px;
 position: relative;
 font-size: 16px;
}
.info_company .window_info ul li:before {
 content: " ";
 display: block;
 position: absolute;
 left: -18px;
 top: 6px;
 background-color: #5171f9;
 border-radius: 50%;
 width: 10px;
 height: 10px;
}
.info_company img {
 margin-right: 29px;
 margin-top: 22px;
 cursor: pointer;
 max-width: 24px;
 width: 24px;
}
.show_more {
 margin: 0 auto;
}
.show_more a.btn {
 width: 295px;
 height: 48px;
 margin: 70px auto 0;
 padding: 11px 0;
 text-decoration: none;
}
.one_company .give_money a {
 border-radius: 10px;
 background: #6f58f8;
 width: 200px !important;
 height: 50px;
 font-size: 16px !important;
 color: #fff;
 padding: 15px !important;
 display: flex;
 justify-content: center;
 align-items: center;
 margin-top: 9px;
 text-decoration: none;
 line-height: normal;
 white-space: normal;
 overflow: hidden;
 border: none;
}
.show_mobile {
 display: none;
}
.show_desk {
 display: block;
}
.before_descrip {
 text-align: center;
}
.default_btn {
 background-color: #6f58f8;
}
.give_money a:hover,
.show_more a.btn:hover {
 color: #fff;
}
.modal.offer,
.modal.recommendation {
 overflow-y: scroll;
 background: #020219cc;
}
.modal {
 position: fixed;
 top: 0;
 right: 0;
 bottom: 0;
 left: 0;
 background: #b1bad4;
 display: flex;
 align-items: flex-start;
 justify-content: center;
 transition: 0.2s;
 z-index: 99998;
 animation: opacityIn 0.3s ease;
 overflow-y: auto;
 -webkit-overflow-scrolling: touch;
}
.modal .modal__content {
 border: 2px solid rgba(25, 182, 119, 1);
}
.modal .modal__content.offer,
.modal .modal__content.recommendation {
 max-width: 500px;
 background: var(--color8);
 padding: 30px;
 height: fit-content;
 margin: 68px 0;
}
.modal .modal__content {
 max-width: 620px;
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 position: relative;
 border-radius: 40px;
 background: #fff;
 padding: 40px;
 box-sizing: border-box;
 width: 100%;
 margin: auto;
}
.content__date {
 display: inline-block;
 color: rgba(171, 185, 193, 1);
 font-size: 12px;
 font-weight: 400;
 line-height: 15px;
 text-align: left;
 margin: 10px 0 5px;
}
.content__title {
 color: rgba(41, 43, 47, 1);
 font-size: 30px;
 font-weight: 700;
 line-height: 36px;

 text-align: left;
}
.form__button {
 margin-bottom: 10px;
}
.button-ui {
 border: none;
 height: 60px;
 width: 100%;
 border-radius: 10px;
 background: rgba(25, 182, 119, 1);
 color: rgba(255, 255, 255, 1);
 font-size: 20px;
 font-weight: 600;
 line-height: 24px;
 text-align: center;
}
.form__ord {
 color: rgba(54, 64, 68, 1);
 font-size: 20px;
 font-weight: 500;
 line-height: 24px;
 text-align: left;
 margin-top: 20px;
}
.form__ord ul {
 display: flex;
 flex-wrap: wrap;
 list-style-type: none;
 padding: 0;
 margin-top: 15px;
 margin-bottom: 0;
}
.form__ord ul li {
 width: calc((100% - 20px) / 2);
 color: rgba(54, 64, 68, 1);
 font-size: 16px;
 font-weight: 500;
 line-height: 19px;
 text-align: left;
 margin-bottom: 10px;
}
.form-input-wrap input {
 width: 100%;
 height: 60px;
 color: #000000;
 padding: 20px;
 border: 2px solid rgba(225, 235, 241, 1);
 border-radius: 10px;
 color: rgba(171, 185, 193, 1);

 font-size: 18px;
 font-weight: 400;
 line-height: 22px;
 text-align: left;
 margin-bottom: 6px;
}
.modal__content.sms .content__title {
 text-align: center;
}
.offers {
 width: 100%;
}
.form .offers__count {
 display: flex;
 align-items: center;
 border-radius: 8px;
 gap: 15px;
 padding-top: 20px;
 justify-content: flex-start;
}
.offers__count-text {
 display: flex;
 flex-direction: column;
 align-items: flex-start;
}
.offers__count-value {
 color: rgba(54, 64, 68, 1);
 font-size: 18px;
 font-weight: 600;
 line-height: 22px;
 text-align: left;
}
.offers__count-label {
 color: rgba(54, 64, 68, 1);
 font-size: 14px;
 font-weight: 400;
 line-height: 17px;
 text-align: left;
}
.form .offers__count-item {
 display: flex;
 align-items: center;
 gap: 10px;
 border-radius: 10px;
 background: rgba(225, 235, 241, 1);
 padding: 10px 20px;
}
.offer__progressbar {
 margin-bottom: 10px;
 margin-top: 20px;
}
.offer__progressbar-header {
 display: flex;
 align-items: center;
 justify-content: space-between;
}
.offer__progressbar-text {
 color: rgba(54, 64, 68, 1);
 font-size: 14px;
 font-weight: 500;
 line-height: 17px;
 text-align: left;
}
.offer__progressbar-value {
 color: rgba(171, 185, 193, 1);
 font-size: 14px;
 font-weight: 500;
 line-height: 17px;
 text-align: right;
}
.offer__progressbar-line {
 width: 100%;
 height: 8px;
 background-color: #bbe9d6;
 border-radius: 10px;
 overflow: hidden;
 margin-top: 10px;
}

.line__filling {
 height: 100%;
 background-color: #19b677;
 width: 0%;
 transition: width 0.4s ease;
}

.offer__progressbar-value {
 color: rgba(171, 185, 193, 1);
 font-size: 14px;
 font-weight: 500;
 line-height: 17px;
 text-align: right;
}
.modal-badge-style {
 padding: 0 20px;
 position: absolute;
 color: #fff;
 font-size: 14px;
 font-weight: 800;
 line-height: 17px;
 text-align: center;
 text-transform: uppercase;
 left: 50%;
 transform: translateX(-50%);
 top: 0;
 border-radius: 0px 0px 15px 15px;
 background-color: #19b677;
 width: auto;
 height: 22px;
 display: flex;
 align-items: center;
 justify-content: center;
 z-index: 10;
}
#modal-logo {
 width: 100%;
 height: auto;
 max-height: 150px;
 object-fit: contain;
}
.modal__content_close {
 background: #ffffff;
 width: 64px;
 height: 64px;
 border-radius: 50%;
 padding: 15px;
 position: absolute;
 top: 0;
 right: -16%;
 cursor: pointer;
}
.cursor {
 transition: 0.2s;
}
label {
 position: relative;
}
.checkbox {
 width: 17px;
 height: 17px;
 position: absolute;
 left: 0;
 top: 0;
 opacity: 0;
 transition: none;
}
.checkbox-custom {
 display: inline-block;
 vertical-align: middle;
 padding: 2px;
 margin-right: 4px;
 color: #8b8b8b;
 font-size: 13px;
 font-weight: 400;
 text-align: left;
 white-space: pre-wrap;
 position: relative;
 width: 17px;
 height: 17px;
 cursor: default;
}
.checkbox + .checkbox-custom {
 margin-right: 4px;
 width: 17px;
 height: 17px;
 border: 1px solid #e5e5eb;
 border-radius: 3px;
 background: #fff;
 flex-shrink: 0;
}
input#region-search,
input#region-search::placeholder {
 color: rgba(171, 185, 193, 1);
 font-size: 18px;
 font-weight: 400;
 line-height: 22px;
 text-align: left;
}
input::placeholder {
 color: rgba(171, 185, 193, 1);
 font-size: 18px;
 font-weight: 400;
 line-height: 22px;
 text-align: left;
}
input.sms-input::placeholder {
 text-align: center;
}
input[type="checkbox"]:checked + .checkbox-custom::before {
 content: " ";
 display: block;
 position: absolute;
 left: -1px;
 top: -1px;
 width: 17px;
 height: 17px;
 background: #e1ebf1 no-repeat center;
 background-image: url(../img/ic_tick.svg);
 border-radius: 4px;
 text-align: center;
 color: #fff;
 font-size: 14px;
 font-weight: 300;
 line-height: 1.5;
}
.adv__info p,
.adv__info span {
 color: rgba(171, 189, 193, 1);
 font-size: 10px;
 font-weight: 500;
 line-height: 12px;
 text-align: left;
 margin: 5px 0;
}
.agreement {
 color: rgba(171, 189, 193, 1);
 font-size: 10px;
 font-weight: 500;
 line-height: 12px;
 letter-spacing: 0%;
 text-align: left;
}
.sms-code-wrapper {
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
}
.sms-code-wrapper a {
 display: inline-flex;
 color: rgba(172, 172, 172, 1);
 font-size: 16px;
 font-weight: 500;
 line-height: 19px;
 text-align: center;
 text-decoration-line: underline;
 margin: 10px 0 20px;
}
.sms-code-wrapper p {
 color: rgba(54, 64, 68, 1);
 font-size: 20px;
 font-weight: 500;
 line-height: 24px;
 text-align: center;
 margin: 0;
}
.sms-sub {
 display: inline-flex;
 color: rgba(54, 64, 68, 1);
 font-size: 16px;
 font-weight: 500;
 line-height: 19px;
 letter-spacing: 0%;
 text-align: center;
 margin-bottom: 10px;
}
.sms-inputs {
 display: flex;
 justify-content: center;
 gap: 12px;
 margin: 20px 0;
}

.sms-input {
 width: 60px;
 height: 60px;
 border: 2px solid rgba(226, 226, 226, 1);
 border-radius: 10px;
 text-align: center;
 font-size: 24px;
 font-weight: bold;
 color: #333;
 outline: none;
 transition: border-color 0.2s;
}

.sms-input:focus {
 border-color: #19b677;
}

.phone-customer {
 color: rgba(0, 86, 206, 1);
 font-size: 20px;
 font-weight: 500;
 line-height: 24px;

 text-align: center;
}
.sms-input::-webkit-outer-spin-button,
.sms-input::-webkit-inner-spin-button {
 -webkit-appearance: none;
 margin: 0;
}
.sms .adv__info {
 display: none;
}
.sms-code-title {
 text-align: center;
 font-weight: 600;
}
.sms-resend {
 text-align: center;
 font-size: 14px;
 color: #888;
 margin-top: 10px;
}
.hide-offer-btn {
 display: flex;
 margin-top: 20px;
 background: none;
 border: none;
 color: #19b677;
 font-weight: bold;
}
.success-wrapper {
 display: flex;
 text-align: center;
 flex-direction: column;
 align-items: center;
 justify-content: center;
}
@media (max-width: 1366px) {
 .one_company {
  width: 92%;
  max-width: 670px;
 }
}
@media (max-width: 1200px) {
 .one_company {
  padding: 40px;
 }
}
@media (max-width: 995px) {
 .one_company {
  height: auto;
  width: 95%;
  max-width: 670px;
  padding: 40px 25px;
 }
 .one_company div {
  padding: 0;
 }
 #webzaim .logo_feed img {
  margin-top: 0;
 }
 .modal__content_close {
  right: 0;
  background: transparent;
 }
 .info_company {
  position: relative;
  right: 32px;
  top: -29px;
 }
 .info_company img {
  position: absolute;
  z-index: 999;
 }
 .info_company .window_info .close_window img {
  position: static;
  width: 12px;
  margin: 0;
 }
 .info_company .window_info {
  top: 13px;
  left: 32px;
  width: 100%;
 }
 .content_company .title_comp {
  height: 12px;
  margin-bottom: 16px;
 }
 .give_money a {
  width: 85%;
 }
 .info_company .window_info .close_window {
  display: block;
  position: absolute;
  right: 0;
  top: 5px;
  padding-bottom: 17px;
  padding-left: 10px;
  width: 50px;
  height: 50px;
  z-index: 999999;
 }
}
@media (max-width: 991px) and (min-width: 768px) {
 .info_company {
  text-align: right;
  top: 0;
 }
 .info_company .window_info {
  width: 294px;
 }
 .info_company .window_info .close_window {
  right: 10px;
 }
 .one_company div {
  position: static;
  max-width: 100%;
 }
 .one_company .info_company {
  position: absolute;
  text-align: right;
  right: 40px;
  top: 0;
 }
 .info_company .window_info {
  left: auto;
  min-width: 300px;
  right: -36px;
 }
}
@media (min-width: 992px) and (max-width: 1366px) {
 .one_company {
  max-width: 100%;
 }
}
@media (max-width: 997px) {
 .info_company .window_info .figure_window {
  display: none;
 }
}
@media (max-width: 995px) {
 .one_company .give_money a {
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
 }
}
@media (max-width: 767px) {
 .content {
  display: none;
 }
 .header_wrapper {
 background: #1e23ac url(../img/bg_mob.png) no-repeat center;
 background-size: contain;
}
 .offer__progressbar {
  margin-top: 0;
 }
 .logo_feed {
  width: 70px;
  height: 70px;
  background-size: contain;
 }
 .show_mobile {
  display: block;
 }
 .show_desk {
  display: none;
 }
 .modal.offer {
  position: static !important;
  width: 100% !important;
  height: auto !important;
  background: #ffffff !important;
  overflow: visible !important;
  z-index: 1 !important;
  animation: none !important;
 }

 .modal.offer::before {
  display: none !important;
 }

 .modal.offer .modal__content {
  position: static !important;
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 17px !important;
  border-radius: 0 0 30px 30px !important; /* Скругляем только низ */
  border: none;
  border-top: none; /* Чтобы сливалось с карточкой */
  box-shadow: none !important;
 }
 .modal.offer {
  display: none !important;
 }
 .accordion .modal.offer {
  /* если используешь класс для открытия */
  display: block !important;
 }
 /* 4. Скрываем крестик закрытия (аккордеон закрывается кликом по карточке) */
 .modal__content_close {
  display: none !important;
 }

 /* 5. Убираем внешние отступы у формы */
 .modal.modal_content.offer {
  margin: 0 !important;
 }
 .modal-badge-style,
 .content__img {
  display: none;
 }
 .offer-wrapper.accordion {
  width: 95%;
  max-width: 670px;
  margin: 10px auto;
  border: 2px solid rgba(25, 182, 119, 1);
  border-radius: 30px;
 }
 .modal.offer {
  border-radius: 30px 30px;
 }
 .accordion .active_company {
  border: none;
 }
 .accordion .one_company {
  background: #fff;
  margin: 0;
  width: 100%;
  border-radius: 30px 30px 0 0;
  padding: 30px 17px 0;
 }
 .offers__count-item img {
  width: 18px;
  height: 21px;
 }
 .offers__count-value {
  font-size: 12px;
  font-weight: 600;
  line-height: 15px;
 }
 .offers__count-label {
  font-size: 8px;
  font-weight: 400;
  line-height: 10px;
 }
 .form .offers__count-item {
  padding: 5px 10px;
 }
 .hide-offer-btn {
  width: 100%;
  max-width: 180px;
  color: rgba(54, 64, 68, 1);
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  text-align: center;
  text-decoration-line: underline;
  background: url(../img/arrow_top.svg) no-repeat right center;
  margin: 20px auto 0;
 }
 .success-wrapper {
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
 }
}
@media (max-width: 479px) {
 h1 {
  font-size: 30px;
  font-weight: 600;
  line-height: 36px;
 }
 h2 {
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
 }
 .active_company:before {
  border-radius: 0px 0px 13px 13px;
  font-size: 12px;
  font-weight: 800;
  line-height: 15px;
 }
 .one_company {
  padding: 10px 30px 10px;
  border-radius: 20px;
 }
 .offer__progressbar-text {
  font-size: 10px;
  font-weight: 500;
  line-height: 12px;
  text-align: left;
 }
 .timer {
  position: fixed !important;
  bottom: 20px !important;
  top: auto !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 260px !important;
  z-index: 10000 !important;
 }
 .info_img {
  width: 30px;
  height: 30px;
 }
 .info_title {
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
 }
 .logo_feed {
  width: 70px;
  height: 70px;
  background-size: contain;
 }
 .header_wrapper {
  padding: 0;
  height: 220px;
  align-items: center;
 }
 #feed {
  top: -40px;
 }
 .feed_block {
  padding-top: 7px;
  border-radius: 40px 40px 0px 0px;
 }
 .content_company .proc_comp span {
  font-size: 16px;
 }
 .animation {
  max-height: 600px;
  padding: 30px 0;
 }
 .animation__btn {
  width: 90%;
  height: 80px;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
 }
 .animation__title {
  font-size: 36px;
  font-weight: 600;
  line-height: 44px;
 }
 .animation__sub {
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
 }
}
.rtb,
.rtbm {
 margin-top: 30px;
}
