/*Reset CSS*/
/*@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif !important;
    font-style: normal;
    /*font-weight: 400;*/
    line-height: normal;
    color: #000000;
    -webkit-tap-highlight-color: transparent;
}

/*Общие стили*/
html {
    /*scroll-behavior: smooth;*/
}

body {
    overflow: hidden auto;
}

body:has(.partners, .profile-popup) {
    --main-top-border-radius: 48px;
}

.profile-popup a.exit-popup-trigger * {
    pointer-events: none;
}

.partners, .profile-popup > .container {
    margin-top: calc(0px - var(--main-top-border-radius));
    padding-top: var(--main-top-border-radius);
    border-radius: var(--main-top-border-radius) var(--main-top-border-radius) 0 0;
    background: #FFFFFF;
}

/* анимация нажатия (плавная) */

.animation-press {
    --press-duration: .25s;
    transition: all var(--press-duration) ease-in !important;
}

.animation-press:active,
.animation-press:has(*:active) {
    transform: scale(94%);
    transition-timing-function: ease-out !important;
}

.animation-press.shadowed:active,
.animation-press.shadowed:has(*:active) {
    box-shadow: 2px 2px 9px rgba(0, 0, 0, 0.5);
}

.shadowed-hover:hover {
    /*box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);*/
    box-shadow: 2px 2px 9px rgba(0, 0, 0, 0.5);
}

/* \анимация нажатия (плавная) */

/* верхняя панелька для страниц */

.page-title-panel {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    align-items: center;
    padding: 25px 16px 10px;
}

.title-row {
    display: flex;
    gap: 16px;
    align-items: center;
}

/*.page-title-panel .title {*/
/*    font-size: 14px;*/
/*    font-weight: 500;*/
/*}*/

@media screen and (max-width: 600px) {
    .page-title-panel .title,
    .title-row h1,
    .newleft .title-row h1 {
        font-size: 16px !important;
        font-weight: 500;
        margin: 0;
        text-transform: initial;
    }

    .title-row {
        padding: 15px 0 15px;
    }

    .title-row .contacts-page_information-title {
        text-transform: initial;
    }

    .newleft .title-row:has(h1) {
        padding-bottom: 20px;
    }
}

@media screen and (min-width: 600px) {
    .page-title-panel,
    .title-row .arrowInCircle {
        display: none;
    }
}

/* \верхняя панелька для страниц */

.blind {
    width: 100%;
    height: 30px;
    display: block;
}

main.app {
    /*overflow-y: scroll;*/
    /*height: calc(100vh - 30px);*/
    /*height: 100svh;*/
    height: auto;
}

.none {
    display: none !important;
}

.hide {
    visibility: hidden !important;
}

.heart {
    fill: #EFEFF4;
    stroke: #444444;
    stroke-width: 1;
    transition: stroke 0.2s ease, fill 0.2s ease-in-out, scale 0.3s ease;
    user-select: none;
}

.heart *:only-child {
    pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
    .heart:hover {
        scale: 1.3;
        transition: stroke 0.2s ease, fill 0.5s ease-in-out, scale 0.5s ease;
    }
}

.heart.active {
    fill: #90278E;
    fill-opacity: 64%;
    stroke: #90278E;
    stroke-opacity: 1 !important;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.5));
    transition: stroke 0.2s ease, fill 0.5s ease-in-out, scale 0.3s ease;
}

button svg {
    pointer-events: none;
}

.clear-input {
    display: none;
    align-items: center;
    justify-content: center;
    padding: 6px;
    border-radius: 50%;
    cursor: pointer;
}

.clear-input svg {
    width: 12px;
    height: 12px;
    pointer-events: none;
}

.clear-input:hover {
    background: #F2F4F8;
}

.clear-input:active {
    opacity: 48%;
}

.close, .close-popup {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    transition: opacity 0.2s ease;
    -webkit-backface-visibility: hidden;
}

.close:hover, .close-popup:hover {
    background-color: #F2F4F8;
}

.close:active, .close-popup:active {
    opacity: 48%;
}

.close svg, .close-popup svg {
    width: 14px;
    height: 14px;
    pointer-events: none;
}

.arrowInCircle {
    flex: none;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(149, 147, 149, 0.16);
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.08);
    z-index: 1;
    transition: transform 0.5s ease, box-shadow 0.5s ease, background-color 0.5s ease;
    cursor: pointer;
}

.arrowInCircle::after {
    width: 7px;
    height: 7px;
    content: "";
    border-top: 2px solid #333333;
    border-left: 2px solid #333333;
}

@media (hover: hover) and (pointer: fine) {
    .arrowInCircle:hover {
        box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
        transform: scale(1.2);
        transition: transform 0.5s ease, box-shadow 0.5s ease, background-color 0.5s ease;
    }
}

.arrowInCircle:active {
    background-color: rgba(149, 147, 149, 0.06);
}

.arrowInCircle.previous::after {
    margin-left: 3px;
    rotate: -45deg;
}

.arrowInCircle.next::after {
    margin-right: 3px;
    rotate: 135deg;
}

.wrapper.iframe {
    width: 100%;
    min-height: 40vh;
}

.wrapper.iframe iframe {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
}

.wrapper.iframe.show iframe {
    opacity: 1;
    visibility: visible;
}

.wrapper.iframe.show .spinner {
    display: none;
}

.spinner {
    animation: rotate 2s linear infinite;
}

.spinner .path {
    stroke: rgba(144, 39, 142, 0.6);
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

/*Блоки*/
.scrollBlock {
    width: 100%;
    position: relative;
    overflow: auto;
}

.scrollBlock .arrowInCircle {
    width: 48px;
    height: 48px;
    position: absolute;
    top: 0;
    bottom: 0;
    visibility: hidden;
    opacity: 0;
    margin: auto 0;
    background-color: #FFFFFF;
    transition: transform 0.5s ease, box-shadow 0.5s ease, visibility 0s 1.5s, opacity 0.5s 1s ease;
}

.scrollBlock .arrowInCircle.active {
    visibility: visible;
    opacity: 1;
    transition: visibility 0s, opacity 0.3s ease;
}

.scrollBlock .arrowInCircle:after {
    width: 10px;
    height: 10px;
}

.scrollBlock .arrowInCircle.previous {
    left: 10px;
    margin-left: 4px;
}

.scrollBlock .arrowInCircle.next {
    right: 10px;
    margin-right: 4px;
}

.scrollBlock .arrowInCircle:hover {
    transition: transform 0.5s ease, box-shadow 0.5s ease, visibility 0s 1.5s, opacity 0.5s 1s ease;
}

.scrollBlock .wrapper {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.3s ease 0s;
}

.scrollBlock .wrapper[data-template="nearby"] {
    padding-top: 5px;
}

.partnersList .blank[data-blank] {
    position: relative;
}

.gradient {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 45%, rgba(255, 255, 255, 0.6) 50%, transparent 55%);
    background-size: 300% 300%;
    z-index: 1;
    animation: gradient 3s ease-in-out infinite;
}

