:root {
    --black: #000000;
    --white: #FFFFFF;
    --gray: #F5F5F5;
    --gray-dark: #6B6968;
    --active: #0D6EFD;
    --red: #D12424;
    --orange: #F28D4F;
    --green: #1B8852;
    --yellow: #ffc107;
    --border-radius: 6px;
    --transition-duration: 0.3s;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    color: inherit;
    font-weight: 700;
}

h1,
.h1 {
    font-size: calc(1.375rem + 1.5vw);
    font-weight: 900;
}

h2,
.h2 {
    font-size: calc(1.325rem + 0.9vw);
}

h3,
.h3 {
    font-size: calc(1.3rem + 0.6vw);
}

h4,
.h4 {
    font-size: calc(1.275rem + 0.3vw);
}

h5,
.h5 {
    font-size: 1.25rem;
}

h6,
.h6 {
    font-size: 1rem;
}

p {
    margin: 0 0 1rem;
}

a {
    color: var(--active);
    user-select: none;
    outline: none;
    text-decoration: none;
    transition: var(--transition-duration);
}

a:hover,
a:focus {
    color: var(--active);
}

button,
.btn,
.btn-stroke {
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    line-height: 1;
    padding: 0.75rem 1rem;
    cursor: pointer;
    outline: none;
    background: var(--gray);
    color: var(--black);
    border: none;
    border-radius: var(--border-radius);
    transition: var(--transition-duration);
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

.btn-stroke {
    padding: 0.63rem 0.9rem;
    color: var(--active);
    border: 2px solid var(--active);
    background: transparent;
}

button:hover,
button.active,
.btn:hover,
.btn.active,
.btn-stroke:hover,
.btn-stroke.active {
    background: var(--active);
    color: var(--white);
}

.btn.btn-exit {
    background: var(--red);
    color: var(--white);
}

ol {
    margin-top: 0;
    padding-left: 1.75rem;
}

ul {
    margin-top: 0;
    padding-left: 1.2rem;
}

ol li,
ul li {
    margin-bottom: 0.5rem;
}

ol li ol,
ol li ul,
ul li ol,
ul li ul {
    margin-top: 0.5rem;
}

img {
    max-width: 100%;
}

html,
body,
.page-content {
    height: 100%;
    min-width: 320px;
}

body {
    display: flex;
    flex-direction: column;
    margin: 0;
    background-color: var(--gray);
    font-size: 1rem;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: var(--black);
    line-height: 1.3;
}

header {
    background-color: var(--white);
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray);
    margin-bottom: 1rem;
}

header.header-fixed {
    margin-bottom: 0;
}

header.header-fixed.active {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
}

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

.logo span {
    line-height: 1;
    text-transform: uppercase;
}

main {
    flex-grow: 1;
}

.color-white {
    color: var(--white);
}

.color-gray {
    color: var(--gray);
}

.color-gray-dark {
    color: var(--gray-dark);
}

.color-active {
    color: var(--active);
}

.color-yellow {
    color: var(--yellow);
}

.color-red {
    color: var(--red);
}

.color-orange {
    color: var(--orange);
}

.color-green {
    color: var(--green);
}

.color-black {
    color: var(--black);
}

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

.text-uppercase {
    text-transform: uppercase;
}

.bg-white {
    background: var(--white);
}

.bg-white-transparent {
    background: rgba(255, 255, 255, .5);
    backdrop-filter: blur(6px);
}

.bg-gray {
    background: var(--gray);
}

.bg-yellow {
    background: var(--yellow);
}

.bg-red {
    background: var(--red);
}

.bg-green {
    background: var(--green);
}

.bg-active {
    background: var(--active);
}

.bg-black {
    background: var(--black);
}

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

.gap-3 {
    gap: 1rem;
}

.gap-4 {
    gap: 1.5rem;
}

.h-100 {
    height: 100%;
}

.overflow-hidden {
    overflow: hidden;
}

.uni-box {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    border-radius: var(--border-radius);
    position: relative;
}

.uni-box-position {
    position: relative;
}

.uni-box-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 10px 0;
    border-bottom: 1px solid var(--active);
    text-transform: uppercase;
}

