@charset "UTF-8";
@font-face {
    font-family: "Open Sans";
    src: url("../fonts/OpenSans-Variable.ttf");
}
* {
    font-family: "Open Sans", sans-serif!important;
}

/* Box sizing rules */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin-block-start: 0;
    margin-block-end: 0;
}

/* Prevent font size inflation */
html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
    margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
    list-style: none;
}

/* Set core body defaults */
body {
    line-height: 1.5;
    background-color: #FFF;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
    line-height: 1.1;
}

/* A elements that don't have a class get default styles */
a {
    text-decoration-skip-ink: auto;
    color: currentColor;
    text-decoration: none;
}

/* Make images easier to work with */
img,
picture {
    max-width: 100%;
    display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
    font: inherit;
}

/* Make sure textarea without a rows attribute are not tiny */
textarea:not([rows]) {
    min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
    scroll-margin-block: 5ex;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}
@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}
@media (min-width: 1300px) {
    .container {
        max-width: 1200px;
    }
}
.alert {
    margin: 40px 0 100px;
}
@media (max-width: 991px) {
    .alert {
        margin: 40px 0 50px;
    }
}
.alert p {
    font-style: normal;
    font-weight: 300;
    font-size: 12px;
    line-height: 142%;
    color: #464646;
}
@media (max-width: 991px) {
    .alert p {
        font-size: 10px;
    }
}
.alert p:not(:last-child) {
    margin-bottom: 10px;
}
@media (max-width: 991px) {
    .alert p:not(:last-child) {
        margin-bottom: 6px;
    }
}
.alert a, .alert span {
    color: #FF473E!important;
}