@keyframes gradient {
    0% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0 0;
    }
}

.partnersList .blank[data-blank="1"] *:not(.gradient, .bottom, .footer, .row),
.partnersList .blank[data-blank="2"] *:not(.gradient) {
    border-radius: 24px;
    background: #F2F4F8;
}

.partnersList .blank[data-blank="1"] .top {
    height: 160px;
}

.partnersList .blank[data-blank="1"] .bottom {
    max-height: 129px;
}

.partnersList .blank[data-blank="1"] .bottom .header {
    width: 49.77%;
    height: 14px;
    margin-top: 8px;
}

.partnersList .blank[data-blank="1"] .bottom .footer {
    margin-top: 22px;
}

.partnersList .blank[data-blank="1"] .bottom .footer .one {
    width: 85.9%;
    height: 10px;
}

.partnersList .blank[data-blank="1"] .bottom .footer .one:first-child {
    margin-bottom: 5px;
}

.partnersList .blank[data-blank="1"] .bottom .footer .two {
    width: 47.13%;
    height: 12px;
    margin-top: 7px;
}

.partnersList .blank[data-blank="1"] .bottom .footer .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 19px 0 10px;
}

.partnersList .blank[data-blank="1"] .bottom .footer .row .left {
    width: 26.43%;
    height: 14px;
}

.partnersList .blank[data-blank="1"] .bottom .footer .row .right {
    width: 31.71%;
    height: 10px;
}


.partnersList .blank[data-blank="2"] .top {
    width: 11.8vw;
    aspect-ratio: 1;
    max-width: 170px;
}

section.partnersMap .partnersList .blank[data-blank="2"] .top {
    width: 100% !important;
    height: auto;
    aspect-ratio: 1;
    max-width: none;
    max-height: none;
}

.partnersList .blank[data-blank="2"] .bottom {
    width: 80%;
    height: 16px;
    margin-top: 10px;
}

.partnersList .blank[data-blank="3"] {
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partnersList .blank[data-blank="3"] *:not(.gradient),
.partnersList .blank[data-blank="4"] *:not(.gradient) {
    border-radius: 24px;
    background: #F2F4F8;
}

.partnersList .blank[data-blank="3"] .row {
    width: 95%;
    height: 18px;
}

body:has( #map) .partnersList .blank[data-blank="3"] .row {
    height: 24px;
}

section.partnersMap .partnersList .blank[data-blank="4"] {
    display: grid;
    grid-template-areas: var(--cluster-partner-grid-template-areas);
    padding: var(--cluster-partner-padding-y) var(--cluster-partner-padding-x);
    gap: var(--cluster-partner-inner-gap, 7px);
    grid-template-columns: var(--cluster-partner-icon-size) 1fr;
    grid-template-rows: calc(var(--cluster-partner-inner-title-font-size) * 1.04) calc(var(--cluster-partner-inner-font-size)* 1.2);
}

section.partnersMap .partnersList .blank[data-blank="4"] .left {
    grid-area: icon;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    align-self: center;
}

section.partnersMap .partnersList .blank[data-blank="4"] .top-right {
    grid-area: name;
    width: 80%;
}

section.partnersMap .partnersList .blank[data-blank="4"] .bottom-right {
    grid-area: address;
}

.partnersList .partnerCard[data-template="1"] {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease-in, box-shadow 0.3s ease-in, opacity 0.03s ease;
    opacity: 0;
}

.partnersList .partnerCard[data-template="1"]:hover {
    box-shadow: 2px 2px 9px rgba(0, 0, 0, 0.3);
    transform: scale(103%);
    transition: all 0.15s ease-out;
}

.partnersList .partnerCard[data-template="1"] a {
    cursor: default;
}

.partnersList .partnerCard[data-template="1"] .content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.partnersList .partnerCard[data-template="1"] .top {
    position: relative;
    width: 100%;
    height: 140px;
    background: #FFFFFF;
    border-bottom: 1px solid #ececec;
}

.partnersList .partnerCard[data-template="1"] .top .deadLine {
    position: absolute;
    display: block;
    top: 8px;
    left: 8px;
    padding: 4px 8px;
    border-radius: 16px;
    background: #FFFFFF;
    font-weight: 600;
    font-size: 12px;
    line-height: 15px;
    color: #333333;
    z-index: 2;
}

.partnersList .partnerCard[data-template="1"] .top .partnerLogo {
    max-width: 40%;
    position: absolute;
    display: block;
    object-fit: contain;
    top: 0;
    bottom: 0;
    left: 5%;
    margin: auto;
    z-index: 1;
}

.partnersList .partnerCard[data-template="1"] .top .partnerLogo[data-logo-position] {
    opacity: 0;
}

.partnersList[data-template="main"] .partnerCard[data-template="1"] .top .partnerLogo[data-logo-position] {
    opacity: 1;
}

.partnersList .partnerCard[data-template="1"] .top .partnerImg {
    width: auto;
    max-width: 80%;
    height: 100%;
    position: absolute;
    display: block;
    object-fit: contain;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto 0;
    z-index: 0;
}

.partnersList .partnerCard[data-template="1"] .top .info {
    position: absolute;
    display: block;
    bottom: 8px;
    left: 8px;
    padding: 4px 8px;
    border-radius: 14px;
    background: rgba(239, 239, 244, 0.24);
    font-weight: 600;
    font-size: 10px;
    line-height: 12px;
    color: #FFFFFF;
    z-index: 2;
}

.partnersList .partnerCard[data-template="1"] .bottom {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
    box-sizing: border-box;
    padding: 16px;
    background: #FFFFFF;
}

.partnersList .partnerCard[data-template="1"] .bottom .header {
    width: 100%;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.partnersList .partnerCard[data-template="1"] .bottom .header .partnerName {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    color: #777777;
}

.partnersList .partnerCard[data-template="1"] .bottom .header .distance {
    color: #333;
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    white-space: nowrap;
}

.partnersList .partnerCard[data-template="1"] .bottom > svg {
    width: 100%;
    height: 1px;
    margin: 8px 0;
}

.partnersList .partnerCard[data-template="1"] .bottom > svg line {
    stroke-width: 1px;
    stroke: #EFEFF4;
    stroke-dasharray: 8 8;
}

.partnersList .partnerCard[data-template="1"] .bottom .footer {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: flex-end;
}

.partnersList .partnerCard[data-template="1"] .bottom .footer .partnerText {
    height: auto;
    width: 100%;
    box-sizing: border-box;
    font-weight: 600;
    font-size: 10px;
    color: #333333;
    /*ellipsis*/
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-height: 13px;
    max-height: 26px;
}

.partnersList .partnerCard[data-template="1"] .bottom .footer .partnerType {
    width: 100%;
    display: flex;
    flex: 1;
    align-items: end;
    box-sizing: border-box;
    margin-top: 2px;
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    color: #333333;
}

.partnersList .partnerCard[data-template="1"] .bottom .footer .row {
    width: 100%;
    height: 28px;
    position: relative;
    display: flex;
    box-sizing: border-box;
    margin-top: 8px;
    justify-content: space-between;
    align-items: center;
}

.partnersList .partnerCard[data-template="1"] .bottom .footer .partnerValue {
    height: auto;
    padding: 5px 12px;
    background: rgba(255, 27, 27, 0.04);
    border-radius: 14px;
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    color: #FF1B1B;
}

.partnersList .partnerCard[data-template="1"] .heart {
    width: 24px;
    height: 24px;
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto 0;
    cursor: pointer;
    stroke-opacity: 0;
    z-index: 1;
}

.partnersList .partnerCard[data-template="2"] {
    position: relative;
    opacity: 0;
}

.partnersList .partnerCard[data-template="2"] a {
    cursor: default;
}

.partnersList .partnerCard[data-template="2"] a.content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    cursor: pointer;
}

.partnersList .partnerCard[data-template="2"] .top {
    width: 100%;
    height: 0;
    position: relative;
    padding-bottom: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #FFFFFF;
    box-shadow: 0 0 9px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-in, box-shadow 0.3s ease-in, opacity 0.03s ease;
}

.partnersList .partnerCard[data-template="2"] .top:hover {
    box-shadow: 2px 2px 9px rgba(0, 0, 0, 0.3);
    transform: scale(103%);
    transition: all 0.15s ease-out;
}

.partnersList .partnerCard[data-template="2"] .top .partnerLogo {
    width: 90%;
    height: 90%;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    object-fit: contain;
    margin: auto;
}

.partnersList .partnerCard[data-template="2"] .top .partnerLogo[data-logo-position] {
    opacity: 0;
}

.partnersList .partnerCard[data-template="2"] .top .partnerValue {
    height: auto;
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 0 8px;
    background: rgba(239, 239, 244, 0.24);
    border-radius: 6px;
    font-weight: 700;
    font-size: 10px;
    line-height: 20px;
    color: #FFFFFF;
}

.partnersList .partnerCard[data-template="2"] .top .heart {
    width: 24px;
    height: 24px;
    position: absolute;
    display: block;
    right: 10px;
    bottom: 10px;
    margin: auto 0;
    cursor: pointer;
    stroke-opacity: 0;
    z-index: 1;
}

.partnersList .partnerCard[data-template="2"] .bottom {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
    box-sizing: border-box;
    margin-top: 8px;
}

.partnersList .partnerCard[data-template="2"] .bottom .partnerName {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    font-weight: 600;
    font-size: 16px;
    line-height: normal;
    color: #333333;
    word-break: break-word;
}

.partnersList .partnerCard[data-template="3"] {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 9px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-in, box-shadow 0.3s ease-in, opacity 0.03s ease;
    opacity: 0;
}

.partnersList .partnerCard[data-template="3"]:hover {
    box-shadow: 2px 2px 9px rgba(0, 0, 0, 0.3);
    transform: scale(103%);
    transition: all 0.15s ease-out;
}

.partnersList .partnerCard[data-template="3"] a {
    cursor: default;
}

.partnersList .partnerCard[data-template="3"] .content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.partnersList .partnerCard[data-template="3"] .top {
    position: relative;
    width: 100%;
    height: 140px;
    background: #FFFFFF;
    border-bottom: 1px solid #ececec;
}

.partnersList .partnerCard[data-template="3"] .top .close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #F2F4F8;
    z-index: 1;
}

