.message_sent_wrap {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
}

.message_sent_text {
    position: absolute;
    left: calc(50% - 150px);
    top: calc(50% - 50px);
    width: 300px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    font-size: 16px;
    background: #fff;
    color: #000;
}

.message_sent_text:after {
    content:'X';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    background: #ddd;
}

/*===========================================================*/

body {
    font-family: 'Gilroy';
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    background: url(../images/fon-page.webp) no-repeat center top #0B0B0A;
}

body.no-scroll {
    overflow: hidden;
}

.wrapper {
    overflow: hidden;
}

.wrapper-in {
    margin: 0 auto;
    width: 1200px;
    padding: 0 15px;
    box-sizing: border-box;
}

.red {
    color: #d32b37;
}

.grey {
    color:#a6a6a6;
}

.but {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: -moz-linear-gradient( 90deg, rgb(139,14,26) 0%, rgb(184,9,26) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgb(139,14,26) 0%, rgb(184,9,26) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(139,14,26) 0%, rgb(184,9,26) 100%);
    box-shadow: 0px 10px 44.55px 0.45px rgba(154, 12, 26, 0.44),inset 0px 0px 17px 0px rgba(255, 255, 255, 0.18);
    width: 244px;
    height: 74px;
    border-radius: 100px;
    text-transform: uppercase;
    font-size: 12.5px;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 1;
    text-align: center;
    cursor: pointer;
}

.but:hover {
    background-image: -moz-linear-gradient( 90deg, rgb(184,9,26) 0%, rgb(139,14,26) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgb(184,9,26) 0%, rgb(139,14,26) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(184,9,26) 0%, rgb(139,14,26) 100%);
}

.title {
    font-size: 45px;
    line-height: 1.3;
    font-weight: 600;
    text-align: center;
}

.subtitle {
    font-size: 18px;
    text-align: center;
    color:#a6a6a6;
    margin-top: 24px;
}


.circle {
    width: 12px;
    margin: 0 auto 76px;
}

.circle-e {
    width: 8px;
    height: 8px;
    border: 2px solid #fff;
    border-radius: 100%;
    margin-bottom: 10px;
    opacity: 0;
}

.circle.anim .circle-e.e1 {
    transition-delay: 0ms;
    opacity: 0.2;
}

.circle.anim .circle-e.e2 {
    transition-delay: 300ms;
    opacity: 0.5;
}

.circle.anim .circle-e.e3 {
    transition-delay: 600ms;
    opacity: 1;
}

/*=====================================================================================*/

.header-wrap {
    padding-top: 62px;
    height: 177px;
    box-sizing: border-box;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1;
    flex-wrap: wrap;
}

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

.header-logo-text {
    display: flex;
    font-size: 15px;
    line-height: 1.5;
    color: #d0d0d0;
    margin-left: 36px;
}
.header-cabinet {
    display: flex;
    font-size: 15px;
    line-height: 1.5;
    color: #d0d0d0;
    margin-left: 36px;
}

.header-logo-text:hover {
    color: #d32b37;
    text-shadow: 0 1px 2px #000000;
}

.header-nav {
    position: relative;
    z-index: 110;
    display: flex;
    align-items: center;
    order: 5;
    flex: 0 0 100%;
    margin: 16px 0 0;
    justify-content: center;
}

.header-nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.header-nav-list a {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    padding: 0 12px;
    border-radius: 6px;
    color: #d0d0d0;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 200ms, background 200ms;
}

.header-nav-list a:hover {
    background: rgba(0, 0, 0, 0.28);
    color: #ffffff;
}

.header-nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.34);
    cursor: pointer;
}

.header-nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    border-radius: 2px;
    background: #ffffff;
    transition: transform 200ms, opacity 200ms;
}

.header-nav.is-open .header-nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.header-nav.is-open .header-nav-toggle span:nth-child(2) {
    opacity: 0;
}

.header-nav.is-open .header-nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.header-cabinet:hover {
    color: #d32b37;
    text-shadow: 0 1px 2px #000000;
}

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

.header-link-soc {
    display: flex;
    margin-right: 23px;
}

.header-link-soc a {
    display: block;
   margin-right: 9px;
    transition: 300ms;
}

.header-link-soc a:hover {
    transform: scale(0.95);
}

.header-link-soc a:last-child {
    margin-right: 0;
}

.header-link-tel {
    position: relative;
}

.header-link-tel-num {
    font-size: 30px;
    font-weight: bold;
}

.header-link-tel-call {
    position: absolute;
    z-index: 5;
    top: 43px;
    right: 0;
    color:#a6a6a6;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 300;
    cursor: pointer;
    font-size: 15px;
}

.header-link-tel-call:hover {
    color: #fff;
}

@media only screen and (max-width: 1249px) {
    .header-nav {
        margin-top: 18px;
    }

    .header-nav-list {
        gap: 4px;
    }

    .header-nav-list a {
        padding: 0 8px;
        font-size: 12px;
    }
}