.uni-box.box-shadow {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.nav.nav-tabs .nav-item {
    margin-bottom: 0;
}

.tab-content > .tab-pane {
    display: none;
}

.tab-content > .active {
    display: block;
}

.hero,
.cta-section {
    background: linear-gradient(90deg, #5E9FFF, #0D6EFD);
}

.benefit-timeline {
    position: relative;
}

.benefit-timeline::before {
    content: "";
    position: absolute;
    left: 19px;
    top: 0;
    width: 2px;
    height: 100%;
    background: #ddd;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.benefit-item .benefit-icon {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--active);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    font-size: 1.5rem;
}

.benefit-item p {
    margin-bottom: 0;
    color: #666;
}

.partner-item {
    text-align: center;
}

.partner-item img {
    max-height: 120px;
    object-fit: contain;
}

.image-radial-shadow {
    width: 300px;
    height: 300px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background: radial-gradient(var(--active), var(--white) 75%);
    border-radius: 50%;
    overflow: hidden;
}

.faq {
    background: var(--gray);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.faq .faq-header {
    position: relative;
    padding: 0.75rem 3rem 0.75rem 1rem;
    border-radius: var(--border-radius);
    font-size: 1.25rem;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}

.faq .faq-header:after {
    content: '\f078';
    font-family: 'FontAwesome';
    font-size: 1rem;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.faq-body {
    height: 0;
    overflow: hidden;
    transition: 0.3s;
}

.faq .faq-body .faq-body-content {
    padding: 1rem 1rem 0;
}

.faq:hover .faq-header,
.faq.open .faq-header {
    color: var(--white);
    background: var(--active);
}

.faq.open .faq-header {
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.faq.open .faq-header:after {
    transform: translateY(-50%) rotate(180deg);
    transition: 0.3s ease-in-out;
}

.form-wrapper {
    height: 0;
    overflow: hidden;
}

form .input-group {
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    user-select: none;
}

form .input-group input:not(input[type="checkbox"]),
form .input-group textarea,
form .input-group select {
    width: 100%;
    padding: 10px 30px;
    border: 2px solid var(--gray);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
}

form .input-group > .fa {
    position: absolute;
    top: 0.75rem;
    left: 0.85rem;
    color: var(--active);
}

form .input-group > .fa ~ input:not(input[type="checkbox"]) {
    padding-left: 38px;
}

form.form-search {
    display: flex;
    flex-direction: row;
    margin-bottom: 0;
}

form.form-search .input-group input:not(input[type="checkbox"]) {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

form.form-search button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

form.form-search .input-group input:not(input[type="checkbox"]):focus {
    border-color: var(--active);
}

form.form-search .input-group input:not(input[type="checkbox"]):focus ~ button {
    background: var(--active);
    color: var(--white);
}

form.form-search .fa {
    font-size: 12px;
    color: var(--active);
    margin-right: 5px;
}

form.form-search button .fa {
    transition: var(--transition-duration);
}

form.form-search .input-group:focus-within .fa {
    color: white;

}


#search-form-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    max-height: 200px;
    overflow-y: auto;
}

#search-form-results .company {
    padding: 10px 16px;
    cursor: pointer;
}

#search-form-results .company:hover {
    background-color: var(--gray);
}

#search-form-results .error {
    padding: 10px 16px;
}

table {
    border-collapse: collapse;
}

table thead tr {
    background: var(--gray);
    text-align: left;
}

table th,
table td {
    padding: 10px;
    border: 1px solid var(--gray);
    vertical-align: baseline;
}

footer {
    color: #666;
}

.footer-logo img {
    max-width: 150px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer a {
    color: #666;
}

footer a:hover {
    color: var(--active);
}

.footer-bottom {
    margin-top: 2rem;
    border-top: 1px solid #eee;
    padding-top: 1rem;
    text-align: center;
    color: #999;
}

.scroll-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 40px;
    height: 40px;
    background-color: var(--active);
    color: var(--white);
    font-size: 1.5rem;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    transition: var(--transition-duration);
}

/* news */
.post-image {
    display: flex;
    background: var(--gray);
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.post-image img {
    object-fit: cover;
    flex-grow: 1;
}

/* Контейнер */
.container-1 {
    max-width: 100%;
    padding: 0 15px;
}

/* Ряд */
.row-1 {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* Колонка */
.col-md-8-1 {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

/* Карточка */
.card-1 {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: none;
    overflow: hidden;
    background-color: #ffffff;
}

/* Заголовок карточки */
.card-header-1 {
    background-color: #007bff;
    color: white;
    font-size: 1.25rem;
    padding: 20px;
    text-align: center;
}

/* Тело карточки */
.card-body-1 {
    display: flex;
    padding: 30px;
    justify-content: center;
}

/* Ряд в форме */
.row-1.mb-3-1 {
    display: flex;
    margin: 25px 0;
}

/* Места для меток и ввода */
.col-form-label-1 {
    font-weight: 600;
    color: #495057;
}

.col-md-4-1 {
    width: 30%;
}

/* Ввод */
.form-control-1 {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ced4da;
    background-color: #fff;
}

/* Ошибки */
.is-invalid-1 {
    border-color: #e3342f;
}

.invalid-feedback-1 {
    display: flex;
    color: #e3342f;
    font-size: 0.875rem;
    margin-top: 20px;
    justify-content: center;
    position: absolute;
    bottom: 174px;
    left: 90px;
}

.invalid-feedback-reLogin {
    display: flex;
    color: #e3342f;
    font-size: 0.875rem;
    margin-top: 20px;
    justify-content: center;
    position: absolute;
    bottom: 280px;
    left: 90px;
}

.feedback {
    display: flex;
    color: green;
    font-size: 0.875rem;
    margin-top: 20px;
    justify-content: center;
    position: absolute;
    bottom: 114px;
    left: 90px;
}

.feedback-account {
    display: flex;
    color: green;
    font-size: 0.875rem;
    margin-top: 20px;
    justify-content: center;
    position: absolute;
    left: 80px;
    top: 60px;
}

.invalid-feedback-2 {
    display: flex;
    color: #e3342f;
    font-size: 0.875rem;
    margin-top: 16px;
    justify-content: center;
    position: absolute;
    bottom: 466px;
    left: 100px;
}

.invalid-feedback-3 {
    display: flex;
    color: #e3342f;
    font-size: 0.875rem;
    margin-top: 20px;
    justify-content: center;
    position: absolute;
    bottom: 274px;
    left: 100px;
}

.invalid-feedback-4 {
    display: flex;
    color: #e3342f;
    font-size: 1rem;
    margin-top: 20px;
    justify-content: center;
    position: absolute;
    bottom: 114px;
    left: 100px;
}

.invalid-feedback-5 {
    display: flex;
    color: #e3342f;
    font-size: 1rem;
    margin-top: 20px;
    justify-content: center;
    position: absolute;
    bottom: 128px;
    left: 195px;
}

.invalid-feedback-6 {
    display: flex;
    color: #e3342f;
    font-size: 1rem;
    margin-top: 20px;
    justify-content: center;
    position: absolute;
    bottom: 216px;
    left: 90px;
    right: 10px;
}

.invalid-feedback-7 {
    display: flex;
    color: #e3342f;
    font-size: 1rem;
    margin-top: 20px;
    justify-content: center;
    position: absolute;
    bottom: 58px;
    left: 16px;
}

/* Для кнопки */
.btn-primary-1 {
    background-color: #007bff;
    border-color: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary-1:hover {
    background-color: #0056b3;
    border-color: #004085;
}

/* Для ссылки */
.btn-link-1 {
    color: #007bff;
    font-size: 0.875rem;
    text-decoration: none;
}

.btn-link-1:hover {
    text-decoration: underline;
}

/* Для чекбокса */
.form-check-1 {
    display: flex;
    align-items: center;
}

.form-check-input-1 {
    margin-right: 10px;
}

.form-check-label-1 {
    font-size: 0.875rem;
    color: #495057;
}

/* Для отступов */
.offset-md-4-1 {
}

.mb-0-1 {
    margin-bottom: 0 !important;
}

.mw-350 {
    max-width: 350px;
}

.coub {
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    line-height: 1;
    padding: 0.75rem 1rem;
    cursor: pointer;
    outline: none;
    background: var(--gray);
    color: var(--black);
    border: none;
    border-radius: var(--border-radius);
    transition: var(--transition-duration);
    display: flex;
    gap: 5px;
    align-items: center;
}

.coub:hover {
    background: var(--active);
    color: var(--white);
}

.page-item.active span, .page-item.active a {
    background: var(--active) !important;
    color: var(--white) !important;
}

.status {
    display: flex;
    gap: 10px
}


#search-company-input {
    padding-left: 130px;
}


form.form-search .input-group:focus-within .fa {
    color: white;
}

.btn-primary:hover .fa {
    color: white;
}

.select-country {
    position: absolute;
    z-index: 10;
    padding: 7px
}

.select-country select {
    height: 28px;
    border: none;
    border-radius: 5px;
    background-color: var(--gray);
}

#select-country {
    background-image: url('/img/flags/kazakhstan.png');
    /* Флаг по умолчанию */
    background-repeat: no-repeat;
    background-position: 5px center;
    background-size: 16px 16px;
    padding-left: 25px;
    height: 30px;
    border: none;
    border-radius: 5px;
    background-color: var(--gray);
}

#country-select option {
    padding-left: 30px;
}

.custom-select {
    position: relative;
    width: 120px;
    cursor: pointer;
}

.selected {
    display: flex;
    align-items: center;
    padding: 4px;
    border-radius: 5px;
    background-color: var(--gray);
    position: relative;
}

.selected img {
    width: 16px;
    height: 16px;
    margin-right: 10px;
}

.selected::after {
    content: "";
    position: absolute;
    right: 5px;
    top: 35%;
    width: 7px;
    height: 7px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    transform: rotate(133deg);
}

.select-options {
    display: none;
    position: absolute;
    width: 100%;
    background: white;
    border: 1px solid #ccc;
    list-style: none;
    padding: 0;
    margin: 0;
}

.select-options li {
    display: flex;
    align-items: center;
    padding: 5px;
    cursor: pointer;
    margin-bottom: 0;
}

.select-options li img {
    width: 16px;
    height: 16px;
    margin-right: 10px;
}

.select-options li:hover {
    background: #f0f0f0;
}

.company-risk {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.company-risk-red {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #D12424;
    margin-bottom: 16px;
}

.company-risk-orange {
    display: flex;
    align-items: center;
    gap: 10px;
    color: orange;
    margin-bottom: 16px;
}

.risk-margin {
    margin: 0;
}

.company-risk-red img {
    padding-bottom: 1rem;
}

.show-more-block-inner {
    max-height: 300px;
    overflow: hidden;
}

.show-more-block-inner.active {
    max-height: none !important;
}

button.show-more-btn {
    width: 100%;
}

.data-img-text {
    display: flex;
    align-items: center;
    gap: 10px;
}

.data-first-letter::first-letter {
    text-transform: uppercase;
}


.actional-margin-left {
    margin-left: -20px;
}

.base-margin-top {
    margin-top: 20px;
}

.input-group-captcha {
    position: relative;
    width: 100%;
    display: flex;
    align-items: stretch;
    user-select: none;
    gap: 10px;
}

form .input-group-captcha input:not(input[type="checkbox"]),
form .input-group-captcha textarea {
    width: 100%;
    padding: 10px 30px;
    border: 2px solid var(--gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
    outline: none;
}


.captcha-img {
    border-radius: 6px;
}


.btn-refresh {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: 10px;
    font-size: 20px;
    color: white;
}

.search-message {
    top: -45px;
    position: absolute;
    z-index: 5;
    margin: 5px 0;
    padding: 0 15px;
    height: 30px;
    color: white;
    display: none;
    align-items: center;
    justify-content: center;
}

.btn-account-exit {
    display: flex;
    gap: 10px;
}

.form-search-z-index {
    z-index: 5;
}

.text-with-subinfo {
    margin-bottom: 2px;
}

.text-with-subinfo__subinfo {
    padding-left: 15px;
}


.director-history {
    text-decoration: line-through;
    color: #73818f;
}


.tax-header {
    flex-grow: 1;
    padding: 10px 0;
    margin-bottom: 1rem;
    border-bottom: 6px solid #B8D7E0;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
}

.tax-header.type1 {
    border-color: #B8D7E0;
}

.tax-header.type2 {
    border-color: #E8D3C8;
}

.tax-header.type3 {
    border-color: #D7E2DC;
}

.tax-header.type4 {
    border-color: #BBCCF8;
}

.tax-header.type5 {
    border-color: #F2E6AD;
}

.tax-header.type6 {
    border-color: #DFAEED;
}

.tax-header.type7 {
    border-color: #E8B2B2;
}


.nav-link--liquidation {
    max-width: 75%;
    padding: 5px 0;
    padding: 5px 4px;
}

.nav-link--liquidation::after {
    content: url("/img/icons/arrow-down.svg");
}

.block-liquidation {
    margin-bottom: 7px;
}

.block-liquidation__contents {
    background-color: #ebe9e9;
    padding-left: 30px;
    margin-top: 7px;
    border-radius: 5px;
    padding-top: 7px;
    padding-bottom: 1px;
}

.block-liquidation--closed {
    display: none;
}

.block-liquidation--open {
    display: block;
}

.app-table__title {
    font-size: 32px;
}

.app-table__sum {
    text-align: right;
    color: #645f5f;
}

.app-table td {
    border: 1px solid #acabab;
    vertical-align: middle;
    font-size: 18px;
}

.app-table td:first-child {
    border-left: none;
    max-width: 350px;
}

.app-table td:last-child {
    border-right: none;
}

.app-table__row-main {
    border-bottom: 1.5px solid #585757;
    font-weight: bold;
}

.app-table__row-main td {
    border: none;
    text-align: right;
    font-size: 17px;
}

.app-table__row-summary {
    border-bottom: 1.5px solid #585757;
    font-weight: bold;
}

.response-container--scroll {
    overflow-x: auto;
}

.btn-popover {
    cursor: pointer;
    margin: 10px 0;
}

.custom-popover {
    position: absolute;
    top: 60px;
    left: 230px;
    background-color: white;
    border: 2px solid #f5f5f5;
    padding: 15px;
    width: 300px;
    border-radius: 8px;
    display: none;
    z-index: 1000;
}

.custom-popover h2 {
    font-size: 18px;
    margin-top: 0;
}

.custom-popover p {
    margin: 8px 0;
}

.custom-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.custom-list li::before {
    content: "– ";
    margin-right: 4px;
}

.cert-and-decl-controls-pane {
    padding-left: 0;
    display: flex;
    flex-direction: row;
}

.cert-and-decl-cont {
    display: flex;
}

.cert-and-decl-cont__cert {
    display: flex;
    flex-direction: column;
    row-gap: 11px;
    max-width: 390px;
    margin-right: 180px;
}

.cert-and-decl-cont__cert button {
    width: 390px;
}

.cert-and-decl-cont__decl {
    display: flex;
    flex-direction: column;
    row-gap: 11px;
    max-width: 390px;
}

.cert-and-decl-cont__decl button {
    width: 390px;
}

.cert-and-decl-decl {
    flex-grow: 1;
}

.bs-btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    transition: none;
}

.bs-btn--active {
    font-weight: bold;
    font-size: 1.3rem;
}

.bs-btn-success {
    color: #fff;
    background-color: #198754;
    border-color: #198754;
}

.bs-btn-success:hover {
    background-color: #198754;
}

.bs-btn-success--active,
.bs-btn-success--active:hover {
    background-color: #34c031;
}

.bs-btn-danger {
    color: #fff;
    background-color: #bb2d3b;
    border-color: #dc3545;
}

.bs-btn-danger:hover {
    background-color: #bb2d3b;
}

.bs-btn-danger--active,
.bs-btn-danger--active:hover {
    background-color: #dc3545;
}

.bs-btn-secondary {
    color: #fff;
    background-color: #5c636a;
    border-color: #6c757d;
}

.bs-btn-secondary:hover {
    background-color: #5c636a;
}

.bs-btn-secondary--active,
.bs-btn-secondary--active:hover {
    background-color: #bababa;
}

.bs-btn-info {
    color: #fff;
    background-color: #0dcaf0;
    border-color: #0dcaf0;
}

.bs-btn-info:hover {
    background-color: #0dcaf0;
}

.bs-btn-info--active,
.bs-btn-info--active:hover {
    background-color: #6be6ff;
}

.bs-btn-warning {
    color: #fff;
    background-color: #d1a10e;
    border-color: #ffc107;
}

.bs-btn-warning:hover {
    background-color: #d1a10e;
}

.bs-btn-warning--active,
.bs-btn-warning--active:hover {
    background-color: #ffc107;
}

.cert-and-decl__pagination {
    display: flex;
    gap: 8px;
    margin-left: -20px;
    list-style: none;
    flex-wrap: wrap;
}

.coub--active {
    background: var(--active) !important;
    color: var(--white) !important;
}

.btn-cert-decl {
    display: flex;
    gap: 10px;
}


.msp-neg-ru {
    display: flex;
    align-items: center;
    gap: 10px;
}

.msp-neg-ru-top {
    display: flex;
    align-items: center;
    gap: 10px;
}

.msp-neg-ru-top img {
    width: 48px;
}

.msp-neg-ru-top li {
    font-size: 12px;
    margin: 0;
}

.nav-link.active .notif-1 {
    color: #fff;
}

.notif-1 {
    display: inline-block;
    color: var(--active);
    animation: pop 1.5s ease-in-out infinite;
    margin-left: 5px;
}

@keyframes pop {

    0%,
    100% {
        transform: scale(0.8);
    }

    50% {
        transform: scale(1);
    }
}

.nav-link:hover .notif-1 {
    color: #fff;
}


.risk-font-size-data {
    font-size: 12px;
}

#mapContainer {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    max-width: 98%;
    max-height: 98%;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    z-index: 1000;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}


.map-button {
    margin-top: -1rem;
    margin-bottom: 1rem;
}

#closeMap {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 1100;
    border: 1px solid transparent;
    transition: border-color 0.3s;
    border-color: #c0c0c0;
}

.container-map #panorama {
    display: none;
    width: 600px;
    max-width: 100%;
    height: 200px;
}

.container-map #map {
    width: 600px;
    max-width: 100%;
    height: 400px;
    overflow: hidden;

}