.partnersList .partnerCard[data-template="3"] .top .close:hover {
    background: #d0d0d0;
}

.partnersList .partnerCard[data-template="3"] .top .close svg {
    width: 8px;
    height: 8px;
}

.partnersList .partnerCard[data-template="3"] .top .deadLine {
    position: absolute;
    display: block;
    top: 8px;
    left: 8px;
    padding: 4px 8px;
    border-radius: 16px;
    background: #FFFFFF;
    font-weight: 600;
    font-size: 12px;
    line-height: 15px;
    color: #333333;
    z-index: 2;
}

.partnersList .partnerCard[data-template="3"] .top .partnerLogo {
    max-width: 40%;
    position: absolute;
    display: block;
    object-fit: contain;
    top: 0;
    bottom: 0;
    left: 5%;
    margin: auto;
    z-index: 1;
}

.partnersList .partnerCard[data-template="3"] .top .partnerLogo[data-logo-position] {
    opacity: 0;
}

.partnersList .partnerCard[data-template="3"] .top .partnerImg {
    width: auto;
    max-width: 80%;
    height: 100%;
    position: absolute;
    display: block;
    object-fit: contain;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto 0;
    z-index: 0;
}

.partnersList .partnerCard[data-template="3"] .top .info {
    position: absolute;
    display: block;
    bottom: 8px;
    left: 8px;
    padding: 4px 8px;
    border-radius: 14px;
    background: rgba(239, 239, 244, 0.24);
    font-weight: 600;
    font-size: 10px;
    line-height: 12px;
    color: #FFFFFF;
    z-index: 2;
}

.partnersList .partnerCard[data-template="3"] .bottom {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
    box-sizing: border-box;
    padding: 16px;
    background: #FFFFFF;
}