@media only screen and (max-width: 1023px) {
    .header-nav {
        order: 0;
        flex: 0 0 auto;
        margin-left: auto;
        margin-right: 12px;
        margin-top: 0;
    }

    .header-nav-toggle {
        display: block;
    }

    .header-nav-list {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        display: none;
        width: min(320px, calc(100vw - 30px));
        padding: 8px;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 8px;
        background: rgba(12, 12, 12, 0.96);
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.32);
    }

    .header-nav.is-open .header-nav-list {
        display: grid;
        gap: 4px;
    }

    .header-nav-list a {
        justify-content: flex-start;
        min-height: 42px;
        padding: 0 12px;
        font-size: 13px;
        text-align: left;
    }
}

.top {
    margin: 0 -90px 82px;
    position: relative;
}

.top-content {
    display: flex;
    position: relative;
    z-index: 2;
}

.top-price {
    width: 231px;
    height: 593px;
    background: url(../images/top/footing.webp) no-repeat;
    text-align: center;
}

.top-price-e-text {
    font-size: 17px;
}

.top-price-e.e1 {
    height: 248px;
    padding-top: 150px;
    box-sizing: border-box;
    background: url(../images/top/money/1.png) no-repeat center 67px;
}

.top-price-e.e2 {
    height: 193px;
    padding-top: 86px;
    box-sizing: border-box;
    background: url(../images/top/money/2.png) no-repeat center top;
}

.top-price-e.e3 {
    padding-top: 83px;
    box-sizing: border-box;
    background: url(../images/top/money/3.png) no-repeat center top;
}

.top-info {
    padding-left: 43px;
    padding-top: 30px;
    position: relative;
    z-index: 3;
}

.top-info-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 22px;
    max-width: 640px;
}

.top-info-title .income-line {
    white-space: nowrap;
}

.top-info-pain {
    font-size: 20px;
    line-height: 1.45;
    color: #d9d9d9;
    max-width: 690px;
    margin-bottom: 26px;
}

.top-info-list {
    font-size: 18px;
    margin-left: 30px;
    margin-bottom: 57px;
}

.top-info-list li {
    list-style-type: disc;
    list-style-position: outside;
    color: #d32b37;
    margin-bottom: 9px;
}

.top-info-list li span {
    display: inline-block;
    color:#a6a6a6;
}

.top-info-avg-check {
    margin: 0 0 20px;
    font-size: 20px;
    line-height: 1.35;
    max-width: 640px;
}

.top-profit-estimate {
    margin: -26px 0 18px;
    font-size: 22px;
    line-height: 1.35;
    color: #f2f2f2;
    border: 1px dashed rgba(255,255,255,0.35);
    border-radius: 12px;
    padding: 12px 16px;
    max-width: 690px;
    cursor: pointer;
    transition: 250ms;
}

.top-profit-estimate:hover {
    border-color: #d32b37;
    color: #fff;
}

.top-info-seo-text {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.45;
    color: #a6a6a6;
    max-width: 700px;
}

.tarif-disclaimer {
    margin-top: 22px;
    font-size: 12px;
    line-height: 1.55;
    color: #a6a6a6;
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 12px;
}

.insight-wrap {
    padding: 30px 0 80px;
}

.insight-subtitle {
    margin-top: 10px;
}

.insight-grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.insight-card {
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 12px;
    padding: 16px;
    background: rgba(0,0,0,0.15);
    cursor: pointer;
    transition: 250ms;
}

.insight-card:hover {
    border-color: #d32b37;
    background: rgba(211, 43, 55, 0.08);
    transform: translateY(-2px);
}

.insight-card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.insight-card p {
    color: #d9d9d9;
    line-height: 1.5;
}

.insight-card-more {
    margin-top: 10px;
    display: inline-block;
    color: #d32b37;
    border-bottom: 1px solid rgba(211, 43, 55, 0.7);
}

.compliance-wrap {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.12);
}