#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.map-button .fa-map-marker-alt {
    color: #007bff;
}

.map-button #showMapLink {
    cursor: pointer;
    text-decoration: underline;
}

/*стили для кнопок yandex maps (криво рисуются)*/
.ymaps-2-1-79-islets_round-button__icon {
    margin-left: 6px !important;
    margin-top: 6px !important;
}

/*конец:стили для кнопок yandex maps (криво рисуются)*/


/* стили для 404 страниц*/
.container-404-kz,
.container-404-by {
    height: 100vh;
}

.container-404-kz .error-main h5 {
    display: inline-block;
    height: 50px;
    border-bottom: 2px solid #0D6EFD;
    padding-top: 6px;
    padding-bottom: 12px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 900;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 20px;
}

.container-404-kz .error-main h5 span {
    color: #0D6EFD;
}

.container-404-kz .error-main p {
    margin: 0 auto;
    font-family: Segoe UI;
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;

}

.container-404-kz .button-to-main-page {
    width: 126px;
    height: 36px;
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 10px;
    padding-left: 20px;
    gap: Space/200;
    border-radius: 6px;
    border-width: 1px;
    background: #F5F5F5;
    border: 1px solid var(----active, #0D6EFD)
}

.container-404-kz .button-to-main-page:hover {
    background-color: #0D6EFD;
    color: #e0e0e0;
    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.4);
    transform: translateY(-2px);
}