.partnersList .partnerCard[data-template="3"] .bottom .header {
    width: 100%;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.partnersList .partnerCard[data-template="3"] .bottom .header .partnerName {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    color: #777777;
}

.partnersList .partnerCard[data-template="3"] .bottom .header .distance {
    color: #333;
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    white-space: nowrap;
}

.partnersList .partnerCard[data-template="3"] .bottom > svg {
    width: 100%;
    height: 1px;
    margin: 8px 0;
}

.partnersList .partnerCard[data-template="3"] .bottom > svg line {
    stroke-width: 1px;
    stroke: #EFEFF4;
    stroke-dasharray: 8 8;
}

.partnersList .partnerCard[data-template="3"] .bottom .partnerText {
    height: auto;
    width: 100%;
    box-sizing: border-box;
    font-weight: 600;
    font-size: 10px;
    color: #333333;
    /*ellipsis*/
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-height: 13px;
    max-height: 26px;
}

.partnersList .partnerCard[data-template="3"] .bottom .partnerType {
    width: 100%;
    display: flex;
    flex: 1;
    align-items: end;
    box-sizing: border-box;
    margin: 2px 0 8px;
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    color: #333333;
}

.partnersList .partnerCard[data-template="3"] .bottom .row {
    height: 28px;
    position: relative;
    display: flex;
    box-sizing: border-box;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.partnersList .partnerCard[data-template="3"] .bottom .partnerValue {
    height: auto;
    left: 16px;
    bottom: 16px;
    padding: 5px 12px;
    background: rgba(255, 27, 27, 0.04);
    border-radius: 14px;
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    color: #FF1B1B;
}

.partnersList .partnerCard[data-template="3"] .heart {
    width: 24px;
    height: 24px;
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto 0;
    cursor: pointer;
    stroke-opacity: 0;
    z-index: 1;
}

.partnersList .partnerCard[data-template="clusterItem"] {
    display: grid;
    border-radius: var(--cluster-partner-border-radius);
    grid-template-areas: var(--cluster-partner-grid-template-areas);
    grid-template-columns: var(--cluster-partner-icon-size) 1fr;
    grid-template-rows: repeat(2, auto);
    padding: var(--cluster-partner-padding-y) var(--cluster-partner-padding-x);
    gap: calc(var(--cluster-partner-inner-gap)/2) var(--cluster-partner-inner-gap);
    cursor: pointer;
    transition: .3s ease;
}

.partnersList .partnerCard[data-template="clusterItem"]:hover {
    box-shadow: 0 0 9px rgba(0, 0, 0, 0.15);
}

.partnersList .partnerCard[data-template="clusterItem"] .left {
    grid-area: icon;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    align-self: center;
}

.partnersList .partnerCard[data-template="clusterItem"] .left > svg,
.partnersList .partnerCard[data-template="clusterItem"] .left > img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
}

.partnersList .partnerCard[data-template="clusterItem"] .title {
    grid-area: name;
    font-size: var(--cluster-partner-inner-title-font-size);
}

.partnersList .partnerCard[data-template="clusterItem"] .address {
    grid-area: address;
    display: inline;
    white-space: nowrap;
    overflow-x: hidden;
    text-overflow: ellipsis;
    font-size: var(--cluster-partner-inner-font-size);
}

.partnersList .partnerCard[data-template="5"] {
    width: 100%;
    height: 48px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    border-bottom: 1px solid #ECF0F5;
}

.partnersList .partnerCard[data-template="5"] * {
    pointer-events: none;
}

.partnersList .partnerCard[data-template="5"] .partnerLogoOnce {
    height: 24px;
    object-fit: contain;
    border-radius: 8px;
}

.partnersList .partnerCard[data-template="5"] .partnerName {
    flex: 1;
    margin: 0 16px 0 8px;
    color: #282828;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.partnersList .partnerCard[data-template="6"] {
    position: relative;
    opacity: 0;
}

.partnersList .partnerCard[data-template="6"] a {
    cursor: pointer;
}

.partnersList .partnerCard[data-template="6"] a.content {
    width: 11.8vw;
    height: 100%;
    max-width: 170px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.partnersList .partnerCard[data-template="6"] .top {
    width: 100%;
    height: 0;
    position: relative;
    padding-bottom: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #FFFFFF;
    box-shadow: 0 0 9px rgba(0, 0, 0, 0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.03s ease;
}

@media (hover: hover) and (pointer: fine) {
    .partnersList .partnerCard[data-template="6"] .top:hover {
        box-shadow: 2px 2px 9px rgba(0, 0, 0, 0.3);
        transform: scale(94%);
        transition: all 0.15s ease-out;
    }
}

@media only screen and (max-width: 900px) {
    body:has(.partners, .profile-popup > .container) {
        --main-top-border-radius: 36px;
    }

    .partnersList .partnerCard[data-template="6"] .top,
    .partnersList .partnerCard[data-template="1"]:has(.content),
    .slider .slick-slide a img {
        transition: all 0.3s ease-in;
    }

    .partnersList .partnerCard[data-template="6"] .top:active,
    .partnersList .partnerCard[data-template="1"]:has(.content:active),
    .slider .slick-slide a img:active {
        transform: scale(95%);
        transition: all 0.3s ease-out;
    }

    .partnersList .partnerCard[data-template="6"] .top:active,
    .partnersList .partnerCard[data-template="1"]:has(.content:active) {
        box-shadow: 2px 2px 9px rgba(0, 0, 0, 0.3);
    }
}

@media only screen and (max-width: 600px) {
    body:has(.partners, .profile-popup > .container) {
        --main-top-border-radius: 16px;
    }
}

.partnersList .partnerCard[data-template="6"] .top .partnerLogo {
    width: 90%;
    height: auto;
    max-height: 40%;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    object-fit: contain;
    margin: auto;
}

.partnersList .partnerCard[data-template="6"] .top .partnerLogo[data-logo-position] {
    opacity: 0;
}

.partnersList .partnerCard[data-template="6"] .top .partnerValue {
    height: auto;
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 0 8px;
    background: rgba(239, 239, 244, 0.24);
    border-radius: 6px;
    font-weight: 700;
    font-size: 10px;
    line-height: 20px;
    color: #FFFFFF;
}

.partnersList .partnerCard[data-template="6"] .top .distance {
    height: auto;
    position: absolute;
    right: 8px;
    bottom: 8px;
    padding: 0 8px;
    background: rgba(239, 239, 244, 0.24);
    border-radius: 6px;
    font-weight: 700;
    font-size: 10px;
    line-height: 20px;
    color: #FFFFFF;
}

.partnersList .partnerCard[data-template="6"] .bottom {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
    box-sizing: border-box;
    margin-top: 8px;
}

.partnersList .partnerCard[data-template="6"] .bottom .partnerName {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    font-weight: 600;
    font-size: 16px;
    line-height: normal;
    color: #333333;
    word-break: break-word;
}

.work {
    width: 100%;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work .container {
    width: 500px;
    max-width: 80%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.work .container img {
    width: 80%;
    object-fit: contain;
}

.work .container p {
    text-align: center;
    font-size: 26px;
    font-weight: 600;
    line-height: 120%;
    color: #777777;
}



/* Блок «Информация пользователя» */
.app .userInfo {
    background: #1D1D1B;
    padding: 32px 0 80px;
}

.app .userInfo .header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.app .userInfo .header .regionChoose {
    display: flex;
    flex-wrap: nowrap;
    cursor: pointer;
}

.app .userInfo .header .regionChoose * {
    pointer-events: none;
}

.app .userInfo .header .regionChoose::after {
    width: 10px;
    height: 10px;
    display: block;
    margin: 3px 0 0 10px;
    content: '';
    border-top: 3px solid #FFFFFF;
    border-right: 3px solid #FFFFFF;
    transform: rotate(135deg);
}

.app .userInfo .header .region {
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    color: #FFFFFF;
}

.app .userInfo .header .notifications {
    width: 36px;
    height: 36px;
    background: url("/assets/site/pz_img/main/notification.svg") center/cover;
}

.app .userInfo .header .notifications.message {
    background: url("/assets/site/pz_img/main/notification_message.svg") center/cover;
}

.app .userInfo .body {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 80px;
}

.app .userInfo .body.card_782 {
    grid-template-columns: 1fr;
    grid-template-rows: 2fr;
    row-gap: 16px;
}

.app .userInfo .body .user {
    min-height: 105px;
    display: flex;
    position: relative;
    flex-wrap: nowrap;
    align-items: center;
    padding: 16px;
    border-radius: 16px;
    text-decoration: none;
    cursor: pointer;
    background: radial-gradient(68.28% 104.04% at 16.46% 67.31%, rgba(63, 60, 60, 0.40) 0%, rgba(197, 197, 197, 0.28) 100%);
    box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.15);
    overflow: hidden;
    pointer-events: none;
}

.app .userInfo .body .user.default {
    flex-direction: column;
    align-items: start;
}

.app .userInfo .body .user .logo  {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.app .userInfo .body .user.default .logo  {
    width: 24px;
    height: 24px;
    margin-right: unset;
    margin-bottom: 13px;
}

.app .userInfo .body .user .footer {
    z-index: 1;
}

.app .userInfo .body .user .content .name {
    font-size: 26px;
    font-weight: 700;
    line-height: 120%;
    color: #FFFFFF;
}

.app .userInfo .body .user .content .organization {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 300;
    line-height: 120%;
    color: #FFFFFF;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.app .userInfo .body .user .logo_familyAccess  {
    width: auto;
    height: 100%;
    position: absolute;
    right: -3%;
    bottom: -10%;
    z-index: 0;
}

.app .userInfo .body.card_782 .card {
    perspective: 1000px;
}

.app .userInfo .body.card_782 .card * {
    user-select: none;
}

.app .userInfo .body.card_782 .card .container {
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.3s
}

.app .userInfo .body.card_782 .card .container.flipped {
    transform: rotateY(180deg);
}

.app .userInfo .body.card_782 .card img {
    width: 100%;
    object-fit: contain;
}

.app .userInfo .body.card_782 .card .frontSide, .app .userInfo .body.card_782 .card .backSide {
    backface-visibility: hidden;
}

.app .userInfo .body.card_782 .card .frontSide {
    position: relative;
    z-index: 1;
}

.app .userInfo .body.card_782 .card .frontSide p {
    position: absolute;
    right: 0;
    bottom: 6.25%;
    left: 0;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #FFFFFF;
}

.app .userInfo .body.card_782 .card .frontSide p span {
    color: inherit;
}

.app .userInfo .body.card_782 .card .frontSide p span + span {
    margin-left: 8px;
}

.app .userInfo .body.card_782 .card .backSide {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: rotateY(-180deg);
}

.app .userInfo .body.card_782 .card .backSide .wrapper {
    position: relative;

}

.app .userInfo .body.card_782 .card .backSide .barcode {
    width: 81%;
    height: 21%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

.app .userInfo .body.card_782 .card .backSide p {
    width: 100%;
    position: absolute;
    bottom: 28%;
    text-align: center;
    letter-spacing: 1px;
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
}



.app .notifications .container {
    width: 100%;
    padding: 16px;
}

.app .notifications .header {
    display: flex;
    align-items: center;
}

.app .notifications .header .arrowInCircle {
    width: 24px;
    height: 24px;
    transition: none;
}

.app .notifications .header p {
    margin-left: 16px;
    font-size: 14px;
    font-weight: 500;
}

.app .notifications .empty {
    display: flex;
    position: absolute;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 28px;
}

.app .notifications .empty img {
    width: 206px;
    height: 206px;
}

.app .notifications .empty .content {
    text-align: center;
}

.app .notifications .empty .title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.app .notifications .empty .text {
    margin-top: 6px;
    font-size: 16px;
    font-weight: 400;
    color: #333;
}

/* Popup's */
.popupOverlay, .mobile-menu__popup {
    width: 100%;
    height: auto;
    display: none;
    position: fixed;
    justify-content: center;
    align-items: center;
    top: 0;
    right: 0;
    bottom: var(--bottom-nav-height, 0);
    left: 0;
    user-select: none;
    z-index: 20;
}

body:has(.mobile-menu__popup.active) {
    overflow: hidden;
}

.mobile-menu__popup {
    background: inherit;
    z-index: 19;
}

.popupOverlay:has(.partnerList-popup) {
    visibility: hidden;
    pointer-events: none;
}

.popupOverlay .partnerList-popup {
    visibility: visible;
    pointer-events: all;
}

.popupOverlay.active {
    display: flex;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color ease;
    transition-duration: 0.2s;
    pointer-events: none;
}

.popupOverlay.active.animation {
    background-color: rgba(0, 0, 0, 0.5);
    transition: background-color ease;
    transition-duration: 0.3s;
    pointer-events: all;
}

.mobMainMenu-popup {
    display: none;
}

.regionVerification-popup {
    width: 210px;
    display: none;
    position: absolute;
    top: 56px;
    right: 170px;
    padding: 12px 24px 20px 24px;
    border-radius: 16px;
    border: 1px solid #eee;
    text-align: center;
    background: #fdf4ff;
    box-shadow: 0 20px 30px -10px rgba(33, 33, 33, 0.3);
    z-index: 19;
}

.regionVerification-popup.active {
    display: block;
    opacity: 0;
    transition: opacity ease;
    transition-duration: 0.1s;
}

.regionVerification-popup.active.animation {
    opacity: 1;
    transition: opacity ease;
    transition-duration: 1s;
}

.regionVerification-popup .call {
    display: none;
}

.regionVerification-popup .title {
    width: 100%;
    display: inline-block;
    margin: 0;
    font-size: 15px;
}

.regionVerification-popup strong {
    width: 100%;
    display: inline-block;
    margin: 10px 0 16px 0;
}

.regionVerification-popup .yes, .regionVerification-popup .no {
    display: inline-block;
    margin: 0 5px;
    padding: 0 20px;
    border-radius: 8px;
    background: #eee;
    font-size: 15px;
    line-height: 32px;
    cursor: pointer;
}

.regionVerification-popup .yes {
    background: #90278E;
    color: #fff;
}

.regions-popup {
    max-width: 90%;
    max-height: 90%;
    display: none;
    box-sizing: border-box;
    border-radius: 16px;
    overflow-y: auto;
    background: #FFFFFF;
    z-index: 1;
}

.regions-popup.active {
    display: block;
    scale: 0;
    transition: scale ease;
    transition-duration: 0.2s;
}

.regions-popup.active.animation {
    scale: 1;
    transition: scale ease;
    transition-duration: 0.3s;
}

.regions-popup::-webkit-scrollbar {
    display: none;
}

.regions-popup .header {
    position: sticky;
    top: 0;
    padding: 24px 24px 0;
    background-color: inherit;
    touch-action: none;
    z-index: 1;
}

.regions-popup .header *:not(.close-popup, input, .tags span) {
    pointer-events: none;
}

.regions-popup .header > .wrapper {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #EFEFF4;
}

.regions-popup .header h3 {
    font-weight: 800;
    font-size: 24px;
    line-height: 31px;
    color: #333333;
}

.regions-popup .header input {
    width: 100%;
    border: none;
    border-radius: 10px;
    outline: none;
    margin-top: 20px;
    padding: 8px 0 8px 42px;
    background: url("/assets/site/decweb/search_city.svg") no-repeat 10px center;
    font-family: inherit;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: #000;
    pointer-events: auto;
}

.regions-popup .header input:focus {
    background: url("/assets/site/decweb/search_city.svg") no-repeat 10px center, #FAFAFA;
}

.regions-popup .tags {
    width: 100%;
    max-height: 0;
    display: block;
    margin: 12px 0;
    transition: max-height 1s ease;
}

.regions-popup .tags::after {
    display: block;
    width: 100%;
    height: 36px;
    content: '';
    visibility: hidden;
}

.regions-popup .tags .wrapper {
    display: flex;
    flex-wrap: wrap;
    opacity: 0;
}

.regions-popup .tags .wrapper.active {
    opacity: 1;
    transition: opacity 0.5s 0.35s ease;
}

.regions-popup .tags div[data-region] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 8px 0 16px;
    background: #F2F4F8;
    border-radius: 12px;
}

.regions-popup .tags p {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 14px;
    line-height: 36px;
    white-space: nowrap;
    color: #282828;
}

.regions-popup .tags p span {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
}

.regions-popup .tags p span:hover {
    background: #e4e5ea;
}

.regions-popup .tags p span:active {
    opacity: 48%;
}

.regions-popup .tags p span svg {
    width: 12px;
    height: 12px;
    pointer-events: none;
}

.regions-popup .container {
    padding: 0 24px 24px;
}

.regions-popup .regionsList {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
}

.regions-popup .regionsList p {
    margin-bottom: 6px;
    padding: 0;
    white-space: nowrap;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 26px;
    color: #000000;
    cursor: pointer;
}

.regions-popup .regionsList p[data-capital="1"] {
    font-weight: 600;
}

.regions-popup .regionsList p:last-child {
    margin-bottom: 0;
}

.regions-popup .regionsList p:hover {
    text-decoration: underline #000000;
}

.notWorking-popup {
    max-width: 90%;
    max-height: 90%;
    display: none;
    box-sizing: border-box;
    border-radius: 16px;
    overflow-y: auto;
    background: #FFFFFF;
}

.notWorking-popup.active {
    display: block;
    scale: 0;
    transition: scale ease;
    transition-duration: 0.2s;
}

.notWorking-popup.active.animation {
    scale: 1;
    transition: scale ease;
    transition-duration: 0.3s;
}

.notWorking-popup::-webkit-scrollbar {
    display: none;
}

.notWorking-popup .header {
    position: sticky;
    top: 0;
    padding: 24px 24px 0;
    touch-action: none;
    background-color: inherit;
    z-index: 1;
}

.notWorking-popup .header .wrapper {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid #EFEFF4;
}

.notWorking-popup .container {
    position: relative;
    padding: 30px;
}

.notWorking-popup img {
    width: 100%;
    margin-bottom: 16px;
}

.notWorking-popup p {
    text-align: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #333333;
}

.notWorking-popup p span {
    width: 100%;
    display: block;
    margin-bottom: 5px;
}

.notWorking-popup p span:first-child {
    font-weight: 800;
    font-size: 24px;
    line-height: 30px;
}

.notWorking-popup p span:nth-child(2) {
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;
}

.appDownload-popup {
    display: none;
}

.login-popup {
    width: 100%;
    height: 100%;
    max-width: 1152px;
    max-height: 864px;
    display: none;
    position: relative;
    flex-wrap: nowrap;
    box-shadow: 0 0 50px 3px rgba(255, 255, 255, 0.35);
}

.login-popup.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity ease-in 0.3s;
}

.login-popup.active.animation {
    opacity: 1;
    transition: opacity ease-in 0.3s;
}

.login-popup .mobile {
    display: none;
}

.login-popup .close-popup {
    display: flex;
    position: absolute;
    top: 24px;
    right: 24px;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    transition: opacity 0.2s ease;
    z-index: 1;
    -webkit-backface-visibility: hidden;
}

.login-popup .leftBlock {
    width: 50%;
    height: 100%;
    display: flex;
    align-content: end;
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 7.4%;
    background: url("/assets/site/pz_img/login-popup/login_bg.png") no-repeat center /cover, linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.00) 100%), #90278E;
}

.login-popup .leftBlock svg {
    width: 240px;
    height: 63px;
    flex: 1 1 100%;
    margin-bottom: 16px;
}

.login-popup .leftBlock p {
    flex: 1 1 100%;
    color: #FFFFFF;
    text-align: center;
    font-style: normal;
    line-height: normal;
}

.login-popup .leftBlock .name {
    margin-bottom: 36px;
    font-size: 40px;
    font-weight: 700;
}

.login-popup .leftBlock .text {
    max-width: 410px;
    font-size: 20px;
    font-weight: 500;
}

.login-popup .container {
    width: 50%;
    height: 100%;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    background: #FFFFFF;
    overflow-y: auto;
    scrollbar-width: thin;
}

.login-popup .container .wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 10%;
    opacity: 1;
    transition: opacity 0.2s ease;
}

.login-popup .container .wrapper.unShow {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.login-popup .container .wrapper > .info + .info {
    margin-top: 8px;
}

.login-popup .container p + .field  {
    margin-top: 16px;
}

.login-popup .container .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border-radius: 12px;
    background: #F2F4F8;
    cursor: default;
    transition: background-color 0.3s ease;
}

.login-popup .container .button.active {
    background: #90278E;
    cursor: pointer;
    transition: background-color 0.5s ease;
}

@media (hover: hover) and (pointer: fine) {
    .login-popup .container .button.active:hover {
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
    }
}

.login-popup .container .button.active:active {
    background: #993897;
}

.login-popup .container .button .spinner {
    display: none;
    width: auto;
    height: 80%;
    position: absolute;
    margin: auto;
}

.login-popup .container .button.await .spinner {
    display: block;
}

.login-popup .container .button p {
    font-size: 16px;
    font-weight: 600;
    pointer-events: none;
    color: #828282;
}

.login-popup .container .button.await p {
    color: rgba(130, 130, 130, 0.2);
}

.login-popup .container .button.active p {
    color: #FFFFFF;
}

.login-popup .container .color {
    color: #90278E;
}

.login-popup .container .pointer {
    cursor: pointer;
}

.login-popup .container .link {
    margin-top: 12px;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    color: #90278E;
    cursor: pointer;
}

.login-popup .container .tipText {
    margin-top: 12px;
}

.login-popup .container p {
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    line-height: 120%;
    color: #828282;
}

.login-popup .container p.pt24 {
    padding-top: 24px;
}

.login-popup .container p.center,
.login-popup .container a.center {
    text-align: center;
}

.login-popup .container .info.with-icon {
    color: #828282;
    display: flex;
    gap: 15px;
    font-size: 14px;
    align-items: center;
}

.login-popup .container .info.with-icon i {
    content: '';
    width: 25px;
    height: auto;
    aspect-ratio: 1;
    display: block;
    background: #828282;
    flex: 0 0 auto;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.79 6.04C9.40648 6.08421 9.11703 6.40894 9.11703 6.795C9.11703 7.18106 9.40648 7.50579 9.79 7.55C9.9915 7.5528 10.1854 7.47329 10.327 7.32985C10.4685 7.18641 10.5455 6.99145 10.54 6.79C10.5346 6.37804 10.202 6.04539 9.79 6.04Z' fill='black'/%3E%3Cpath d='M9.79 8.92C9.59027 8.91728 9.39792 8.99543 9.25667 9.13667C9.11543 9.27792 9.03728 9.47027 9.04 9.67V12.79C9.04 13.2042 9.37579 13.54 9.79 13.54C10.2042 13.54 10.54 13.2042 10.54 12.79V9.69C10.5454 9.48765 10.4688 9.2917 10.3275 9.14669C10.1863 9.00169 9.99243 8.91993 9.79 8.92Z' fill='black'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9.79 0C4.38542 0.00551207 0.00551207 4.38542 0 9.79C0 15.1969 4.38313 19.58 9.79 19.58C15.1969 19.58 19.58 15.1969 19.58 9.79C19.5745 4.38542 15.1946 0.00551207 9.79 0ZM9.79 18.08C5.21156 18.08 1.5 14.3684 1.5 9.79C1.5 5.21156 5.21156 1.5 9.79 1.5C14.3684 1.5 18.08 5.21156 18.08 9.79C18.0745 14.3662 14.3662 18.0745 9.79 18.08Z' fill='black'/%3E%3C/svg%3E%0A");
    mask-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.79 6.04C9.40648 6.08421 9.11703 6.40894 9.11703 6.795C9.11703 7.18106 9.40648 7.50579 9.79 7.55C9.9915 7.5528 10.1854 7.47329 10.327 7.32985C10.4685 7.18641 10.5455 6.99145 10.54 6.79C10.5346 6.37804 10.202 6.04539 9.79 6.04Z' fill='black'/%3E%3Cpath d='M9.79 8.92C9.59027 8.91728 9.39792 8.99543 9.25667 9.13667C9.11543 9.27792 9.03728 9.47027 9.04 9.67V12.79C9.04 13.2042 9.37579 13.54 9.79 13.54C10.2042 13.54 10.54 13.2042 10.54 12.79V9.69C10.5454 9.48765 10.4688 9.2917 10.3275 9.14669C10.1863 9.00169 9.99243 8.91993 9.79 8.92Z' fill='black'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9.79 0C4.38542 0.00551207 0.00551207 4.38542 0 9.79C0 15.1969 4.38313 19.58 9.79 19.58C15.1969 19.58 19.58 15.1969 19.58 9.79C19.5745 4.38542 15.1946 0.00551207 9.79 0ZM9.79 18.08C5.21156 18.08 1.5 14.3684 1.5 9.79C1.5 5.21156 5.21156 1.5 9.79 1.5C14.3684 1.5 18.08 5.21156 18.08 9.79C18.0745 14.3662 14.3662 18.0745 9.79 18.08Z' fill='black'/%3E%3C/svg%3E%0A");
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 100%;
    mask-size: 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}


.login-popup .container .registrationTitle, .login-popup .container .header, .container .login-popup .footer {
    flex: 1 1 auto;
    align-content: end;
}

.login-popup .container .registrationTitle + .header {
    flex: unset;
    align-content: unset;
}

.login-popup .container .registrationTitle {
    margin-bottom: 24px;
}

.login-popup .container .registrationTitle .title {
    margin-bottom: 16px;
    text-align: left;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
}

.login-popup .container .blockName {
    width: 100%;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #D9D9D9;
}

.login-popup .container .blockName .h3 {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
}

.login-popup .container .field {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.login-popup .container .field .title {
    width: 100%;
    flex: 1 1 auto;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
    line-height: 120%;
    color: #282828;
}

.login-popup .container .field.multipleInput {
    margin: 24px 0;
}

.login-popup .container .field.multipleInput .label {
    display: flex;
    flex-wrap: wrap;
}

.login-popup .container .field.multipleInput .label label {
    flex: 1;
}

.login-popup .container .field.multipleInput .label label + label {
    margin-left: 12px;
}

.login-popup .container .field.multipleInput .label input {
    text-align: center;
}

.login-popup .container .field.multipleInput .label .message {
    flex: 1 0 100%;
}

.login-popup .container .field .label {
    flex: 1 1 0;
}

.login-popup .container .field .label label{
    position: relative;
}

.login-popup .container .field .label input {
    width: 100%;
    height: 56px;
    padding: 16px;
    border: none;
    border-radius: 12px;
    outline:none;
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    background: #F2F4F8;
    box-shadow: 0 0 0 1000px #F2F4F8 inset;
}

.login-popup .container .field .label input[type="password"]:not(:placeholder-shown) {
    font-family: Verdana, serif !important;
    letter-spacing: 0.125em;
}

.login-popup .container .field.error .label input {
    border: 1px solid #FF2C4A;
}

.login-popup .container .field .label input::placeholder {
    font-size: 18px;
    font-weight: 400;
    color: #828282;
}

.login-popup .container .field .label .icon {
    width: 24px;
    height: 24px;
    position: absolute;
    content: '';
    top: 0;
    right: 16px;
    bottom: 0;
    margin: auto 0;
    cursor: pointer;
}

.login-popup .container .field.password .label .icon {
    background: url("/assets/site/pz_img/login-popup/eyeCrossed.svg") no-repeat center;
}

.login-popup .container .field.password .label .icon.show {
    background: url("/assets/site/pz_img/login-popup/eye.svg") no-repeat center;
}

.login-popup .container .field.verification .label .icon {
    background: url("/assets/site/pz_img/login-popup/messageQuestion.svg") no-repeat center;
}

.login-popup .container .field .label .message {
    max-height: 0;
    visibility: hidden;
    font-size: 14px;
    font-weight: 500;
    line-height: 120%;
    color: #FF2C4A;
    transition: max-height 0.3s ease, visibility 0s linear;
}

.login-popup .container .error .message.active {
    max-height: 120px;
    padding-top: 4px;
    visibility: visible;
    transition: max-height 0.3s ease, visibility 0.3s 0.3s linear;
}

.login-popup .container .phone .select {
    width: 113px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: start;
    margin-right: 12px;
    padding: 16px 0 16px 16px;
    border: none;
    border-radius: 12px;
    background: #F2F4F8;
}

.login-popup .container .phone .select *:not(.arrow) {
    pointer-events: none;
}

.login-popup .container .phone .select .country {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}

.login-popup .container .phone .select .country img {
    margin-right: 12px;
}

.login-popup .container .phone .select .country p {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
}

.login-popup .container .phone .select .arrow {
    width: 14px;
    height: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 6px;
    padding: 9px 6px;
    box-sizing: content-box;
    cursor: pointer;
}

.login-popup .container .phone .select .arrow span {
    width: 50%;
    height: 1px;
    background: #000000;
    transition: all 0.2s ease;
}

.login-popup .container .phone .select .arrow span:first-of-type {
    margin-right: -7%;
    transform: rotate(45deg);
}

.login-popup .container .phone .select .arrow span:last-of-type {
    margin-left: -7%;
    transform: rotate(-45deg);
}

.login-popup .container .phone .select.active .arrow span:first-of-type {
    transform: rotate(-45deg);
}

.login-popup .container .phone .select.active .arrow span:last-of-type {
    transform: rotate(45deg);
}

.login-popup .container .oneButton div {
    width: 100%;
    position: relative;
    margin-top: 24px;
}

.login-popup .container .twoButtons .label {
    display: flex;
    position: relative;
    justify-content: space-between;
}

.login-popup .container .twoButtons .label .button {
    flex: 1 1 auto;
    cursor: pointer;
}

.login-popup .container .twoButtons .label .button.active {
    cursor: default;
}

.login-popup .container .twoButtons .label .button + .button {
    margin-left: 8px;
}

.login-popup .container .twoButtons .label .button * {
    pointer-events: none;
}

.login-popup .container .timer.active {
    color: #90278E;
    transition: color 0.3s ease;
    cursor: pointer;
}

.login-popup .container .loginChoose {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    flex-wrap: wrap;
}

.login-popup .container .loginChoose p:last-child:not(.color) {
    color: #828282;
}

.login-popup .container .warning {
    max-height: 0;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: max-height 1s ease, opacity 0.5s ease 0.2s;
}

.login-popup .container .warning.active {
    max-height: 100%;
    opacity: 1;
    visibility: visible;
}

.login-popup .container .warning p {
    margin-bottom: 16px;
    color: red;
}

.login-popup .container .policy {
    margin: 30px 30px 0;
    text-align: center;
    font-size: 12px;
}

.login-popup .container .policy span {
    font-size: inherit;
}

.login-popup .container .receivingNumber {
    margin: 66px 0 44px;
    font-size: 30px;
    font-weight: 600;
    line-height: 120%;
    color: #90278E;
    text-decoration: none;
    padding: 10px;
    border-radius: 12px;
    background: #F2F4F8;
}

.login-popup .cardsInfo {
    padding-top: 20px;
}

.login-popup .cardsInfo > div {
    height: auto;
    display: flex;
    flex-wrap: nowrap;
}

.login-popup .cardsInfo .content .title {
    position: relative;
    font-size: 18px;
    font-weight: 700;
    color: #B87AB0;
}

.login-popup .cardsInfo .content .title:after {
    width: 80%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    background: #921E7E;
}

.login-popup .cardsInfo .content .text {
    font-size: 14px;
    font-weight: 700;
    color: #595A57;
}

.login-popup .cardInfo_1 img {
    width: 65%;
    object-fit: contain;
    margin-bottom: -7px;
}

.login-popup .cardInfo_1 .content {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    margin: -7% 0 0 10px;
}

.login-popup .cardInfo_2 {
    height: auto;
    justify-content: space-between;
    margin-top: 10%;
}

.login-popup .cardInfo_2 img {
    width: 65%;
    order: 2;
    object-fit: contain;
    margin-bottom: -7px;
    z-index: 2;
}

.login-popup .cardInfo_2 .content {
    display: flex;
    flex-wrap: wrap;
    order: 1;
    align-content: start;
    margin-right: -50px;
}

.login-popup .cardInfo_3 {
    justify-content: space-between;
    margin: -10px 0 -10px 0;
}

.login-popup .cardInfo_3 img {
    width: 60%;
    object-fit: contain;
    margin-bottom: -7px;
    z-index: 3;
}

.login-popup .cardInfo_3 .content {
    display: flex;
    flex-wrap: wrap;
    align-content: start;
    margin: 7% 0 0 -40px;
}

.login-popup div.cardInfo_4 {
    flex-wrap: wrap;
    margin-top: 50px;
}

.login-popup .cardInfo_4 img {
    width: 100%;
    order: 2;
    object-fit: contain;
}

.login-popup .cardInfo_4 .content {
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    order: 1;
}

.login-popup .cardInfo_4 .content .title {
    color: #595A57;
}

.login-popup .cardInfo_4 .content .title::after {
    display: none;
}

.login-popup .cardsInfo hr {
    width: 100%;
    height: 8px;
    position: relative;
    border-radius: 4px;
    color: #82207E;
    background-color: #82207E;
    z-index: 1;
}

.login-popup .cardsInfo > .title {
    margin-top: 15px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #B87AB0;
}

.login-popup .cardsInfo > p:not(.title) {
    margin-top: 5px;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: #595A57;
}

.login-popup .cardsInfo > p:not(.title) + p {
    margin-top: 10px;
}

.login-popup .success, .login-popup .success .blockName {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.login-popup .success .blockName svg.logo {
    width: 80px;
    height: 80px;
    flex: 1 0 100%;
    margin-bottom: 12px;
}

.login-popup .success .blockName .title {
    flex: 1 0 100%;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
}

.login-popup .success .text {
    flex: 1 0 100%;
    text-align: center;
}

.login-popup .success svg.qrCode {
    width: 250px;
    height: 250px;
    margin: 24px 0;
}

.login-popup .noCard .blockName .title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #333;
}

.login-popup .noCard .text {
    line-height: 120%;
    color: #333;
}

.login-popup .noCard .text.bold {
    font-weight: 600;
}

.login-popup .noCard .text + .text {
    margin-top: 20px;
}

.login-popup .noCard .blockLink {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 24px 0;
    padding: 16px;
    border-radius: 16px;
    background: #F2F4F8;
}

.login-popup .noCard .blockLink a {
    text-decoration: none;
    font-weight: 600;
    line-height: 120%;
    color: #90278E;
}

.telegramWelcome-popup {
    display: none;
}