.stage {
    margin-bottom: 80px;
}
.stage-body {
    display: grid;
    grid-template-columns: 375px 1fr;
    gap: 60px;
}
@media (max-width: 991px) {
    .stage-body {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}
.stage__info {
    height: fit-content;
    padding: 35px;
    background: linear-gradient(180deg, #363636 0%, #555555 140.05%);
    border-radius: 40px;
}
.stage__info-title {
    margin-bottom: 20px;
    font-style: normal;
    font-weight: 700;
    font-size: 25px;
    line-height: 102%;
    color: #FFFFFF;
}
.stage__info-subtitle {
    max-width: 240px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 115%;
    color: #FFFFFF;
    margin-bottom: 35px;
}
.stage__info-sum {
    display: grid;
    grid-template-columns: 90px 1fr;
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 102%;
    color: #FFFFFF;
    margin-bottom: 20px;
}
.stage__info-sum span {
    font-weight: 700;
}
.stage__info-date {
    display: grid;
    grid-template-columns: 90px 1fr;
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 102%;
    color: #FFFFFF;
    margin-bottom: 35px;
}
.stage__info-date span {
    font-weight: 700;
}
.stage__info-text {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 115%;
    color: #FFFFFF;
    margin-bottom: 25px;
}
.stage__info-progress {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.stage__info-progress::before {
    position: absolute;
    content: " ";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #FFFFFF;
}
.stage__info-progress-item {
    position: relative;
    width: 24px;
    height: 24px;
    background: #FFFFFF;
    border: 1px solid var(--starlink-red-strong);
    border-radius: 50%;
}
.stage__info-progress-item.passed {
    background: var(--starlink-red-strong);
    border: 1px solid var(--starlink-red-strong);
}
.stage__info-progress-item.passed::after {
    display: block;
    content: "✔";
    font-size: 14px;
    color: #75E591;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}
.stage__info-progress-item.active {
    border: 1px solid #75E591;
}
.stage__info-progress-item.active::after {
    display: block;
    content: " ";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #75E591;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}
.stage__form {
    padding: 50px 40px;
    background: #FDF3E1;
    border-radius: 40px;
}
@media (max-width: 991px) {
    .stage__form {
        padding: 30px 15px;
    }
}
.stage__form-title {
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 115%;
    color: #000000;
    margin-bottom: 15px;
}
.stage__form-fio {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
@media (max-width: 1199px) {
    .stage__form-fio {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 991px) {
    .stage__form-fio {
        grid-template-columns: 1fr;
    }
}
.stage__form input[type=text], .stage__form input[type=email], .stage__form input[type=number] {
    height: 45px;
    background: #FFFFFF;
    border-radius: 100px;
    border: none;
    outline: none;
    width: 100%;
    padding: 0 14px;
}
.stage__form-patronymic {
    margin-top: 25px;
    margin-bottom: 40px;
}
.stage__form-patronymic label {
    user-select: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 7px;
}
.stage__form-patronymic label::before {
    width: 16px!important;
    height: 16px!important;
    border: 1px solid var(--starlink-red-strong)!important;
    color: var(--starlink-red-strong)!important;
    font-size: 12px!important;
    border-radius: 5px!important;
    background: none!important;
    margin-right: 0!important;
}
.stage__form-gender {
    margin-bottom: 40px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
}
.stage__form-gender input {
    display: none;
}
.stage__form-gender label {
    width: fit-content;
    user-select: none;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 115%;
    color: #000000;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
}
.stage__form-gender label::before {
    flex-shrink: 0;
    content: " "!important;
    position: relative!important;
    display: block!important;
    width: 13px!important;
    height: 13px!important;
    border-radius: 50%!important;
    background: none!important;
    border: 1px solid #000000!important;
}
.stage__form-gender input:checked + label::before {
    background-color: var(--starlink-red-strong)!important;
    border: 1px solid var(--starlink-red-strong)!important;
}
.stage__form-block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}
@media (max-width: 991px) {
    .stage__form-block {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 35px;
    }
}
.stage__form-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px;
    margin-bottom: 32px;
}
.stage__form-card-item {
    height: fit-content;
    display: grid;
    grid-template-columns: 1fr;
}
.stage__form-card-item img {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 55px;
    height: 55px;
    margin-bottom: 20px;
}
.stage__form-card-item p {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 131%;
    color: #000000;
}
.stage__form-card-item a {
    display: none;
}
.stage__form-card-btns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px;
    margin-bottom: 35px;
}
.stage__form-card-btns a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 56px;
    background: var(--starlink-red-strong);
    border-radius: 400px;
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 20px;
    color: #FFFFFF;
    text-align: center;
}
@media (max-width: 1199px) {
    .stage__form-card {
        gap: 24px;
    }
    .stage__form-card-btns {
        gap: 24px;
    }
}

@media (max-width: 991px) {
    .stage__form-card-btns {
        display: none;
    }
    .stage__form-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .stage__form-card-item a {
        margin-top: 20px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 56px;
        background: var(--starlink-red-strong);
        border-radius: 400px;
        font-style: normal;
        font-weight: 700;
        font-size: 15px;
        line-height: 20px;
        color: #FFFFFF;
        text-align: center;
    }
}
.stage__form-select {
    position: relative;
    user-select: none;
}
.stage__form-select-label {
    position: absolute;
    z-index: 1;
    left: 15px;
    top: 6px;
    font-style: normal;
    font-weight: 400;
    font-size: 10px;
    line-height: 115%;
    color: rgba(0, 0, 0, 0.5);
}
.stage__form-select-value {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: block;
    height: 45px;
    background-color: #FFFFFF;
    border-radius: 100px;
}
.stage__form-select-value span {
    position: absolute;
    bottom: 8px;
    left: 15px;
    text-wrap: nowrap;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 115%;
    color: #000000;
}
.stage__form-select-value img {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
.stage__form-select-list {
    z-index: 5;
    position: absolute;
    top: 47px;
    max-height: 150px;
    width: 100%;
    background-color: #FFF;
    border-radius: 20px;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 15px;
}
.stage__form-select-list::-webkit-scrollbar {
    display: none;
}
.stage__form-select-list-item {
    user-select: none;
    cursor: pointer;
    padding-bottom: 15px;
    border-bottom: 1px solid #D3D3D3;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 115%;
    color: rgba(0, 0, 0, 0.5);
}
.stage__form-select-list-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.stage__form-files-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.stage__form-files-header h1 {
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 115%;
    color: #000000;
}
.stage__form-files-header span {
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 115%;
    text-align: right;
    color: rgba(0, 0, 0, 0.5);
}
.stage__form-btns {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.stage__form-btns-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 80px;
    height: 60px;
    background: var(--starlink-red-strong);
    border-radius: 400px;
    border: none;
    outline: none;
    user-select: none;
    cursor: pointer;
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 20px;
    color: #FFFFFF;
}
.stage__form-btns-prev {
    user-select: none;
    cursor: pointer;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
}
.stage__form-mobile-prev {
    display: none;
}
@media (max-width: 991px) {
    .stage__form-btns-prev {
        display: none;
    }
    .stage__form-mobile-prev {
        width: fit-content;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 8px;
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 26px;
    }
    .stage__form-btns {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .stage__form-btns-submit {
        width: 100%;
    }
}

.stage__form .input_box.-error input {
    border: 1px solid red;
}

.account-body {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 50px;
}

.account__nav {
    height: fit-content;
    background: linear-gradient(180deg, #363636 0%, #555555 140.05%);
    border-radius: 40px;
    padding: 40px 55px 60px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
}

.account__nav-item {
    position: relative;
    width: fit-content;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 102%;
    letter-spacing: -0.01em;
    color: #FFFFFF;
}

.account__nav-item:hover {
    color: #FFFFFF;
}

.account__nav-item img, .account__nav-item span {
    z-index: 1;
}

.account__nav-item.active::before {
    position: absolute;
    content: " ";
    display: block;
    width: 290px;
    height: 50px;
    background-color: #E44322;
    border-radius: 30px;
    left: -20px;
}

.account__order {
    height: fit-content;
    background: #FDF3E1;
    border-radius: 40px;
    padding: 35px 40px;
}

.account__order-title {
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 115%;
    color: #000000;
    margin-bottom: 24px;
}

.account__order-reject {
    padding: 15px 20px;
    background: #FFFFFF;
    border-radius: 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

.account__order-reject-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.account__order-reject-item-text p:first-child {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 102%;
    color: #130E21;
}

.account__order-reject-item-text .reject {
    margin-top: 12px;
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 102%;
    color: #D20B00;
}

.account__order-reject-item-status {
    user-select: none;
    background: #A1A1A1;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    height: 41px;
    width: 160px;
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    line-height: 125%;
    color: #FFFFFF;
}

.account__order-reject-item-repeat {
    cursor: pointer;
    user-select: none;
    background: var(--starlink-red-strong);
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 7px;
    height: 41px;
    width: 160px;
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    line-height: 125%;
    color: #FFFFFF;
}

.account__order-reject-item-repeat:hover {
    color: #FFFFFF;
}

.account__order-reject-item-partner {
    user-select: none;
    background: #FFA129;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 7px;
    height: 41px;
    width: 160px;
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    line-height: 125%;
    color: #FFFFFF;
}

.account__order-reject-item-partner:hover {
    color: #FFFFFF;
}

.account__order-info {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 30px;
}

.account__order-info p {
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 102%;
    color: #130E21;
}

.account__order-payinfo {
    max-width: 400px;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 125%;
    color: rgba(0, 0, 0, 0.5);
}

@media (max-width: 991px) {
    .account-body {
        grid-template-columns: 1fr;
    }

    .account__nav {
        display: none;
    }

    .account__order {
        border-radius: 20px;
        padding: 30px 15px;
    }

    .account__order-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .account__order-reject {
        padding: 25px 15px;
        border-radius: 20px;
        gap: 35px;
    }

    .account__order-reject-item {
        display: grid;
        grid-template-columns: 1fr;
        justify-content: start;
        align-items: start;
        gap: 15px;
    }

    .account__order-reject-item-status, .account__order-reject-item-repeat, .account__order-reject-item-partner {
        width: 100%;
    }
}

.account__order-status {
    padding: 15px 20px;
    background: #FFFFFF;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.account__order-status-text p:first-child {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 102%;
    color: #130E21;
}

.account__order-status-text .await {
    margin-top: 11px;
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 102%;
    color: rgba(0, 0, 0, 0.5);
}

.account__order-status-btn {
    height: 41px;
    width: 165px;
    background: #99B390;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 125%;
    color: #FFFFFF;
}

@media (max-width: 991px) {
    .account__order-status {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.account__order-approved {
    padding: 15px 20px;
    background: #FFFFFF;
    border-radius: 16px;
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 30px;
}

.account__order-approved-text p:first-child {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 102%;
    color: #130E21;
}

.account__order-approved-text .await {
    margin-top: 11px;
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 102%;
    color: rgba(0, 0, 0, 0.5);
}

.account__order-approved-sms {
    margin-top: 25px;
    display: grid;
    grid-template-columns: 1fr;
}

.account__order-approved-sms-input {
    justify-self: center;
    outline: none;
    text-align: center;
    width: 100%;
    height: 40px;
    background: #FFFFFF;
    border: 1px solid #CFCFCF;
    border-radius: 100px;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 115%;
    margin-bottom: 12px;
}

.account__order-approved-sms-input:focus {
    border: 1px solid var(--starlink-red-strong);
}

.account__order-approved-sms-repeat {
    width: fit-content;
    justify-self: center;
    text-align: center;
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 115%;
    text-decoration-line: underline;
    color: #000000;
}

.account__order-approved-sms-sbp {
    margin-bottom: 24px;
}

.account__order-approved-sms-sbp-border {
    border: 1px solid #CFCFCF;
}

.account__order-approved-sms-confirm {
    margin-top: 15px;
    height: 40px;
    background: var(--starlink-red-strong);
    border-radius: 100px;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 125%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
}

.account__order-approved-sms-confirm:hover {
    color: #FFF;
}

.account__order-issued {
    padding: 15px 20px;
    background: #FFFFFF;
    border-radius: 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

.account__order-issued-item {
    display: grid;
    grid-template-columns: 1fr 70px 115px;
    gap: 20px;
}

.account__order-issued-item-text p:first-child {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 102%;
    color: #130E21;
}

.account__order-issued-item-text p.issued {
    margin-top: 10px;
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 102%;
    color: rgba(0, 0, 0, 0.5);
}

.account__order-issued-item-input {
    justify-self: flex-end;
    background: #F6F6F6;
    border-radius: 10px;
    border: none;
    outline: none;
    max-width: 70px;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 115%;
    text-align: center;
    color: #000000;
    height: 50px;
}

.account__order-issued-item-btn {
    background: var(--starlink-red-strong);
    border-radius: 100px;
    border: none;
    outline: none;
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 125%;
    color: #FFFFFF;
    height: 50px;
}

.account__order-issued-item-btn:hover {
    color: #FFF;
}

@media (max-width: 991px) {
    .account__order-issued-item {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .account__order-issued-item-input {
        max-width: 100%;
        width: 100%;
    }
}

.account-menu {
    background: linear-gradient(180deg, #363636 0%, #555555 140.05%);
}

.account-menu-logout {
    max-width: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 60px;
    margin-left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 70px);
    background: transparent;
    border: 2px solid #FFF;
    border-radius: 183px;
    height: 52px;
    font-style: normal;
    font-weight: 800;
    font-size: 22px;
    line-height: 31px;
    color: #FFFFFF;
}

.history-title {
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 115%;
    color: #000000;
    margin-bottom: 20px;
}

.history__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.history__list-item {
    background: #FDF3E1;
    border-radius: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    row-gap: 10px;
    padding: 35px;
}

.history__list-item-data {
    background: #FFFFFF;
    border-radius: 20px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 102%;
    color: #130E21;
    text-align: center;
    padding: 15px 10px;
}

.history__list-item-data span {
    margin-left: 4px;
}

@media (max-width: 991px) {
    .history__list-item {
        border-radius: 20px;
        grid-template-columns: 1fr;
        row-gap: 15px;
        padding: 30px 15px;
    }

    .history__list-item-data {
        font-size: 14px;
        border-radius: 15px;
    }
}

.docs {
    background: #FDF3E1;
    border-radius: 40px;
    padding: 40px 50px;
    height: fit-content;
}

.docs-title {
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 115%;
    color: #000000;
    margin-bottom: 18px;
}

.docs__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.docs__list-item {
    padding: 13px 30px;
    background: #FFFFFF;
    border-radius: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 102%;
    color: #130E21;
}

@media (max-width: 991px) {
    .docs {
        border-radius: 20px;
        padding: 30px 15px;
    }

    .docs-title {
        font-size: 18px;
    }

    .docs__list {
        gap: 15px;
    }

    .docs__list-item {
        border-radius: 15px;
    }
}

.data {
    background: #FDF3E1;
    border-radius: 40px;
    padding: 40px 50px;
    height: fit-content;
}

.data-title {
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 115%;
    color: #000000;
    margin-bottom: 18px;
}

.data__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 40px;
}

.data__list-item {
    padding: 15px 30px;
    background: #FFFFFF;
    border-radius: 20px;
    gap: 10px;
    display: grid;
    grid-template-columns: 200px 1fr;
}

.data__list-item-label {
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 102%;
    color: #130E21;
}

.data__list-item-value {
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 102%;
    color: #130E21;
}

.data-link, .data-link:hover {
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 102%;
    letter-spacing: 0.04em;
    text-decoration-line: underline;
    color: var(--starlink-red-strong);
}

@media (max-width: 991px) {
    .data {
        border-radius: 20px;
        padding: 30px 15px;
    }

    .data-title {
        font-size: 18px;
    }

    .data__list-item {
        grid-template-columns: 1fr;
        gap: 8px;
        border-radius: 15px;
    }
}

.cards {
    background: #FDF3E1;
    border-radius: 40px;
    padding: 40px 50px;
    height: fit-content;
}

.cards-title {
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 115%;
    color: #000000;
    margin-bottom: 18px;
}

.cards__list {
    background-color: #FFFFFF;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    border-radius: 20px;
    padding: 30px 40px;
    margin-bottom: 40px;
}

.cards__list-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
}

.cards__list-item img {
    width: 55px;
    height: 55px;
}

.cards__list-item-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.cards__list-item-info-pan {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 102%;
    letter-spacing: 0.04em;
    color: #130E21;
}

.cards__list-item-info-status {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 102%;
    color: #9A9A9A;
    width: fit-content;
}

.cards-link, .cards-link:hover {
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 102%;
    letter-spacing: 0.04em;
    text-decoration-line: underline;
    color: var(--starlink-red-strong);
}

@media (max-width: 991px) {
    .cards {
        border-radius: 20px;
        padding: 30px 15px;
    }

    .cards-title {
        font-size: 18px;
    }

    .cards__list {
        padding: 30px 15px;
    }

    .cards__list-item {
        gap: 10px;
    }

    .cards__list-item-info-pan {
        font-size: 15px;
    }

    .cards__list-item-info-status {
        font-size: 12px;
    }
}

.account__calc {
    background: #FDF3E1;
    border-radius: 40px;
    padding: 40px 35px;
}

.account__calc-title {
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 115%;
    color: #000000;
    margin-bottom: 25px;
}

.account__calc-phone {
    grid-column: 1/3;
}

.account__calc-total {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 15px;
}

.account__calc-total-phone-input {
    height: 52px;
    background: #FFFFFF;
    border-radius: 100px;
    width: 100%;
    border: none;
    outline: none;
    padding: 0 10px;
}

.account__calc-total-info {
    display: grid;
    grid-template-columns: 1fr .5fr;
    gap: 8px;
}

.account__calc-total-text {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 17px;
    color: #130E21;
}

.account__calc-total-value {
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #130E21;
}

.account__calc-btn {
    border: none;
    outline: none;
    width: 260px;
    height: 58px;
    background: var(--starlink-red-strong);
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
}

@media (max-width: 991px) {
    .account__calc {
        border-radius: 20px;
        padding: 30px 15px;
    }

    .account__calc-total-info {
        grid-template-columns: 1fr;
    }

    .account__calc-btn {
        width: 100%;
    }

    .account__calc-total {
        grid-template-columns: 1fr;
    }
}

.calc__form-text {
    color: #FF473E;
    font-size: 18px;
    text-align: center;
}

@media (max-width: 991px) {
    .calc__form-text {
        font-size: 14px;
        text-align: center;
    }
}

.account__no-order-title {
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 115%;
    color: #000000;
    margin-bottom: 24px;
    text-align: center;
}

.account__no-order-btn {
    margin: 0 auto;
    width: 200px;
    height: 57px;
    background: var(--starlink-red-strong);
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    color: #FFFFFF;
    border: none;
    outline: none;
}

.account__banner {
    background: #FFE5BF;
    margin-bottom: 40px;
    border-radius: 40px;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 24px;
}

.account__banner-title {
    color: #2B3140;
    text-align: center;
    font-size: 28px;
}

.account__banner-text {
    color: #2B3140;
    text-align: center;
    font-size: 18px;
}

.account__banner-link {
    background: linear-gradient(180deg, #363636 0%, #555555 140.05%);
    padding: 8px 16px;
    font-size: 24px;
    font-weight: 700;
    color: #FFFF;
    display: flex;
    border-radius: 40px;
    justify-content: center;
    align-items: center;
    text-align: center;
}

@media (max-width: 991px) {
    .account__banner {
        padding: 40px 15px;
    }

    .account__banner-title {
        font-size: 24px;
    }

    .account__banner-text {
        font-size: 16px;
    }

    .account__banner-link {
        font-size: 20px;
    }
}

.calc__form-input-label {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.calc__form-input-label label {
    width: 100%;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #515151;
}

.calc__form-input-label span {
    width: 100%;
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 26px;
    text-align: right;
    color: #2B3140;
}

@media (max-width: 991px) {
    .calc__form-input-label span {
        font-size: 18px;
        line-height: 20px;
    }
}

.calc__form-input input {
    margin-top: 10px;
    -webkit-appearance: none;
    width: 100%;
    height: 10px;
    border-radius: 5px;
    background: #D6D6D6;
    outline: none;
    cursor: pointer;
}

.calc__form-input input::-webkit-slider-runnable-track {
    height: 10px;
    border-radius: 5px;
    background: linear-gradient(to right, var(--starlink-red-strong) var(--progress), #D6D6D6 var(--progress));
}

.calc__form-input input::-moz-range-track {
    height: 10px;
    background: #D6D6D6;
    border-radius: 5px;
}

.calc__form-input input::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: var(--starlink-red-strong);
    border: 4px solid #fff;
    box-shadow: 0 0 0 3px var(--starlink-red-strong);
    margin-top: -7px;
    position: relative;
    z-index: 2;
}

.calc__form-input input::-moz-range-thumb {
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: var(--starlink-red-strong);
    border: 4px solid #fff;
    box-shadow: 0 0 0 3px var(--starlink-red-strong);
    cursor: pointer;
}

.calc__form-input-legend {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calc__form-input-legend span {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 17px;
    color: #515151;
}