.container-404-by .error-main h5 {
    font-family: 'Roboto Condensed', Arial, sans-serif;
    font-weight: 900;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: white;
}

.container-404-by .error-main h5 span {
    color: #d84b3b;
}

.container-404-by .error-main p,
.container-404-by .error-main a {
    font-family: 'Unbounded', Arial, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;


}

.container-404-by .button-to-main-page {
    font-family: 'Roboto Condensed', Arial, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 0%;
    text-decoration-skip-ink: auto;
    color: #d84b3b;
}

body.has-404-dazor {
    background-color: #B0B9BD;
}

/*конец:стили 404 страниц*/

.position-title-download {
    display: flex;
    justify-content: space-between;
}

.download-button {
    margin: auto;
    background: none;
    border: 2px solid var(--active);
    color: var(--active);
}

.download-list {
    display: none;
    position: absolute;
    top: 30%;
    right: 0px;
    background: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    z-index: 1000;
    list-style: none;
    max-height: 500px;
    overflow-y: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 325px;
}

.position-restore-password {
    height: 55vh;
    display: flex;
    align-content: center;
}

.bell-hover:hover {
    color: white;
}


.table-finance {
    font-weight: bold;
    background-color: #f0f0f0;
}

/*модальное окно*/
#contactManagerModal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
}