.compliance-grid {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.compliance-card {
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 12px;
    padding: 18px 18px 16px;
    background: rgba(0,0,0,0.16);
}

.compliance-card p {
    color: #d9d9d9;
    line-height: 1.55;
}

.compliance-card-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.compliance-checklist,
.docs-wrap {
    margin-top: 20px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 12px;
    padding: 18px;
}

.compliance-checklist ul,
.docs-list {
    margin-left: 20px;
}

.compliance-checklist li,
.docs-list li {
    margin-bottom: 8px;
    line-height: 1.5;
    color: #d9d9d9;
}

.subfooter-note {
    font-size: 11px;
    line-height: 1.45;
    color: #8e8e8e;
    max-width: 560px;
    text-align: left;
}

.top-info-get {
    width: 340px;
    height: 108px;
    font-size: 16px;
    margin-top: 12px;
}

.top-terminal {
    position: absolute;
    top: -19px;
    left: calc(50% + 167px);
    z-index: 1;
    display: block;
    object-fit: contain;
}

.top-terminal.is-post {
    left: calc(50% + 167px);
    top: -19px;
    max-width: none;
    opacity: 0.96;
}

.top-show-video {
    position: absolute;
    z-index: 3;
    top: 384px;
    left: calc(50% + 186px);
    cursor: pointer;
    transition: 300ms;
}

.top-show-video:hover {
    transform: scale(0.95);
}

.terminal-wrap {
    position: relative;
    background: url(../images/terminal/terminal.webp) no-repeat center 18px;
}

.terminal-wrap video {
    position: absolute;
    z-index: 5;
    top: 535px;
    left: calc(50% - 200px);
    width: 392px;
    height: 226px;
}

.terminal-info-wrap {
    margin-top: 71px;
    height: 1404px;
}

.terminal-info {
    font-size: 18px;
    font-weight: 600;
}

.terminal-info-e-more {
    color: #d42c37;
    border-bottom: 1px solid #d42c37;
    cursor: pointer;
    display: inline-block;
    margin-top: 13px;
}

.terminal-info-e-text {
    margin-top: 18px;
}

.terminal-info-e-text .grey {
    font-weight: 400;
}

.terminal-info-bot-pic-wrap {
    height: 128px;
    display: flex;
    align-items: flex-end;
}

.terminal-info-top {
    text-align: center;
    padding-bottom: 42px;
}

.terminal-info-bot {
    position: relative;
}

.terminal-info-bot .terminal-info-e {
    position: absolute;
    width: 280px;
}

.terminal-info-e.e2 {
    left:0;
    top: 0px;
}

.terminal-info-e.e3 {
    left:0;
    top: 322px;
}

.terminal-info-e.e4 {
    left:0;
    top: 582px;
}

.terminal-info-e.e5 {
    right:10px;
    top: 0px;
}

.terminal-info-e.e6 {
    right:10px;
    top: 322px;
}

.terminal-info-e.e7 {
    right:10px;
    top: 582px;
}


.terminal-video {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 51px;
}

.terminal-location-note {
    max-width: 900px;
    margin: -22px auto 51px;
    padding: 18px 22px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.28);
    text-align: center;
}

.terminal-location-note strong {
    display: block;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
}

.terminal-location-note span {
    display: block;
    margin-top: 8px;
    color: #d0d0d0;
    font-size: 16px;
    line-height: 1.45;
}

.terminal-video-e {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    width: 364px;
    aspect-ratio: 16 / 9;
    background: #0f1217;
}

.terminal-video-e > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.terminal-video-e-over {
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    left:0;
    right: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
}

.terminal-video-e-over img {
    cursor: pointer;
    transition: 300ms;
    width: 100px;
}

.terminal-video-e-over img:hover {
    transform: scale(0.9);
}

.terminal-gallery-over {
    align-items: flex-end;
    padding: 18px;
    box-sizing: border-box;
    justify-content: flex-start;
}

.terminal-gallery-open {
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(0, 0, 0, 0.52);
    border-radius: 999px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    cursor: pointer;
    transition: 250ms ease;
}

.terminal-gallery-open:hover {
    border-color: rgba(255, 255, 255, 0.65);
    background: rgba(0, 0, 0, 0.72);
}

.terminal-gallery-open i {
    color: #d42c37;
}

.franshiza-wrap {
    position: relative;
}

.franshiza {
    margin-bottom: 157px;
}

.franshiza-subtitle {
    text-align: center;
    margin: 28px 0 44px;
}

.franshiza-subtitle-text {
    font-size: 25px;
    font-weight: bold;
    text-transform: uppercase;
    color: #d42c37;
    margin-top: 10px;
}

.franshiza-top {
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 2;
    margin-bottom: 23px;
}

.franshiza-top-in {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 780px;
}

.franshiza-top-e {
    padding: 10px;
    border-radius: 10px;
    background: #151A18;
    margin-bottom: 38px;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

.franshiza-top-e-in {
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.2);
    width: 350px;
    height: 183px;
    padding: 20px;
    box-sizing: border-box;
}

.franshiza-top-e-num {
    font-size: 30px;
    margin-bottom: 10px;
    font-weight: bold;
}

.franshiza-bot {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.franshiza-bot-e {
    position: relative;
}

.franshiza-bot-e:after {
    content:'';
    display: block;
    border-radius: 15px;
    background-color: rgb(255, 255, 255);
    opacity: 0.06;
    height: 31px;
    position: absolute;
    bottom:-10px;
    left: 25px;
    right: 25px;
}


.franshiza-bot-e-in {
    width: 563px;
    height: 209px;
    box-sizing: border-box;
    padding: 41px 20px 20px 30px;
    position: relative;
    z-index: 2;
}

.franshiza-bot-e-in.e1 {
    background: url(../images/franshiza/money.webp) no-repeat;
}

.franshiza-bot-e-in.e2 {
    background: url(../images/franshiza/terminal.webp) no-repeat;
}

.franshiza-bot-e-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 28px;
}

.franshiza-bot-e-text {
    font-size: 18px;
    color: #a6a6a6;
}

.franshiza-hand-pic {
    position: absolute;
    right: calc(50% + 260px);
    bottom: 285px;
}

