/*Дэфолтные настройки*/
* {
    box-sizing: border-box;
}
*:hover{
    transition: 0.3s;
}
ul li{
    list-style: none;
}
html, body {
    margin: 0;
    position: relative;
    height: 100%;
    scroll-behavior: smooth;
}
body{
    overflow-x: clip;
}
h1,h2,h3,h4,h5,p,li,ul{
    margin: 0;
    padding: 0;
    transition: 0.3s;
}
ul{
    padding: 0;
    margin: 0;
}
body {
    font-family: "Inter", sans-serif;
    padding: 0;
    margin: 0;
    background: #FFFFFF;
    color: #161412;
}
h1,h2,h3,h4,h5{
    font-family: "Poppins", sans-serif !important;
}
a {
    color: #161412;
    text-decoration: none;
    transition: 0.3s;
}
a:hover:after,
a:focus:after {
    width: 100%;
}
.container {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
    padding: 0;
    position: relative;
}
input, textarea {
    outline:none;
    font-family: "Inter", sans-serif;
}
input::placeholder, textarea::placeholder{
    font-family: "Inter", sans-serif;
}
input:active, textarea:active {outline:none;}
:focus {outline:none;}
textarea {resize:none;}
textarea {resize:vertical;}
textarea {resize:horizontal;}
button:active, button:focus {
    outline: none;
}
button::-moz-focus-inner {
    border: 0;
}
button{
    cursor: pointer;
    border: none;
    font-family: "Inter", sans-serif;
}
/*Дэфолтные настройки*/
.onb {
    width: 100%;
    height: 100vh;
    display: flex;
    background: #fff;
}
.onb__media {
    width: 40%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: #ddd;
}
.onb__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.onb__content {
    width: 60%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.onb__box {
    width: 100%;
    max-width: 571px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-top: 20%;
    padding-bottom: 60px;
}
.onb__step {
    display: none;
    width: 100%;
    text-align: center;
    animation: onbFade .35s ease;
}
.onb__step.is-active {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
@keyframes onbFade {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.onb__title {
    font-size: 32px;
    color: #28292A;
    text-align: center;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.onb__text {
    color: rgba(0, 0, 0, 0.80);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 28px */
}
.onb__field {
    width: 100%;
    margin-top: 20px;
}
.onb__input {
    width: 100%;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #FFF;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.07);
    height: 54px;
    padding: 12px 20px;
    font-size: 16px;
    color: #000;
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 137.5% */
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.onb__input::placeholder{
    color: rgba(0, 0, 0, 0.60);
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 137.5% */
}
.onb__input:focus {
    border-color: #11c37c;
    box-shadow: 0 0 0 3px rgba(17, 195, 124, 0.12);
}
.onb__textarea {
    width: 100%;
    min-height: 110px;
    border: 1px solid #dcdcdc;
    border-radius: 12px;
    background: #fff;
    padding: 14px 16px;
    font-size: 16px;
    color: #222;
    resize: vertical;
    outline: none;
}
.onb__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    color: #555;
    font-size: 14px;
    line-height: 1.45;
    cursor: pointer;
}
.onb__checkbox span{
    color: rgba(0, 0, 0, 0.80);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 16.8px */
}
.onb__checkbox input {
    accent-color: #11c37c;
    margin-top: 5px;
}
.onb__sms {
    display: flex;
    justify-content: center;
    gap: 12px;
}
.onb__sms-input {
    width: 58px;
    height: 62px;

    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #FFF;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.07);
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.onb__sms-input:focus {
    border-color: #11c37c;
    box-shadow: 0 0 0 3px rgba(17, 195, 124, 0.12);
}
.onb__error {
    min-height: 20px;
    margin-top: 10px;
    font-size: 13px;
    color: #e04c4c;
}
.onb__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.onb__btn {
    border: none;
    border-radius: 24px;
    background: #04C779;
    display: flex;
    padding: 15px 60px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    cursor: pointer;
    transition: transform .2s ease, opacity .2s ease, background .2s ease;
}
.onb__btn:disabled {
    opacity: .45;
    cursor: not-allowed;
    transform: none;
}
.onb__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}
.onb__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #cfeedd;
    transition: transform .2s ease, background .2s ease;
}
.onb__dot.is-active {
    background: #10c277;
    transform: scale(1.05);
}
.onb__btn:disabled {
    background: #5E5E5E;
    cursor: not-allowed;
    transform: none;
    opacity: 1;
}
.flex-onb__fieldInput{
    width: 100%;
}
.regAfter{
    color: #434445;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.logoHeader{
    height: 25px;
}
header{
    width: 100%;
    z-index: 10;
    position: fixed;
    top: 0;
    background: #FFFFFF;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.05);
}
.flexHeaderLinks{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.flexHeaderLinks a{
    display: flex;
    align-items: center;
    position: relative;
    gap: 10px;
    color: #292D32;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.messageHeaderCircle{
    position: absolute;
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 400;
    font-size: 10px;
    line-height: 100%;
    background: #04C779;
    border-radius: 50%;
    color: #FFFFFF;
    top: -2px;
    left: -2px;
}
.rightHeader{
    display: flex;
    align-items: center;
    gap: 50px;
}
.topInformationPage{
    padding-top: 20px;
    width: 100%;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.flex-topInformationPage{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.sectionLKMain{
    padding-top: 56px;
    padding-bottom: 40px;
}
.text-flex-topInformationPage{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.text-flex-topInformationPage h4{
    color: #28292A;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.text-flex-topInformationPage p{
    color: #323232;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}
.mapContentFlex{
    height: 80vh;
    width: 100%;
    position: relative;
}
.topInformationPage{
    margin-bottom: 30px;
}
.textOnMap{
    position: absolute;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #FFF;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.07);
    display: flex;
    max-width: 500px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 90%;
    color: rgba(0, 0, 0, 0.80);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 22.4px */
}
.redMassage-flexLentaNews{
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: rgba(255, 0, 0, 0.10);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.07);
    padding: 12px 15px;
}
.flexLentaNews{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    width: 100%;
}
.wrapper-flexLentaNews{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
}
.block-wrapper-flexLentaNews{
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #FFF;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 15px;
}
.title-block-wrapper-flexLentaNews-photo{
    width: 45px;
    height: 45px;
    border-radius: 100%;
}
.title-block-wrapper-flexLentaNews{
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.title-block-wrapper-flexLentaNews h4{
    color: #28292A;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.title-block-wrapper-flexLentaNews p{
    color: #323232;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}
.text-block-wrapper-flexLentaNews{
    color: rgba(0, 0, 0, 0.80);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 19.6px */
}
.btn-flexBTN-block-wrapper-flexLentaNews{
    display: flex;
    align-items: center;
    gap: 5px;
    color: #080808;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 14.4px */
}
.flexBTN-block-wrapper-flexLentaNews{
    display: flex;
    align-items: center;
    gap: 10px;
}

.sos-demo {
    min-height: 200vh;
    padding: 24px;
}
.sos-fab {
    position: fixed;
    right: 30px;
    bottom: 64px;
    z-index: 1000;
}
.sos-fab__menu {
    position: absolute;
    right: 0;
    bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    pointer-events: none;
}
.sos-fab__item {
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #FFE5E5;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.07);
    display: flex;
    padding: 10px 15px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    color: #080808;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 16.8px */
    min-width: 170px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(16px) scale(0.96);
    transition:
            opacity 0.22s ease,
            transform 0.22s ease,
            background 0.2s ease;
}
.sos-fab__item:hover {
    background: #ecd0d0;
}
.sos-fab.is-open .sos-fab__menu {
    pointer-events: auto;
}
.sos-fab.is-open .sos-fab__item {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.sos-fab.is-open .sos-fab__item:nth-child(1) {
    transition-delay: 0.02s;
}
.sos-fab.is-open .sos-fab__item:nth-child(2) {
    transition-delay: 0.05s;
}
.sos-fab.is-open .sos-fab__item:nth-child(3) {
    transition-delay: 0.08s;
}
.sos-fab.is-open .sos-fab__item:nth-child(4) {
    transition-delay: 0.11s;
}
.sos-fab.is-open .sos-fab__item:nth-child(5) {
    transition-delay: 0.15s;
}
.sos-fab.is-open .sos-fab__item:nth-child(6) {
    transition-delay: 0.19s;
}
.sos-fab__main {
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    background: #F00;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.07);
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.btnBack{
    display: flex;
    align-items: center;
    justify-content: center;
}


.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(000, 000, 000, 0.4);
    backdrop-filter: blur(5px);
}
.modal-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    background: #FFF;
    display: flex;
    width: 390px;
    padding: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.07);
}
.modalContent{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}
.modalContent h4{
    color: #28292A;
    text-align: center;
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.modalContent p{
    color: rgba(0, 0, 0, 0.80);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 19.6px */
}
.flexBtnModal{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    justify-content: center;
    width: 100%;
}
.btnModal{
    border-radius: 24px;
    background: #36C07E;
    display: flex;
    width: fit-content;
    padding: 10px 45px;
    color: #FFF;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.close1{
    color: #28292A;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.swipe-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    user-select: none;
    width: 100%;
}
.swipe-item__actions {
    position: absolute;
    inset: 0 0 0 auto;
    display: flex;
    justify-content: flex-end;
    height: 100%;
    align-items: center;
    gap: 5px;
}
.swipe-item__btn {
    width: 80px;
    height: 65px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    border: none;
    color: #fff;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border-radius: 10px;
    cursor: pointer;
}
.swipe-item__btn--mute {
    background: #FFB956;
}
.swipe-item__btn--delete {
    background: #F00;
}
.swipe-item__content {
    position: relative;
    z-index: 2;
    background: #FFFFFF;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.07);
    display: flex;
    padding: 10px;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.25s ease;
    touch-action: pan-y;
    cursor: grab;
    height: 66px;
}
.swipe-item__content.is-dragging {
    transition: none;
    cursor: grabbing;
}
.left-swipe-item__contentPhoto{
    width: 45px;
    height: 45px;
    border-radius: 50%;
}
.text-left-swipe-item__content{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}
.text-left-swipe-item__content h4{
    color: #28292A;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    font-family: "Inter", sans-serif !important;
}
.text-left-swipe-item__content p{
    color: #666;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.left-swipe-item__content{
    display: flex;
    align-items: center;
    gap: 10px;
}
.circleMassage-swipe-item__content{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 9.5px;
    background: #36C07E;
    width: 27px;
    height: 19px;
    padding: 2px 9px 2px 10px;
    gap: 10px;
    color: #FFF;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.title-block-wrapper-flexLentaNews-photo-2{
    border-radius: 50%;
    width: 30px;
    height: 30px;
}
.right-block-wrapper-flexLentaNewsV2{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}
.right-block-wrapper-flexLentaNewsV2 h4{
    color: #28292A;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.right-block-wrapper-flexLentaNewsV2 p{
    color: rgba(0, 0, 0, 0.80);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 19.6px */
}
.flex-right-block-wrapper-flexLentaNewsV2{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}
.flex-right-block-wrapper-flexLentaNewsV2 a{
    color: #323232;
    text-align: right;
    font-size: 10px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}
.flex-right-block-wrapper-flexLentaNewsV2 span{
    color: #323232;
    text-align: right;
    font-size: 10px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}
.block-wrapper-flexLentaNewsV2{
    display: flex;
    align-items: flex-end;
    gap: 10px;
    width: 100%;
}
.block-wrapper-flexLentaNewsV2_2{
    justify-content: right;
}
.block-wrapper-flexLentaNewsV2_2 .right-block-wrapper-flexLentaNewsV2 p{
    text-align: right;
}
.right-block-wrapper-flexLentaNewsV2_2{
    align-items: flex-end;
}
.block-wrapper-flexLentaNewsV2_2 .right-block-wrapper-flexLentaNewsV2 h4{
    text-align: right;
}
.flex-right-block-wrapper-flexLentaNewsV2_2{
    justify-content: right;
}
.wrapper-flexLentaNewsComments{
    max-height: 70vh;
    overflow-y: scroll;
}



.input-send {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}
.input-send input {
    width: 100%;
    color: rgba(0, 0, 0, 1);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 137.5% */
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #FFF;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.07);
    height: 46px;
    padding: 12px 20px;
}
.input-send input::placeholder {
    color: rgba(0, 0, 0, 0.60);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 137.5% */
}
.input-send button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%) scale(0.8);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: none;
    background: #10c277;
    color: #fff;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: 0.2s ease;
}
.input-send.active button {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-50%) scale(1);
}
.block-flexSupportText{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.07);
    width: fit-content;
    min-width: 270px;
    padding: 20px;
}
.block-flexSupportText h4{
    color: #28292A;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.block-flexSupportText p{
    color: #323232;
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.flexSupport{
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 65vh;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.block-flexSupportText h5{
    color: #323232;
    text-align: center;
    font-family: "Inter", sans-serif !important;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.block-flexSupportText span{
    color: #666;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 16.8px */
}
.flex-input-send{
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

/* === WRAPPER === */
.attach-menu {
    position: relative;
    display: inline-block;
}
/* === BUTTON === */
.attach-menu__trigger {
    cursor: pointer;
    display: flex;
    width: 46px;
    height: 46px;
    padding: 12px 20px;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #FFF;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.07);
}
/* === PANEL === */
.attach-menu__panel {
    position: absolute;
    left: 0;
    bottom: calc(100% + 10px);
    width: 172px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    pointer-events: none;
    transition: 0.25s ease;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #FFF;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
/* OPEN STATE */
.attach-menu.is-open .attach-menu__panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
/* === ITEMS === */
.attach-menu__item {
    width: 100%;
    color: #080808;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 16.8px */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #e0cfcf;
    background: #FFFFFF;
}
.attach-menu__item:last-child {
    border-bottom: none;
}
.voiceInput{
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #FFF;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.07);
    display: flex;
    width: 46px;
    height: 46px;
    padding: 12px 20px;
    justify-content: center;
    align-items: center;
}
.photo-textMessagePeople{
    height: 159px;
    border-radius: 10px;
}
.block-messagePeople{
    display: flex;
    align-items: flex-end;
    gap: 15px;
}
.textMessagePeople{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
.text-textMessagePeople{
    position: relative;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    width: 288px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #FFF;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.07);
}
.text-textMessagePeople h4{
    color: #28292A;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.text-textMessagePeople p{
    color: rgba(0, 0, 0, 0.80);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 19.6px */
}
.text-textMessagePeople span{
    color: #323232;
    text-align: right;
    font-size: 10px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    position: absolute;
    right: 10px;
    bottom: 10px;
}
.chatAllRooms{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}
.text-textMessagePeople-2{
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: rgba(31, 245, 38, 0.15);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.07);
}
.block-messagePeople-2{
    width: 100%;
    justify-content: right;
    display: flex;
}
.chatAllRooms{
    width: 100%;
    max-height: 66vh;
    overflow-y: scroll;
}
.top-editProfileContent{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 30px;
}
.cancelActionProfile{
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 137.5% */
}
.readyActionProfile{
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 137.5% */
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.07);
    display: flex;
    padding: 6px 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.photoProfile{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.photoProfile a{
    color: #616161;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.photoProfile{
    margin-bottom: 30px;
}
.onb__field span{
    color: #616161;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.flexInputsEditProfile{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
}
.flexInputsEditProfile .onb__field{
    margin-top: 0;
}
.logOUTaccount{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #F00;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 137.5% */
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.07);
    padding: 12px 20px;
}
.photoProfile p{
    color: #28292A;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.blockProfile{
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #FFF;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.07);
    padding: 20px;
    width: 100%;
    color: #28292A;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px; /* 137.5% */
}
.flexWrapperNotification{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    gap: 50px;
}
.blockFlex-flexWrapperNotification{
    display: flex;
    align-items: flex-start;
    width: 100%;
    gap: 15px;
    flex-direction: column;
}
.line-blockFlex-flexWrapperNotification{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.line-blockFlex-flexWrapperNotification span{
    color: #616161;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.blockNotificationColumn__img{
    height: 25px;
    width: 25px;
    border-radius: 50%;
}
.ui-switch {
    display: inline-block;
}
.ui-switch__input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.ui-switch__track {
    position: relative;
    display: block;
    width: 45px;
    height: 25px;
    border-radius: 999px;
    background: #6f6f6f;
    cursor: pointer;
    transition: background 0.25s ease;
}
.ui-switch__thumb {
    position: absolute;
    top: 2.5px;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ececec;
    transition: transform 0.25s ease;
}
.ui-switch__input:checked + .ui-switch__track {
    background: #3fc27a;
}
.ui-switch__input:checked + .ui-switch__track .ui-switch__thumb {
    transform: translateX(19px);
}
.blockNotificationColumn{
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.07);
    padding: 12px 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.flexLeft-blockNotificationColumn{
    display: flex;
    align-items: center;
    gap: 10px;
}
.infoInviteBlock{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
}
.infoInviteBlock h4{
    color: #28292A;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.phone-invite {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}
.phone-invite input {
    width: 100%;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #FFF;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.07);
    height: 54px;
    padding: 12px 20px;
    font-size: 16px;
    color: #000;
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 137.5% */
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.onb__input::placeholder{
    color: rgba(0, 0, 0, 0.60);
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 137.5% */
}
.phone-invite button {
    border: none;
    border-radius: 24px;
    background: #04C779;
    display: flex;
    padding: 15px 60px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    cursor: pointer;
    transition: transform .2s ease, opacity .2s ease, background .2s ease;
}
/* disabled */
.phone-invite button:disabled {
    background: #5E5E5E;
    cursor: not-allowed;
}
.phone-invite{
    width: 100%;
}
.chatAllRooms{
    position: relative;
}
.topMoneyInfoAbsolute{
    position: sticky;
    top: 0;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #CEF4D8;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.07);
    display: flex;
    width: 100%;
    padding: 10px 15px;
    justify-content: space-between;
    align-items: center;
}
.left-topMoneyInfoAbsolute h2{
    color: #28292A;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.left-topMoneyInfoAbsolute{
    display: flex;
    align-items: center;
    gap: 10px;
}
.left-topMoneyInfoAbsolute p{
    color: #28292A;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.plusMoneyBTN{
    display: flex;
    align-items: center;
    justify-content: center;
}
.block-flexSupportText__second{
    max-width: 500px;
}

/* === UI polish pass === */
:root {
    --color-bg: #f6f8f7;
    --color-surface: #ffffff;
    --color-surface-muted: #eef4f1;
    --color-text: #1f2933;
    --color-text-soft: #52616b;
    --color-muted: #7b8794;
    --color-border: #dce5e1;
    --color-brand: #278a63;
    --color-brand-strong: #15724f;
    --color-danger: #d93636;
    --color-danger-soft: #fff0f0;
    --color-warning: #b87512;
    --shadow-card: 0 8px 24px rgba(31, 41, 51, 0.06);
    --shadow-nav: 0 10px 30px rgba(31, 41, 51, 0.08);
    --radius: 8px;
}

html {
    background: var(--color-bg);
}

body {
    background: var(--color-bg);
    color: var(--color-text);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a,
button {
    -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(39, 138, 99, 0.24);
    outline-offset: 2px;
}

.container {
    max-width: 980px;
    padding-left: 24px;
    padding-right: 24px;
}

header {
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-nav);
    backdrop-filter: blur(16px);
    padding: 13px 0;
}

.logoHeader {
    height: 24px;
    opacity: 0.9;
}

.rightHeader {
    gap: 10px;
}

.flexHeaderLinks a {
    min-height: 40px;
    border-radius: var(--radius);
    padding: 8px 12px;
    color: var(--color-text-soft);
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.flexHeaderLinks a:hover {
    background: var(--color-surface-muted);
    color: var(--color-text);
}

.flexHeaderLinks a[style*="36C07E"] {
    color: var(--color-brand) !important;
    background: rgba(39, 138, 99, 0.1);
}

.messageHeaderCircle,
.circleMassage-swipe-item__content {
    background: var(--color-brand);
}

.sectionLKMain {
    padding-top: 64px;
}

.topInformationPage {
    margin-bottom: 24px;
    padding-top: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-border);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0));
}

.text-flex-topInformationPage h4 {
    color: var(--color-text);
    letter-spacing: 0;
}

.text-flex-topInformationPage p,
.title-block-wrapper-flexLentaNews p,
.right-block-wrapper-flexLentaNewsV2 h4,
.right-block-wrapper-flexLentaNewsV2 span,
.flex-right-block-wrapper-flexLentaNewsV2 a,
.flex-right-block-wrapper-flexLentaNewsV2 span {
    color: var(--color-muted);
}

.btnBack {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
}

.btnBack:not([style*="opacity: 0"]):hover {
    background: var(--color-surface-muted);
}

.btnBack img {
    max-width: 38px;
    max-height: 38px;
}

.flexLentaNews {
    gap: 22px;
}

.wrapper-flexLentaNews {
    gap: 16px;
}

.redMassage-flexLentaNews {
    align-items: center;
    border: 1px solid #ffd0d0;
    border-left: 4px solid var(--color-danger);
    background: var(--color-danger-soft);
    box-shadow: none;
    border-radius: var(--radius);
    padding: 14px 16px;
}

.redMassage-flexLentaNews p {
    color: #5a1f1f;
    font-weight: 500;
    line-height: 1.45;
}

.redMassage-flexLentaNews img {
    flex: 0 0 auto;
}

.block-wrapper-flexLentaNews,
.swipe-item__content,
.block-flexSupportText,
.text-textMessagePeople,
.text-textMessagePeople-2,
.blockWrapperNotification,
.blockProfile,
.logOUTaccount,
.readyActionProfile,
.onb__input,
.onb__sms-input,
.input-send input,
.attach-menu__trigger,
.attach-menu__panel,
.voiceInput,
.modal-content,
.textOnMap,
.topMoneyInfoAbsolute {
    border-color: var(--color-border) !important;
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow-card) !important;
    background-color: var(--color-surface);
}

.block-wrapper-flexLentaNews {
    gap: 12px;
    padding: 18px;
}

.title-block-wrapper-flexLentaNews {
    align-items: center;
    gap: 12px;
}

.title-block-wrapper-flexLentaNews-photo,
.left-swipe-item__contentPhoto,
.title-block-wrapper-flexLentaNews-photo-2,
.photoProfile__img,
.blockNotificationColumn__img {
    object-fit: cover;
    background: var(--color-surface-muted);
    box-shadow: inset 0 0 0 1px rgba(31, 41, 51, 0.06);
}

.title-block-wrapper-flexLentaNews h4,
.text-left-swipe-item__content h4,
.block-flexSupportText h4,
.modalContent h4,
.photoProfile p,
.blockProfile {
    color: var(--color-text);
}

.text-block-wrapper-flexLentaNews,
.right-block-wrapper-flexLentaNewsV2 p,
.text-textMessagePeople p,
.modalContent p,
.block-flexSupportText p {
    color: var(--color-text-soft);
    line-height: 1.5;
}

.flexBTN-block-wrapper-flexLentaNews {
    padding-top: 2px;
    gap: 8px;
}

.btn-flexBTN-block-wrapper-flexLentaNews {
    min-height: 32px;
    border-radius: var(--radius);
    padding: 6px 8px;
    color: var(--color-text-soft);
}

.btn-flexBTN-block-wrapper-flexLentaNews:hover {
    background: var(--color-surface-muted);
    color: var(--color-text);
}

.swipe-item {
    border-radius: var(--radius);
}

.swipe-item__content {
    min-height: 70px;
    height: auto;
    padding: 12px;
}

.swipe-item__btn {
    border-radius: var(--radius);
}

.swipe-item__btn--mute {
    background: var(--color-warning);
}

.swipe-item__btn--delete {
    background: var(--color-danger);
    color: #fff;
}

.logOUTaccount {
    color: var(--color-danger);
}

.text-left-swipe-item__content p {
    color: var(--color-muted);
    font-size: 12px;
    line-height: 1.35;
}

.sos-fab {
    right: max(24px, calc((100vw - 980px) / 2 + 24px));
    bottom: 34px;
}

.sos-fab__main {
    width: 56px;
    height: 56px;
    background: var(--color-danger);
    border: 3px solid #fff;
    box-shadow: 0 12px 28px rgba(217, 54, 54, 0.28);
    letter-spacing: 0;
}

.sos-fab__main:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(217, 54, 54, 0.34);
}

.sos-fab__menu {
    bottom: 70px;
}

.sos-fab__item {
    min-width: 196px;
    border-color: #ffd0d0;
    border-radius: var(--radius);
    background: #fff7f7;
    color: #5a1f1f;
    box-shadow: var(--shadow-card);
    font-weight: 600;
}

.sos-fab__item:hover {
    background: #ffeaea;
}

.onb {
    background: var(--color-bg);
}

.onb__media {
    background: #dfe8e4;
}

.onb__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(31, 41, 51, 0), rgba(31, 41, 51, 0.12));
    pointer-events: none;
}

.onb__content {
    background: var(--color-surface);
}

.onb__box {
    max-width: 520px;
}

.onb__title {
    color: var(--color-text);
    letter-spacing: 0;
}

.onb__text,
.onb__checkbox span,
.regAfter {
    color: var(--color-text-soft);
}

.onb__input,
.onb__sms-input,
.input-send input {
    color: var(--color-text);
    border-width: 1px;
    box-shadow: none !important;
}

.onb__input:focus,
.onb__sms-input:focus,
.input-send input:focus {
    border-color: var(--color-brand) !important;
    box-shadow: 0 0 0 4px rgba(39, 138, 99, 0.14) !important;
}

.onb__btn,
.btnModal,
.phone-invite button,
.input-send button {
    background: var(--color-brand);
    border-radius: var(--radius);
    font-weight: 700;
    box-shadow: none;
}

.onb__btn:hover,
.btnModal:hover,
.phone-invite button:hover,
.input-send button:hover {
    background: var(--color-brand-strong);
}

.onb__btn:disabled {
    background: #9aa5b1;
    color: #fff;
}

.modal {
    background: rgba(31, 41, 51, 0.44);
}

.modal-content {
    padding: 24px;
}

.modalContent {
    width: 100%;
    align-items: center;
}

.close1 {
    color: var(--color-text-soft);
}

.blockProfile,
.block-flexSupportText,
.blockNotificationColumn,
.block-wrapper-flexLentaNews,
.swipe-item__content {
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

a.blockProfile:hover,
a.block-flexSupportText:hover,
.swipe-item__content:hover,
.block-wrapper-flexLentaNews:hover {
    border-color: rgba(39, 138, 99, 0.28) !important;
    transform: translateY(-1px);
}

.flexSupport {
    min-height: 58vh;
    height: auto;
    justify-content: flex-start;
    padding-top: 20px;
}

.block-flexSupportText {
    width: 100%;
    max-width: 560px;
}

.mapContentFlex {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
    background: var(--color-surface);
}

.textOnMap {
    top: auto;
    bottom: 18px;
    transform: translateX(-50%);
    width: min(520px, calc(100% - 32px));
    padding: 12px 14px;
}

/* === Comments screen refinement === */
body:has(.wrapper-flexLentaNewsComments) .sectionLKMain {
    min-height: 100vh;
}

body:has(.wrapper-flexLentaNewsComments) .container {
    max-width: 820px;
}

.wrapper-flexLentaNewsComments {
    position: relative;
    max-height: calc(100vh - 220px);
    overflow-y: auto;
    gap: 14px;
    padding: 0 6px 92px;
    scrollbar-width: thin;
    scrollbar-color: rgba(39, 138, 99, 0.32) transparent;
}

.wrapper-flexLentaNewsComments::-webkit-scrollbar {
    width: 8px;
}

.wrapper-flexLentaNewsComments::-webkit-scrollbar-thumb {
    background: rgba(39, 138, 99, 0.28);
    border-radius: 999px;
}

.wrapper-flexLentaNewsComments > .block-wrapper-flexLentaNews:first-child {
    position: sticky;
    top: 0;
    z-index: 3;
    margin-bottom: 8px;
    border-color: rgba(39, 138, 99, 0.24) !important;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
}

.wrapper-flexLentaNewsComments > .block-wrapper-flexLentaNews:first-child::before {
    content: "Публикация";
    display: inline-flex;
    width: fit-content;
    border-radius: 999px;
    background: rgba(39, 138, 99, 0.1);
    color: var(--color-brand);
    padding: 4px 9px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.block-wrapper-flexLentaNewsV2 {
    align-items: flex-start;
    gap: 10px;
}

.block-wrapper-flexLentaNewsV2[style*="padding-left: 20px"],
.block-wrapper-flexLentaNewsV2[style*="padding-left: 40px"] {
    position: relative;
}

.block-wrapper-flexLentaNewsV2[style*="padding-left: 20px"]::before,
.block-wrapper-flexLentaNewsV2[style*="padding-left: 40px"]::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 0;
    bottom: 0;
    width: 2px;
    border-radius: 999px;
    background: var(--color-border);
}

.block-wrapper-flexLentaNewsV2[style*="padding-left: 40px"]::before {
    left: 36px;
}

.right-block-wrapper-flexLentaNewsV2 {
    max-width: min(620px, calc(100% - 46px));
    gap: 7px;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background: var(--color-surface);
    box-shadow: 0 6px 18px rgba(31, 41, 51, 0.045);
    padding: 11px 13px;
}

.right-block-wrapper-flexLentaNewsV2 h4 {
    color: var(--color-text);
    font-size: 13px;
    font-weight: 700;
}

.right-block-wrapper-flexLentaNewsV2 p {
    color: var(--color-text-soft);
    line-height: 1.45;
}

.flex-right-block-wrapper-flexLentaNewsV2 {
    gap: 12px;
    padding-top: 2px;
}

.flex-right-block-wrapper-flexLentaNewsV2 a {
    color: var(--color-brand);
    font-size: 12px;
    font-weight: 700;
}

.flex-right-block-wrapper-flexLentaNewsV2 span {
    color: var(--color-muted);
    font-size: 12px;
}

.block-wrapper-flexLentaNewsV2_2 {
    align-items: flex-start;
}

.right-block-wrapper-flexLentaNewsV2_2 {
    background: rgba(39, 138, 99, 0.1);
    border-color: rgba(39, 138, 99, 0.18);
}

.block-wrapper-flexLentaNewsV2_2 .right-block-wrapper-flexLentaNewsV2 p {
    color: #234336;
}

.input-send {
    position: sticky;
    bottom: 0;
    z-index: 4;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-nav);
    padding: 8px;
    backdrop-filter: blur(14px);
}

.input-send input {
    height: 48px;
    border-radius: 10px !important;
    padding-right: 56px;
    background: var(--color-bg);
}

.input-send button {
    right: 14px;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    font-size: 0;
}

.input-send button::before {
    content: "↗";
    font-size: 18px;
    line-height: 1;
}

@media (max-width: 640px) {
    body:has(.wrapper-flexLentaNewsComments) .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .wrapper-flexLentaNewsComments {
        max-height: calc(100vh - 150px);
        padding-inline: 0;
    }

    .wrapper-flexLentaNewsComments > .block-wrapper-flexLentaNews:first-child {
        position: static;
    }

    .right-block-wrapper-flexLentaNewsV2 {
        max-width: calc(100% - 42px);
        padding: 10px 12px;
    }

    .block-wrapper-flexLentaNewsV2[style*="padding-left: 20px"] {
        padding-left: 12px !important;
    }

    .block-wrapper-flexLentaNewsV2[style*="padding-left: 40px"] {
        padding-left: 22px !important;
    }

    .block-wrapper-flexLentaNewsV2[style*="padding-left: 20px"]::before {
        left: 4px;
    }

    .block-wrapper-flexLentaNewsV2[style*="padding-left: 40px"]::before {
        left: 12px;
    }

    .input-send {
        margin-bottom: 8px;
    }
}