#contactManagerModal .modal-dialog {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.20);
    position: relative;
    z-index: 10001;
}

#contactManagerModal .modal-content {
    border: none;
    border-radius: 8px;
}

#contactManagerModal .modal-header .close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
}

#contactManagerModal .modal-backdrop {
    z-index: 10000;
}

/*конец: модальное окно*/

.custom-select-finance {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 10px 40px 10px 15px;
    font-size: 16px;
    border-radius: 8px;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D'12'%20height%3D'8'%20viewBox%3D'0%200%2012%208'%20xmlns%3D'http%3A//www.w3.org/2000/svg'%3E%3Cpath%20d%3D'M6%208L0%200h12L6%208z'%20fill%3D'%23999'%20/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px 8px;
    cursor: pointer;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.custom-select-finance:focus {
    border-color: var(--active);
    box-shadow: 0 0 0 3px var(--active);
    outline: none;
}

.dazor__main .uni-box,
.dazor__main .nav-tabs .nav-link {
    border: 1px solid var(----grey, #B0B9BD);
}


.table-finance-report {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Segoe UI', sans-serif;
    font-size: 15px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.table-finance-report th,
.table-finance-report td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #eaeaea;
}

.table-finance-report thead th {
    background-color: #f7f9fb;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #ccc;
}

.table-finance-report tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.table-finance-report tbody tr:hover {
    background-color: color-mix(in srgb, var(--active) 10%, transparent);
}

.table-finance-report .table-finance td {
    font-weight: bold;
    background-color: color-mix(in srgb, var(--active) 15%, transparent);
}

.main-finances {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
}

.font-size-12 {
    font-size: 12px;
}

.margin-top {
    margin-top: 20px;
}

/* Стили для ссылок пагинации */
.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    font-size: 14px;
    font-weight: 500;
    color: #374151; /* темно-серый */
    background-color: #fff;
    border: 1px solid #d1d5db; /* светло-серый */
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
}

/* Текущая страница */
.pagination span[aria-current="page"] {
    cursor: default;
    font-weight: 700;
}

/* Ссылки при наведении */
.pagination a:hover {
    background-color: #e0e7ff; /* светло-синий */
    border-color: #3b82f6;
    color: #1e40af; /* темно-синий */
}

/* Ссылки отключены */
.pagination span[aria-disabled="true"] {
    color: #9ca3af; /* серый */
    cursor: default;
    background-color: #f9fafb;
    border-color: #d1d5db;
}

/* Иконки стрелок */
.pagination svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.popup-main {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border: 1px solid #ccc;
    padding: 20px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
}

.popup-overlay-main {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}

.main-text-with-tooltip:hover {
    color: var(--active);
}

.tooltip-popup {
    position: fixed;
    top: 200px;
    left: 50%;
    transform: translateX(-50%);
    color: #000;
    /*border: 1px solid #ccc;*/
    /*border-radius: 6px;*/
    /*box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);*/
    font-size: 14px;
    display: none;
    z-index: 9999;
    width: 1000px;
    text-align: center;
}

.overflow-account-page {
    overflow-y: auto;
    height: 239px;
    list-style: none;
}

.overflow-account-page-pdf {
    overflow-y: auto;
    height: 140px;
    list-style: none;
}

.account-page-ul {
    list-style: none;
    padding-left: 0;
}

.account-page-li {
    display: flex;
    justify-content: space-between;
}


.link-kib-daz {
    color: black;
    text-decoration: none;
    transition: color 0.3s;
}

.link-kib-daz:hover {
    color: var(--active);
}

.buttons-ru {
    display: flex;
    align-items: center;
    gap: 10px;
}


.margin-left-20 {
    margin-left: 20px;
}

.margin-top--15 {
    margin-top: -15px;
}

.custom-dd { position: relative; }
.custom-dd .dd-toggle { background: none; border: 0; padding: 6px 10px; cursor: pointer; }
.custom-dd .dropdown-menu {
    color: black;
    position: absolute;
    top: 100%; left: 0;
    display: none;
    min-width: 250px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    padding: 8px 0;
    z-index: 1100; /* выше шапки и любых оверлеев */
    max-height: 70vh; overflow: auto; /* чтобы «всплывало» вниз со скроллом */
    margin: 0;
}
.custom-dd.open > .dropdown-menu { display: block; }
/* ссылки внутри */
.custom-dd .dropdown-item {
    display: block;
    padding: 8px 8px;
    color: #111; text-decoration: none;
}
.custom-dd .dropdown-item:hover { background: rgba(0,0,0,.04); }

/* если что-то перекрывает клики — поднимем списки выше */
.forwho-list, .features-list, .dropdown-menu { position: relative; z-index: 1100; }


.download-button[disabled] {
    opacity: .6;
    cursor: not-allowed;
    pointer-events: none;
}