.proba-wrap {
    background: url(../images/proba/footing.webp) no-repeat center bottom;
    position: relative;
    margin-bottom: 125px;
}

.proba {
    position: relative;
}

.proba-form-wrap {
    position: relative;
    z-index: 2;
    margin-top: 84px;
    padding-left: 657px
}

.proba-form {
    width: 426px;
    height: 720px;
    box-sizing: border-box;
    padding-top: 89px;
    text-align: center;
    background: url(../images/proba/form-fon.webp) no-repeat center bottom;
}

.proba-form-title {
    font-size: 30px;
    font-weight: 600;
}

.proba-form-subtitle {
    margin: 7px 0 33px;
    color: #a6a6a6;
}

.proba-form-field {
    display: block;
    border-radius: 200px;
    text-align: center;
    font-size: 18px;
    background: #1D1F1F;
    box-shadow: inset 0px 0px 17px 0px rgba(255, 255, 255, 0.18);
    width: 328px;
    height: 96px;
    padding: 0 20px;
    box-sizing: border-box;
    margin: 0 auto 14px;
}

.proba-form-but {
    width: 328px;
    height: 96px;
    font-size: 15px;
    margin: 0 auto;
}

.proba-form-agree {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 31px;
}

.proba-form-agree-text {
    font-size: 13px;
    font-weight: 300;
    padding-left: 18px;
    text-align: left;
}

.proba-form-agree-text-underline {
    border-bottom: 1px solid #a6a6a6;
    cursor: pointer;
}

.proba-book-pic {
    position: absolute;
    right: calc(50% - 163px);
    bottom: -42px;
}

.reason-wrap {
    padding-top: 91px;
    padding-bottom: 105px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 78px;
    background: url(../images/reason/avtozapchasti-24.png) no-repeat center top;
}

.reason {
    position: relative;
}

.reason-info-wrap {
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 2;
    margin-top: 142px;
}

.reason-info-e {
    display: flex;
    align-items: flex-start;
    margin-bottom: 75px;
}

.reason-info-e:last-child {
    margin-bottom: 0;
}

.reason-info-e img {
    flex-shrink: 0;
}

.reason-info-e-text {
    font-size: 18px;
    font-weight: 600;
    padding-left: 50px;
}

.reason-info-e-text .grey {
    font-weight: 400;
}

.reason-men {
    position: absolute;
    top: 300px;
    left: 430px;
}

.reason-men-title {
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 11px;
    position: relative;
}

.reason-men-title:before {
    content: '';
    position: absolute;
    top: 18px;
    left: -78px;
    width: 52px;
    border-top: 1px solid #737575;
}

.reason-men-pic {
    position: absolute;
    top: 201px;
    left: -100px;
}

.tarif-wrap {
    padding-bottom: 90px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.tarif-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 53px;
}

.tarif-info-e {
    position: relative;
}

.tarif-info-e:after {
    content: '';
    display: block;
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    opacity: 0.06;
    height: 31px;
    position: absolute;
    bottom: -10px;
    left: 10px;
    right: 10px;
}

.tarif-info-e-in {
    width: 280px;
    padding-bottom: 29px;
    border-radius: 10px;
    background: #191819;
    position: relative;
    z-index: 2;
}

.tarif-info-e-in.tarif-clickable {
    cursor: pointer;
    transition: 250ms;
    border: 1px solid rgba(255,255,255,0.16);
    overflow: visible;
}

.tarif-info-e-in.tarif-clickable:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    border-color: #d32b37;
    background: rgba(211, 43, 55, 0.08);
}

.tarif-info-e-in.tarif-clickable::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -11px;
    transform: translateX(-50%) translateY(-6px);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid rgba(211, 43, 55, 0.94);
    opacity: 0;
    visibility: hidden;
    transition: 200ms;
    z-index: 5;
    pointer-events: none;
}

.tarif-info-e-in.tarif-clickable::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    top: -44px;
    transform: translateX(-50%) translateY(-6px);
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid rgba(211, 43, 55, 0.65);
    background: rgba(18, 18, 18, 0.96);
    color: #f0f0f0;
    font-size: 12px;
    line-height: 1.2;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 200ms;
    z-index: 5;
    pointer-events: none;
}

.tarif-info-e-in.tarif-clickable:hover::before,
.tarif-info-e-in.tarif-clickable:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.tarif-info-e-top {
    height: 85px;
    line-height: 85px;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
}

.tarif-info-e-top-mark {
    position: absolute;
    top: 14px;
    left: 24px;
    font-size: 12.5px;
    font-weight: 600;
    line-height: 1;
}

.tarif-info-e-data {
    width: 230px;
    margin: 0 auto;
}

.tarif-info-e-data tr td {
    border-top: 1px solid #2E3333;
    padding-top: 14px;
    padding-bottom: 17px;
}

.tarif-info-e-data tr td:nth-child(1) {
    color: #a6a6a6;
}

.tarif-info-e-data tr td:nth-child(2) {
    vertical-align: middle;
    line-height: 1;
    text-align: right;
    font-size: 20px;
    font-weight: bold;
    color: #d32b37;
}

.tarif-info-e-data tr td.green {
    font-size: 30px;
    font-weight: bold;
    color: #41a93e;
}

.tarif-info-e-but {
    margin: 34px auto 0;
}

.plan-wrap {
    padding-bottom: 90px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 60px;
}

.plan-info {
    margin-top: 102px;
}

.plan-info-e {
    display: flex;
    margin-bottom: 65px;
    align-items: flex-start;
}

.plan-info-e-num-wrap {
    width: 159px;
}

.plan-info-e-num {
    font-size: 102px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,0.05);
    margin-top: -13px
}

.plan-info-e-scale {
    padding-left: 60px;
    padding-top: 19px;
    position: absolute;
}

.plan-info-e-scale-disc {
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    width: 12px;
    height: 12px;
    margin-left:-5px;
}

.plan-info-e-scale-line {
    background: rgba(255,255,255,0.05);
    width: 1px;
    height: 272px;
    z-index: 93;
}

.plan-info-e.active .plan-info-e-num {
    color: #760711;
}

.plan-info-e.active .plan-info-e-scale-disc {
    background: #760711;
    box-shadow: 0px 0px 23.76px 0.24px rgba(162, 11, 26, 0.63);
}

.plan-info-e.active .plan-info-e-scale-line {
    background: #760711;
}

.plan-info-e-data-wrap {
    position: relative;
    opacity: 0.3;
}

.plan-info-e.active .plan-info-e-data-wrap {
    opacity: 1;
}

.plan-info-e-data-wrap:after {
    content: '';
    display: block;
    border-radius: 10px;
    background-color: rgb(42, 42, 42);
    height: 31px;
    position: absolute;
    bottom: -10px;
    left: 18px;
    right: 18px;
}

.plan-info-e:last-child {
    margin-bottom: 0;
}

.plan-info-e-data {
    width: 825px;
    height: 350px;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 30px 52px;
    position: relative;
    z-index: 2;
}

.plan-info-e-data.e1 {
    background: url(../images/plan/01.webp) no-repeat;
}

.plan-info-e-data.e2 {
    background: url(../images/plan/02.webp) no-repeat;
}

.plan-info-e-data.e3 {
    background: url(../images/plan/03.webp) no-repeat;
}

.plan-info-e-data.e4 {
    background: url(../images/plan/04.webp) no-repeat;
}

.plan-info-e-data.e5 {
    background: url(../images/plan/05.webp) no-repeat;
}

.plan-info-e-data-title {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
}

.plan-info-e-data-desc {
    color: #a6a6a6;
}

.plan-info-e-data-but {
    width: 264px;
    height: 77px;
    position: absolute;
    left: 44px;
    bottom: 32px;
}

.footer {
    position: relative;
    padding-bottom: 130px;
}

.footer-wrap {
    padding-top: 76px;
}

.footer-title {
    text-align: center;
}

.footer-subtitle {
    text-align: left;
}

.footer-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 692px;
    margin-top: 55px;
}

.footer-form-field {
    display: block;
    border-radius: 200px;
    text-align: center;
    font-size: 18px;
    background: #1D1F1F;
    box-shadow: inset 0px 0px 17px 0px rgba(255, 255, 255, 0.18);
    width: 328px;
    height: 96px;
    padding: 0 20px;
    box-sizing: border-box;
    margin: 0 auto 34px;
}

.footer-form-but {
    width: 328px;
    height: 96px;
    font-size: 15px;
}

.footer-form-agree {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 15px;
}

.footer-form-agree-text {
    font-size: 13px;
    font-weight: 300;
    padding-left: 18px;
    text-align: left;
}

.footer-form-agree-text-underline {
    border-bottom: 1px solid #a6a6a6;
    cursor: pointer;
}

.footer-iphone-pic {
    position: absolute;
    left: calc(50% + 199px);
    bottom: 0;
}

.subfooter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding-bottom: 20px;
}

.subfooter .header-logo {
    display: flex;
    align-items: center;
    margin-right: 200px;
}

.subfooter .header-link {
    flex-direction: column;
    align-items: center;
}

.subfooter .header-link-soc {
    margin-right: 0;
    margin-bottom: 12px;
}

.subfooter .header-link-soc a img {
    width: 34px;
}

.subfooter .header-link-tel-num {
    font-size: 20px;
}

.subfooter .header-link-tel-call {
    display: none;
}

.subfooter-maker {
    font-size: 14px;
}

.footer-legal {
    font-size: 14px;
    color: #a6a6a6;
    line-height: 1.6;
}

.footer-legal-owner {
    margin-bottom: 8px;
}

.footer-legal-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-legal-link {
    border-bottom: 1px solid #a6a6a6;
    cursor: pointer;
    color: #d9d9d9;
}

.footer-landing-nav {
    margin-top: 10px;
}

.footer-landing-nav-title {
    font-size: 13px;
    color: #a6a6a6;
    margin-bottom: 6px;
}

.footer-landing-nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
}

.footer-landing-nav-links a {
    color: #d9d9d9;
    border-bottom: 1px solid rgba(217, 217, 217, 0.4);
    font-size: 13px;
}

/*==========================================================*/

.popup-terminal {
    position: fixed;
    z-index: 1000;
    background: rgba(0,0,0,0.9);
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 60px 0 30px;
    top: 0;
    left: 0;
    overflow: auto;
    display: none;
}

.popup-terminal-close {
    position: absolute;
    z-index: 100;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.popup-terminal-info {
    width: 1120px;
    padding: 30px;
    box-sizing: border-box;
    border-radius: 20px;
    background: #1D1A1E;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
}

.popup-terminal-info-e {
    width: 330px;
    height: 276px;
    box-sizing: border-box;
    background: #101012;
    text-align: center;
    line-height: 1;
}

.popup-terminal-info-e:nth-child(n + 4) {
    margin-top: 30px;
}

.popup-terminal-info-e-pic-wrap {
    height: 215px;
    padding-bottom: 30px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.popup-terminal-info-e-pic-wrap .spectehnika {
    position: relative;
    top: 20px;
}

.popup-terminal-info-e-pic-wrap .moto,
.popup-terminal-info-e-pic-wrap .vodnye {
    position: relative;
    top: 10px;
}

.popup-terminal-info-e-name {
    font-size: 18px;
    margin-bottom: 14px;
}

.popup-terminal-info-e-desc {
    font-size: 11px;
}

/*==========================================================*/

.popup-video {
    position: fixed;
    z-index: 1000;
    background: rgba(0,0,0,0.9);
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 60px 0 30px;
    top: 0;
    left: 0;
    overflow: auto;
    display: none;
}

.popup-video-close {
    position: absolute;
    z-index: 100;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.popup-video-info {
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.myvideo-wrap {
    max-width: 840px;
    Width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.myvideo {
    position:relative;
    height:0;
    overflow:hidden;
    padding: 27.5% 0;
    border: 1px solid #000;
}

.myvideo iframe,
.myvideo object,
.myvideo embed {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    border: 0;
}

/*==========================================================*/

.popup-gallery {
    position: fixed;
    z-index: 1001;
    background: rgba(0,0,0,0.92);
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 60px 0 30px;
    top: 0;
    left: 0;
    overflow: auto;
    display: none;
}

.popup-gallery-close {
    position: absolute;
    z-index: 100;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.popup-gallery-info {
    min-height: calc(100vh - 90px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
}

.popup-gallery-wrap {
    width: 100%;
    max-width: 1080px;
}

.popup-gallery-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.popup-gallery-title {
    font-size: 24px;
    font-weight: 600;
}

.popup-gallery-counter {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
}

.popup-gallery-stage {
    display: flex;
    align-items: center;
    gap: 12px;
}

.popup-gallery-image-wrap {
    background: #0f1217;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.16);
    width: 100%;
    height: min(72vh, 760px);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.popup-gallery-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.popup-gallery-image-wrap video {
    display: none;
    width: 100%;
    height: 100%;
    background: #000000;
    object-fit: contain;
}

.popup-gallery-nav {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.24);
    background: rgba(0,0,0,0.45);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    flex-shrink: 0;
    transition: 250ms ease;
}

.popup-gallery-nav:hover {
    border-color: rgba(255,255,255,0.6);
    background: rgba(0,0,0,0.75);
}

.popup-gallery-thumbs {
    margin-top: 12px;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.popup-gallery-thumb {
    width: 94px;
    height: 64px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.18);
    overflow: hidden;
    padding: 0;
    background: #0f1217;
    cursor: pointer;
    flex-shrink: 0;
}

.popup-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.popup-gallery-thumb.is-video {
    position: relative;
}

.popup-gallery-thumb.is-video:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.72);
    transform: translate(-50%, -50%);
}

.popup-gallery-thumb.is-video:before {
    content: '';
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    margin-left: 2px;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid #ffffff;
    transform: translate(-50%, -50%);
}

.popup-gallery-thumb.is-active {
    border-color: rgba(212,44,55,0.95);
    box-shadow: 0 0 0 1px rgba(212,44,55,0.75) inset;
}

/*==========================================================*/

.popup-call {
    position: fixed;
    z-index: 1000;
    background: rgba(0,0,0,0.9);
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 60px 0 30px;
    top: 0;
    left: 0;
    overflow: auto;
    display: none;
}

.popup-call-close {
    position: absolute;
    z-index: 100;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.popup-call-form {
    max-width: 426px;
    box-sizing: border-box;
    padding: 10px;
    text-align: center;
    background: #1D1A1E;
    border-radius: 15px;
    margin: 0 auto;
}

.popup-call-form-in {
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 15px;
    padding: 30px 15px;
}

.popup-call-form-title {
    font-size: 30px;
    font-weight: 600;
}

.popup-call-form-subtitle {
    margin: 7px 0 33px;
    color: #a6a6a6;
}

.popup-call-form-field {
    display: block;
    border-radius: 200px;
    text-align: center;
    font-size: 18px;
    background: #1D1F1F;
    box-shadow: inset 0px 0px 17px 0px rgba(255, 255, 255, 0.18);
    max-width: 328px;
    width: 100%;
    height: 96px;
    padding: 0 20px;
    box-sizing: border-box;
    margin: 0 auto 14px;
}

.popup-call-form-but {
    max-width: 328px;
    width: 100%;
    height: 96px;
    font-size: 15px;
    margin: 0 auto;
}

.popup-call-form-agree {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 31px;
}

.popup-call-form-agree-text {
    font-size: 13px;
    font-weight: 300;
    padding-left: 18px;
    text-align: left;
}

.popup-call-form-agree-text-underline {
    border-bottom: 1px solid #a6a6a6;
}

/*=================================*/

.popup-policy {
    position: fixed;
    z-index: 1000;
    background: rgba(0,0,0,0.9);
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 60px 0 30px;
    top: 0;
    left: 0;
    overflow: auto;
    display: none;
}

.popup-policy-close {
    position: absolute;
    z-index: 100;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.popup-policy-text {
    max-width: 1000px;
    box-sizing: border-box;
    padding: 10px;
    text-align: left;
    background: #1D1A1E;
    border-radius: 15px;
    margin: 0 auto;
}

.popup-policy-text-in {
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 15px;
    padding: 30px 15px;
}

.popup-policy-text-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
}

.popup-policy-date {
    text-align: center;
    color: #a6a6a6;
    margin-bottom: 18px;
}

.popup-policy-section {
    margin-bottom: 20px;
}

.popup-policy-section h3 {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
}

.popup-policy-section p,
.popup-policy-section li {
    color: #d9d9d9;
    line-height: 1.6;
}

.popup-policy-section ul {
    margin: 8px 0 0 18px;
}

.popup-profit {
    position: fixed;
    z-index: 1000;
    background: rgba(0,0,0,0.9);
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 60px 0 30px;
    top: 0;
    left: 0;
    overflow: auto;
    display: none;
}

.popup-profit-close {
    position: absolute;
    z-index: 100;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.popup-profit-inner {
    max-width: 760px;
    margin: 0 auto;
    background: #1D1A1E;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 28px 24px;
    box-sizing: border-box;
}

.popup-profit-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.popup-profit-inner p,
.popup-profit-inner li {
    color: #d9d9d9;
    line-height: 1.6;
}

.popup-profit-inner ul {
    margin: 10px 0 14px 18px;
}

.popup-profit-disclaimer {
    font-size: 12px;
    color: #a6a6a6 !important;
}

.popup-insight,
.popup-tariff-calc {
    position: fixed;
    z-index: 1000;
    background: rgba(0,0,0,0.9);
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 60px 0 30px;
    top: 0;
    left: 0;
    overflow: auto;
    display: none;
}

.popup-insight-close,
.popup-tariff-calc-close {
    position: absolute;
    z-index: 100;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.popup-insight-inner,
.popup-tariff-calc-inner {
    max-width: 900px;
    margin: 0 auto;
    background: #1D1A1E;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 24px 20px;
    box-sizing: border-box;
}

.popup-insight-title,
.popup-calc-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 12px;
}

.popup-insight-body {
    display: none;
}

.popup-insight-body.is-active {
    display: block;
}

.popup-insight-body p,
.popup-insight-body li {
    color: #d9d9d9;
    line-height: 1.6;
}

.popup-insight-body ul {
    margin: 8px 0 0 18px;
}

.popup-calc-body {
    display: none;
}

.popup-calc-body.is-active {
    display: block;
}

.popup-calc-body p {
    color: #d9d9d9;
    line-height: 1.5;
    margin-bottom: 12px;
}

.popup-calc-table {
    width: 100%;
    border-collapse: collapse;
}

.popup-calc-table td,
.popup-calc-table th {
    border-bottom: 1px solid rgba(255,255,255,0.16);
    padding: 10px 8px;
    text-align: left;
}

.popup-calc-table th {
    color: #fff;
    font-weight: 600;
}

.popup-calc-note {
    margin-top: 12px;
    color: #a6a6a6;
    font-size: 12px;
    line-height: 1.5;
}

.fr-page-section {
    padding-top: 72px;
    padding-bottom: 72px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 42px;
}

.fr-page-section .terminal-title {
    margin-bottom: 16px;
}

.fr-page-section .tarif-subtitle {
    margin-bottom: 28px;
}

.fr-media-section .terminal-video {
    margin-bottom: 0;
}

.fr-map-section .map-city {
    border-radius: 14px;
    overflow: hidden;
}

.fr-proba-form-wrap {
    position: relative;
}

.fr-proba-form-wrap::before {
    display: none;
}

.fr-proba-form-wrap::after {
    display: none;
}

.franshiza-page .top-wrap {
    padding-top: 72px;
    padding-bottom: 72px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.franshiza-page .top-wrap + .reason-wrap,
.franshiza-page .reason-wrap + .tarif-wrap,
.franshiza-page .tarif-wrap + .top-wrap {
    margin-top: 42px;
}

.fr-side-pic {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.fr-side-pic-book {
    left: 28px;
    bottom: 24px;
    width: 270px;
}

.fr-side-pic-men {
    left: 320px;
    bottom: 26px;
    width: 145px;
}

.fr-proba-form-wrap .proba-form {
    position: relative;
    z-index: 2;
}

#topContent {
  opacity: 1;
  transition: opacity 0.6s ease;
}

#topContent.fade-out {
  opacity: 0;
}

/* Общие стили ползунка */
.income-slider{
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgb(139,14,26) 0%, rgb(184,9,26) 100%);
  /* для старых webkit */
  background: -webkit-linear-gradient(90deg, rgb(139,14,26) 0%, rgb(184,9,26) 100%);
  outline: none;
}

/* --- WebKit (Chrome/Safari/новый Edge) --- */
.income-slider::-webkit-slider-runnable-track{
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgb(139,14,26) 0%, rgb(184,9,26) 100%);
  background: -webkit-linear-gradient(90deg, rgb(139,14,26) 0%, rgb(184,9,26) 100%);
}

.income-slider::-webkit-slider-thumb{
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid rgb(184,9,26);
  box-shadow: 0 0 0 4px rgba(184,9,26,0.15);
  cursor: pointer;
  /* выравниваем по центру трека */
  margin-top: calc((12px - 22px) / 2);
}

.income-slider:focus::-webkit-slider-thumb{
  box-shadow: 0 0 0 6px rgba(184,9,26,0.25);
}

/* --- Firefox --- */
.income-slider::-moz-range-track{
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgb(139,14,26) 0%, rgb(184,9,26) 100%);
}

.income-slider::-moz-range-thumb{
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid rgb(184,9,26);
  box-shadow: 0 0 0 4px rgba(184,9,26,0.15);
  cursor: pointer;
}

.income-slider:focus::-moz-range-thumb{
  box-shadow: 0 0 0 6px rgba(184,9,26,0.25);
}

/* --- (опционально) старый IE/Edge Legacy --- */
.income-slider::-ms-track{
  height: 12px;
  border-color: transparent;
  color: transparent;
  background: transparent;
}
.income-slider::-ms-fill-lower,
.income-slider::-ms-fill-upper{
  border-radius: 999px;
  background: linear-gradient(90deg, rgb(139,14,26) 0%, rgb(184,9,26) 100%);
}
.income-slider::-ms-thumb{
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid rgb(184,9,26);
  box-shadow: 0 0 0 4px rgba(184,9,26,0.15);
  cursor: pointer;
}

.popup-call-form-label,
.proba-form-label,
.footer-form-label {
  display: block;           /* чтобы занял всю строку */
  margin-bottom: 8px;       /* расстояние до ползунка */
  line-height: 1.2;
  font-weight: 600;         /* можно убрать, если не нужно выделение */
}

/* На всякий случай: убедимся, что контейнер поля — колонкой */
.popup-call-form-field-wrap,
.proba-form-field-wrap,
.footer-form-field-wrap {
  display: block; /* если где-то flex, можно заменить на: display:flex; flex-direction:column; */
}

/* 3) Чуть больше воздуха под слайдером */
.income-output {
  margin-top: 8px;
}

@media (max-width: 599px) {
    .terminal-location-note {
        margin-top: -24px;
        padding: 16px 14px;
        border-radius: 10px;
    }

    .terminal-location-note strong {
        font-size: 18px;
    }

    .terminal-location-note span {
        font-size: 14px;
    }
}
.form-trap{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important}
.privacy-check{display:flex!important;align-items:flex-start;gap:8px;margin:12px 0;font-size:14px;line-height:1.35;text-align:left}
.privacy-check input{width:auto!important;min-width:18px;height:18px;margin:0}
.header-actions{display:flex;align-items:center;gap:12px}
.header-callback{padding:12px 18px;border:0;cursor:pointer}
.language-switch{display:flex;border:1px solid #d8d8d8;border-radius:999px;overflow:hidden;background:#fff}
.language-switch a{padding:8px 10px;color:#202020;text-decoration:none;font-weight:700}
.language-switch a[aria-current="page"]{background:#d9272e;color:#fff}
.consent-panel{position:fixed;z-index:100000;left:20px;bottom:20px;max-width:460px;padding:22px;background:#fff;color:#181818;border-radius:14px;box-shadow:0 10px 40px #0004}
.consent-panel label{display:block;margin:8px 0}.consent-panel button{margin:12px 8px 0 0;padding:10px 14px;border:0;border-radius:7px;cursor:pointer}
.consent-panel #consentSave{background:#d9272e;color:#fff}
.consent-settings{position:fixed;z-index:99990;right:12px;bottom:12px;border:1px solid #ddd;background:#fff;padding:7px 10px;border-radius:8px;cursor:pointer}
@media(max-width:799px){.header-actions{gap:6px}.header-callback{display:none}.consent-panel{left:10px;right:10px;bottom:10px;max-width:none}}
