@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

/* Основные стили для меню */
body {
    margin: 0;
    font-family: "Noto Sans", sans-serif;
    padding-top: 20px;
    background-color: #FCFBFE;
}

header {
    background-color: transparent;
    padding: 10px 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
    font-family: "Noto Sans", sans-serif;
}

p {
    font-size: 16px;
}

#reg .custom-checkbox {
    width: 640px;
}

.btn-success {
    border: none;
    padding: 10px 16px;
    font-size: 16px;
    cursor: pointer;
    color: #fff;
    border-radius: 12px;
}

.btn-primary {
    border-radius: 12px;
    background: #492982;
    border: none;
    padding: 10px 16px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

.btn-primary:hover {
    background: #492982;
    color: #fff;
}

.btn-primary.focus,
.btn-primary:focus {
    background-color: #492982;
    border-color: #492982;
    box-shadow: none;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
    background-color: #492982;
    border-color: #492982;
    box-shadow: none;
}

.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show>.btn-primary.dropdown-toggle:focus {
    box-shadow: none;
}

.btn-secondary {
    border-radius: 12px;
    background: transparent;
    border: 1px solid #492982;
    padding: 10px 16px;
    color: #492982;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
}

/* #reg,
.form-control:disabled,
.form-control[readonly] {
    background: transparent !important;
} */

.btn-secondary:hover {
    background: #492982;
    border: 1px solid #492982;
    color: #fff;
    text-decoration: none;
}

.btn-secondary.focus,
.btn-secondary:focus {
    background-color: #492982;
    border-color: #492982;
    box-shadow: none;
}

.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show>.btn-secondary.dropdown-toggle {
    background-color: #492982;
    border-color: #492982;
    box-shadow: none;
}

.btn-secondary:not(:disabled):not(.disabled).active:focus,
.btn-secondary:not(:disabled):not(.disabled):active:focus,
.show>.btn-secondary.dropdown-toggle:focus {
    box-shadow: none;
}

.btn-danger {
    border-radius: 12px;
    background: transparent;
    border: 1px solid #bd2130;
    padding: 10px 16px;
    color: #bd2130;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
}

/* #reg,
.form-control:disabled,
.form-control[readonly] {
    background: transparent !important;
} */

.btn-danger:hover {
    background: #bd2130;
    color: #fff;
    text-decoration: none;
}

.btn-danger.focus,
.btn-danger:focus {
    background-color: #bd2130;
    border-color: #bd2130;
    box-shadow: none;
}

.btn-danger:not(:disabled):not(.disabled).active,
.btn-danger:not(:disabled):not(.disabled):active,
.show>.btn-danger.dropdown-toggle {
    background-color: #bd2130;
    border-color: #bd2130;
    box-shadow: none;
}

.btn-danger:not(:disabled):not(.disabled).active:focus,
.btn-danger:not(:disabled):not(.disabled):active:focus,
.show>.btn-danger.dropdown-toggle:focus {
    box-shadow: none;
}

header ul {
    list-style: none;
    display: flex;
    flex: 1;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

header ul li {
    color: #000;
    cursor: pointer;
}

header ul li a {
    font-size: 16px;
    color: #000;
    cursor: pointer;
}

a:hover {
    text-decoration: none;
    color: #000;
}

.logo {
    flex: 1;
    /* Логотип будет слева */
}

.btn_group {
    flex: 1;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

@media (min-width: 768px) {
    .d-mm-none {
        display: none;
    }
}

@media (max-width: 992px) {
    .logo {
        flex: 0;
    }

    header ul {
        flex: 2;
    }
}
#notice_email img {
    margin-bottom: 4px;
}
/* Стили для мобильной версии */
@media (max-width: 768px) {
    #menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background-color: #fff;
        display: block !important;
        transition: 0.3s;
        z-index: 1;
        box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
        padding: 60px 60px 0 60px;
    }

    #menu li {
        margin: 20px 0;
        text-align: left;
    }

    #menu button {
        padding: 0 40px 0 0 !important;
    }

    .btn_group a {
        display: none;
    }

    /* Гамбургер меню */
    .hamburger {
        display: block;
        cursor: pointer;
        width: 24px;
        height: 24px;
        position: relative;
        z-index: 1;
    }

    .hamburger div {
        width: 100%;
        height: 3px;
        background-color: #492982;
        margin: 5px 0;
        transition: 0.3s;
        border-radius: 2px;
    }

    /* Анимация открытия меню */
    .hamburger.active div:nth-child(1) {
        transform: rotate(45deg) translate(6px, 4px);
    }

    .hamburger.active div:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active div:nth-child(3) {
        transform: rotate(-45deg) translate(7.5px, -5px);
    }

    #documents .dropdown-menu {
        position: relative;
        margin: 10px 0 !important;
        box-shadow: none !important;
        border: 0;
    }

    #userAccount .dropdown-menu {
        position: relative;
        margin: 10px 0 !important;
        box-shadow: none !important;
        border: 0;
    }

    #menu li:last-child {
        margin-top: 0!important;
    }

    .reg_btn  {
        margin-top: 60px!important;
    }

    #notice_email {
        display: flex;
        align-items: center;
        gap: 4px;
        font-size: 12px;
    }
    #notice_email img {
        margin-bottom: 0;
    }
    /* Слайд-меню открыто */
    #menu.open {
        left: 0;
    }

    #menu li:last-child {
        margin-top: 30px;
    }

    .custom_width {
        width: 100% !important;
    }

    .reg_form {
        padding: 16px !important;
    }

    .footer {
        display: block !important;
    }

    #footer_menu ul {
        display: block !important;
        padding-inline-start: 0px;
        text-align: center;
    }

    #footer_logo {
        justify-content: center !important;
        margin-bottom: 30px;
    }

    .ref_block input {
        width: 100% !important;
    }

    .ref_block {
        display: block !important;
    }

    .footer_logo {
        justify-content: center;
    }

    .gmr_block {
        display: block !important;
        margin-bottom: 20px !important;
    }

    .chart-container {
        width: 100% !important;
        height: 100% !important;
    }

    .chart-info {
        width: 100% !important;
    }

    .mothly_date {
        margin: 15px 0 !important;
    }

    .gmr_bg {
        margin-bottom: 20px !important;
    }

    .gmr_mt {
        margin-top: 0 !important;
    }

    .partner_pd {
        padding: 14px !important;
    }

    main {
        padding: 0 10px;
    }

    .ref_block button {
        width: 100%;
        margin-top: 15px;
    }

    .dashboard_gap {
        display: block !important;
    }

    .table_content {
        overflow: scroll;
    }

    .overflow-sroll {
        overflow: scroll;
    }

    .step-indicator {
        display: none !important;
    }

    #step-1 .d-flex {
        display: block !important;
    }

    .form-step.active {
        min-height: auto !important;
        height: 100% !important;
    }

    .pos-abs {
        position: relative !important;
        margin-top: 15px;
    }

    .payment-option {
        width: 100% !important;
    }

    .step3_mg {
        margin-bottom: 0 !important;
        display: block !important;
    }

    .payment_results:last-child {
        margin-top: 15px;
    }

    #myModalAdd .modal-dialog {
        max-width: 100% !important;
    }

    #myModalEdit .modal-dialog {
        max-width: 100% !important;
    }

    #myModalAdd .d-flex {
        display: block !important;
    }

    #myModalAdd .form-group {
        width: 100% !important;
    }

    #myModalAdd select {
        width: 100% !important;
    }



    #myModalEdit .d-flex {
        display: block !important;
    }

    #myModalEdit .form-group {
        width: 100% !important;
    }

    #myModalEdit select {
        width: 100% !important;
    }


    .myd-none input {
        margin-top: 15px;
    }


    .w-50 {
        margin-top: 15px;
        width: 100% !important;
    }

    .title_payment {
        margin-bottom: 20px !important;
    }

    .input-container {
        margin: 10px 0;
    }

    .filter_block .dropdown-container {
        flex-direction: column;
    }

    .filter_block_payment .dropdown-container {
        flex-direction: column;
    }
}



#languages {
    border: 1px solid #492982;
    padding: 10px 16px;
    color: #492982;
    border-radius: 12px;
    background-color: transparent;
    text-align: left;
    text-transform: uppercase;
    width: 86px;
    background-image: url('https://support.aiokk.kz/img/chevron.svg');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 14px;
}



#langs .dropdown-menu {
    padding: 0;
    margin: 0;
    min-width: 46px;
    border-radius: 8px !important;
    border: 1px solid #492982;
    top: 110%;
}

#langs .dropdown button:hover,
#langs .dropdown button:focus {
    outline: 0;
}

#langs .dropdown.open button#dLabel {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;

    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.23);
    border: solid 1px #666;
    border-bottom: none;
}

#langs .dropdown.open ul {
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.23);
    border: solid 1px #492982;
    border-top: none;
    height: 100%;
    overflow-y: scroll;
    padding-inline-start: 0;
    width: 86px;
}

#langs .dropdown-menu li:first-child {
    border-radius: 8px 8px 0 0;
    border-top: 0;
}

#langs .dropdown-menu li:last-child {
    border-radius: 0 0 8px 8px;
}

#langs .dropdown-menu li {
    line-height: 1.5;
    color: #000;
    font-size: 16px;
    cursor: pointer;
    padding: 7.5px 15px;
    border-top: solid 1px #f3f3f3;
    margin: 0;
    width: max-content;
    text-transform: uppercase;
    text-align: center;
    border-radius: 8px !important;
}

#langs .dropdown-menu.show {
    top: 4px !important;
    left: 0;
    right: auto !important;
}

/* Account */
#accDropdown {
    border: none;
    padding: 10px 16px;
    color: #000;
    border-radius: 12px;
    background-color: transparent;
    text-align: left;
    background-image: url('https://support.aiokk.kz/img/chevron.svg');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 14px;
    padding-right: 40px;
}

#userAccount .dropdown-menu {
    padding: 12px 16px;
    margin: 0;
    min-width: 46px;
    border-radius: 8px !important;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);

}

#userAccount .dropdown button:hover,
#userAccount .dropdown button:focus {
    outline: 0;
}

#userAccount .dropdown.open button#dLabel {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;

    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.23);
    border: solid 1px #666;
    border-bottom: none;
}

#userAccount .dropdown.open ul {
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.23);
    border: solid 1px #492982;
    border-top: none;
    height: 100%;
    overflow-y: scroll;
    padding-inline-start: 0;
    width: 86px;
}

#userAccount .dropdown-menu li:first-child {
    border-radius: 8px 8px 0 0;
    border-top: 0;
}

#userAccount .dropdown-menu li:last-child {
    border-radius: 0 0 8px 8px;
}

#userAccount .dropdown-menu li {
    line-height: 1.5;
    color: #000;
    font-size: 16px;
    cursor: pointer;
    padding: 7.5px 15px;
    border-top: solid 1px #E1E1E1;
    margin: 0;
    text-align: left;
    border-radius: 0 !important;
    min-width: max-content;
}

#userAccount .dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 4px;
    width: 100%;
}

#userAccount .dropdown-menu li a:hover {
    color: #492982 !important;
}

#userAccount .dropdown-menu.show {
    top: 4px !important;
    right: 0;
    left: auto !important;
    border: none;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    display: block !important;
}

/* docsDropdown */
#documentsDropdown {
    border: none;
    padding: 10px 16px;
    color: #000;
    border-radius: 12px;
    background-color: transparent;
    text-align: left;
    background-image: url('https://support.aiokk.kz/img/chevron.svg');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 14px;
    padding-right: 40px;
}

#documents .dropdown-menu {
    padding: 12px 16px;
    margin: 0;
    min-width: 46px;
    border-radius: 8px !important;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);

}

#documents .dropdown button:hover,
#documents .dropdown button:focus {
    outline: 0;
}

#documents .dropdown.open button#dLabel {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;

    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.23);
    border: solid 1px #666;
    border-bottom: none;
}

#documents .dropdown.open ul {
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.23);
    border: solid 1px #492982;
    border-top: none;
    height: 100%;
    overflow-y: scroll;
    padding-inline-start: 0;
    width: 86px;
}

#documents .dropdown-menu li:first-child {
    border-radius: 8px 8px 0 0;
    border-top: 0;
}

#documents .dropdown-menu li:last-child {
    border-radius: 0 0 8px 8px;
}

#documents .dropdown-menu li {
    line-height: 1.5;
    color: #000;
    font-size: 16px;
    cursor: pointer;
    padding: 7.5px 15px;
    border-top: solid 1px #E1E1E1;
    margin: 0;
    text-align: left;
    border-radius: 0 !important;
    min-width: max-content;
}

#documents .dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 4px;
    width: 100%;
}

#documents .dropdown-menu li a:hover {
    color: #492982 !important;
}

#documents .dropdown-menu.show {
    top: 4px !important;
    right: 0;
    left: auto !important;
    border: none;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
    border-radius: 12px;
}

/* footer */
footer {
    margin-bottom: 70px;
}

.footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.footer_logo {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.footer_logo span {
    color: #707070;
    margin-bottom: -2px;
    width: max-content;
}

.footer_menu ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 40px;
    margin: 0;
    margin-bottom: -2px;
}

.align_bottom {
    align-items: flex-end;
}

.footer_menu ul>li>a {
    color: #707070;
}


/* registration */
.reg_form {
    padding: 0 32px 32px 32px;
}

.reg_block {
    margin: 0 auto;
    border-radius: 16px;
}

.p-50 {
    margin: 50px 0;
}

.w-80 {
    max-width: 82%;

}

.head_txt h2 {
    font-family: "Noto Sans", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.head_txt p {
    color: #707070;
}

label {
    margin-bottom: 4px;
    font-weight: 500;
    color: #000;
}

form input {
    padding: 10px 16px !important;
    border-radius: 12px !important;
    border-color: #E1E1E1 !important;
}

.custom_width {
    width: 640px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0 auto;
}


.custom_width p {
    color: #707070;
    margin-bottom: 8px;
}

.custom_width a {
    color: #492982 !important;
    text-decoration: underline;
}

/* Скрываем оригинальный чекбокс */
.custom-checkbox {
    position: relative;
}

.custom-checkbox input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    left: 0;
}

/* Стили для чекбокса */
.custom-checkbox label {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: white;
    border: 2px solid #492982;
    border-radius: 6px;
    position: relative;
    cursor: pointer;
}

/* Стили для состояния, когда чекбокс выбран */
.custom-checkbox input[type="checkbox"]:checked+label {
    background-color: #492982;
    border-color: #492982;
}

.change_result .custom-checkbox input[type="checkbox"]:checked+label::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 5px;
    width: 8px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Стили для галочки */
.custom-checkbox input[type="checkbox"]:checked+label::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 4px;
    width: 8px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* dropdown input */
.dropdown-input {
    position: relative;
}

.dropdown-list {
    position: absolute;
    top: 110%;
    left: 0;
    right: 0;
    z-index: 10;
    border: 1px solid #ccc;
    background-color: #fff;
    display: none;
    max-height: 200px;
    overflow-y: auto;
    list-style: none;
    padding: 0;
    margin: 0;
    border-radius: 12px;
}

.dropdown-list li {
    padding: 8px;
    cursor: pointer;
}

.dropdown-list li:hover {
    background-color: #f1f1f1;
}

/* Устанавливаем кастомные стили для прокрутки на основе WebKit */
::-webkit-scrollbar {
    width: 8px;
    /* Устанавливаем ширину скроллбара */
}

::-webkit-scrollbar-track {
    background: transparent;
    /* Убираем фон у трека */
}

::-webkit-scrollbar-thumb {
    background-color: #492982;
    /* Цвет ползунка */
    border-radius: 10px !important;
    /* Скругляем углы ползунка */
    border: 2px solid transparent;
    /* Убираем обводку у ползунка */
}

/* Убираем стрелки у скроллбара */
::-webkit-scrollbar-button {
    display: none !important;
    /* Полностью скрываем стрелки */
}

/* Стили для Firefox */
* {
    scrollbar-width: thin;
    /* Тонкий скроллбар в Firefox */
    scrollbar-color: #492982 transparent;
    /* Цвет ползунка и прозрачный фон */
}

/* Скругление углов для скроллбара в Firefox */
::-moz-scrollbar-thumb {
    border-radius: 10px !important;
    /* Скругляем углы в Firefox */
}

.btn-primary.disabled,
.btn-primary:disabled {
    background-color: #4a298266;
}

.input-group-append {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;

}

.is-invalid~.input-group-append {
    right: 20px;
}

.input-group-text {
    background: transparent;
    border: none;
}

.modal-body p {
    color: #707070;
}

.modal-content {
    padding: 32px;

}

#goToTelegram {
    width: 100%;
}

.modal-dialog {
    max-width: 50%;
    /* Устанавливаем ширину 80% от ширины экрана */
}

@media (min-width: 992px) {
    .modal-dialog {
        max-width: 50%;
        /* Для больших экранов ширина будет 70% */
    }
}

@media (max-width: 992px) {
    .modal-dialog {
        max-width: 70%;
        /* Для больших экранов ширина будет 70% */
    }
}

@media (max-width: 768px) {
    .modal-dialog {
        max-width: 80%;
        /* Для больших экранов ширина будет 70% */
    }

    .btn_group {
        margin-right: 0 !important;
    }


    .btn_group #userAccount {
        display: none;
    }

    #userAccount .dropdown-menu.show {
        position: relative !important;
        width: -webkit-fill-available;
        transform: none !important;
        box-shadow: none !important;
        padding: 0 16px;
    }

    #accDropdown {
        padding-left: 0;
    }

    header {
        padding: 0 10px;
    }

    .col-md-6 {
        width: 100%;
        max-width: 100%;
        flex: none;
    }

    .adaptive {
        margin-top: 0 !important;
    }

    .adaptive .col-md-6 {
        width: 100% !important;
        max-width: 100% !important;
    }

    .edit_company .d-flex {
        display: block !important;
    }

    .company_block button {
        margin-top: 20px;
        width: 100%;
    }
}



.btn_group {
    margin-right: -20px;
}

.auth_block {
    max-width: 600px;
    margin: 0 auto;
}

.auth_btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.link_style {
    color: #492982;
}

.link_style:hover {
    color: #707070;
}

.rp_block {
    max-width: 600px;
    margin: 0 auto;
}

.rp_btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rp_btn p {
    color: #000;
    margin-bottom: 0;
}

.g-2 {
    gap: 8px;
}

.notice {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 4px;
    font-size: 12px;
    line-height: 2;
}

#country {
    background-image: url('https://partner.aiokk.io/img/chevron.svg');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 14px auto;
}

#currency {
    background-image: url('https://partner.aiokk.io/img/chevron.svg') !important;
    background-repeat: no-repeat !important;
    background-position: right 10px center !important;
    background-size: 14px auto !important;
}

.r_block {
    max-width: 600px;
    margin: 0 auto;
}

.r_btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.r_btn p {
    color: #000;
    margin-bottom: 0;
}



.tooltip-inner ul {
    padding-inline-start: 12px !important;
    margin-bottom: 0;
}

.bs-tooltip-auto[x-placement^=top] .arrow::before,
.bs-tooltip-top .arrow::before {
    border-top-color: #fff;
}

.bs-tooltip-auto[x-placement^=bottom] .arrow::before,
.bs-tooltip-bottom .arrow::before {
    border-bottom-color: #fff;
}

.valid-condition {
    color: green !important;
    text-align: left;
}

.invalid-condition {
    color: red !important;
    text-align: left;
}

#myModal .modal-dialog {
    max-width: 600px;
}

#myModal .modal-content {
    border-radius: 16px;
}

#myModal .close {
    float: right;
    font-size: 30px;
    font-weight: 400;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: 1;
    position: absolute;
    top: -20px;
    right: -18px;
}

#myModal .modal-body {
    padding: 0;
}

.partner_header {
    border-radius: 14px;
    border: var(--Gap-Space_x0, 1px) solid var(--Stroke-divider-main, #E1E1E1);
    background: #FFF;
    padding: 12px 24px;
}

.partner_pd {
    padding: 24px;
    border: var(--Gap-Space_x0, 1px) solid var(--Stroke-divider-main, #E1E1E1);
    background: var(--Colors-Background-New-background-primary, #FFF);

    border-radius: 14px;

}

.partner_mg {
    margin-top: 40px;
}

.partner_mg_FB {
    margin-top: 40px;
}

#footer_menu {
    width: 100%;
}

#footer_menu ul {
    list-style: none;
    display: flex;
    align-items: end;
    justify-content: flex-end;
    width: 100%;
    padding: 0;
    margin: 0;
    gap: 40px;
    padding-inline-start: 0;

}

#footer_menu ul li a {
    text-decoration: underline;
    color: #707070;
}

#footer_menu ul li a:hover {
    color: #000;
}














.header_txt {
    margin-bottom: 20px;
}

.header_txt h5 {
    font-weight: 600;
    font-size: 24px;
}

.header_txt p {
    color: #707070;
}





.gmr_block {
    display: flex;
    align-items: center;
    background-color: #FAF7FE;
    padding: 20px;
    border-radius: 14px;
    gap: 20px;
    width: 100%;
    min-height: 376px;
}

.chart-container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: nowrap;
    height: 326px;
}

.chart-info {
    position: relative;
    width: 55%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
    flex-direction: column;
}

.chart-label {
    position: absolute;
    top: 55.5%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.percent {
    font-size: 40px;
    font-weight: bold;
    color: #000;
    margin-bottom: 0;
}

.amount {
    font-size: 20px;
    font-weight: bold;
    color: #000;
    margin-bottom: 0;
    line-height: 1;
}

.total {
    font-size: 12px;
    font-weight: bold;
    color: #707070;
    margin-bottom: 0;
}





.info-block {
    background-color: rgba(255, 255, 255, 0.19);
    padding: 18px;
    border-radius: 10px;
    border: 1px solid #D0C2E9;
    flex: 1;
    height: 150px;
    overflow: hidden;
    width: 100%;
}

.info-block p {
    margin-bottom: 4px;
    font-size: 14px;
    color: #707070;
}

.highlight {
    font-size: 20px !important;
    font-weight: bold;
    color: #000 !important;
    margin-bottom: 0 !important;
}



.gmr_bg {
    background-color: #FAF7FE;
    padding: 20px;
    border-radius: 14px;
    width: 100%;
}


.gmr_bg h4 {
    font-size: 26px;
    font-weight: bold;
    margin: 0 0;
}

.gmr_bg h5 {
    margin: 0;
    font-size: 13px;
}

.gmr_bg p {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.40);
    margin-bottom: 0;
}

.second_line {
    margin-top: 18px;
}

.gmr_mt {
    margin-top: 30px;
}

.highlight {
    white-space: nowrap;
    /* Запрещаем перенос текста на новую строку */
    overflow: hidden;
    /* Скрываем часть текста, выходящую за границу блока */
    text-overflow: ellipsis;
    /* Добавляем многоточие в конце */
    padding-right: 10px;
    /* Добавляем отступ справа (можете настроить под нужный размер) */
    display: block;
    /* Убедитесь, что элемент ведет себя как блочный для корректного срабатывания */
    max-width: 100%;
    /* Установите нужную ширину для обрезки текста */
}

.mothly_date {
    margin-bottom: 0;
    text-align: center;
    font-size: 14px;
    color: #707070;
}

.chart-container h5 {
    display: flex;
    align-items: center;
    gap: 4px;
}

.chart-container h5 span svg {
    margin-top: -3px;
}

.green_tab {
    padding: 4px;
    border: 1px solid #0E7C3A;
    background-color: #EDFDF3;
    color: #0E7C3A;
    border-radius: 4px;
    padding-left: 14px;
    position: relative;
    font-size: 12px;
    width: 20px;
    height: 20px;
}

.green_tab::before {
    content: url('https://support.aiokk.kz/img/chevron_up_duo.svg');
    position: absolute;
    left: 1.5px;
    top: 1px;
}


.red_tab {
    padding: 4px;
    border: 1px solid #F00;
    background-color: #FDEDED;
    color: #DB1C1C;
    border-radius: 4px;
    padding-left: 14px;
    position: relative;
    font-size: 12px;
    width: 20px;
    height: 20px;
}

.red_tab::before {
    content: url('https://support.aiokk.kz/img/chevron_down_duo.svg');
    position: absolute;
    left: 1.5px;
    top: 1px;
}

.ref_block {
    gap: 12px;
}

.ref_block p {
    margin-bottom: 0;
}

.ref_block input {
    width: 600px;
    height: 43px;
    border-radius: 12px;
    border: 1px solid #E1E1E1;
    padding: 11px 16px;
    color: #707070 !important;
}

.ref_input {
    position: relative;
}

.ref_input span {
    position: absolute;
    right: 16px;
    top: 9px;
    background-color: #fff;
}


.nav-pills {
    gap: 8px;
    max-width: max-content;
    border: 1px solid #F5F5F5;
    background: #FCFCFC;
    padding: 4px 8px;
    border-radius: 5px;
}

.nav-link {
    padding: 4px 8px;
    border-radius: 4px;
    border: none;
    background-color: #F5F5F5;
    color: #707070;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: #F0EBF8;
    color: #492982;
}

.modal_ref h5 {
    margin-bottom: 24px;
}

.send_client_email {
    justify-content: flex-start;
    gap: 8px;
}

.client_email {
    border: 1px solid #707070;
    border-radius: 12px;
    padding: 9px 16px;
    flex: 1;
}

#send_to_client {
    min-width: 220px;
}

/* Анимация прелоадера */
.loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-bottom: -3px;
    border: 2px solid #fff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.gmr_bg div {
    gap: 4px;
}

@media (max-width: 1200px) {
    .gmr_bg h5 {
        white-space: nowrap;
        /* Запрещаем перенос текста на новую строку */
        overflow: hidden;
        /* Скрываем часть текста, выходящую за границу блока */
        text-overflow: ellipsis;
        /* Добавляем многоточие в конце */
        padding-right: 10px;
        /* Добавляем отступ справа (можете настроить под нужный размер) */
        display: block;
        /* Убедитесь, что элемент ведет себя как блочный для корректного срабатывания */
        max-width: 100%;
    }

    .gmr_bg h4 {
        white-space: nowrap;
        /* Запрещаем перенос текста на новую строку */
        overflow: hidden;
        /* Скрываем часть текста, выходящую за границу блока */
        text-overflow: ellipsis;
        /* Добавляем многоточие в конце */
        padding-right: 10px;
        /* Добавляем отступ справа (можете настроить под нужный размер) */
        display: block;
        /* Убедитесь, что элемент ведет себя как блочный для корректного срабатывания */
        max-width: 100%;
    }

    .gmr_bg p {
        white-space: nowrap;
        /* Запрещаем перенос текста на новую строку */
        overflow: hidden;
        /* Скрываем часть текста, выходящую за границу блока */
        text-overflow: ellipsis;
        /* Добавляем многоточие в конце */
        padding-right: 10px;
        /* Добавляем отступ справа (можете настроить под нужный размер) */
        display: block;
        /* Убедитесь, что элемент ведет себя как блочный для корректного срабатывания */
        max-width: 100%;
    }

    #footer_menu ul {
        gap: 10px;
    }
}

@media (max-width: 992px) {
    .col-md-6 {
        width: 100%;
        max-width: 100%;
        flex: none;
    }

    .adaptive .col-md-6 {
        width: 50%;
        max-width: 50%;
    }

    .gmr_bg {
        margin-top: 15px;
        margin-bottom: 0 !important;
    }

    .gmr_block {
        margin-bottom: 0 !important;
    }

    .gmr_mt {
        margin-top: 0;
    }

    .ref_input input {
        width: 475px;
    }

    .footer {
        display: block !important;
    }

    .footer_logo {
        justify-content: center;
    }

    #footer_menu ul {
        margin-top: 15px;
        justify-content: center;
    }

    #footer_menu ul li a {
        font-size: 14px;
    }

    .adaptive {
        margin-top: 15px;
    }
}

@media (max-width: 540px) {
    .send_client_email {
        display: block !important;
    }

    .send_client_email input {
        width: 100% !important;
    }

    .send_client_email button {
        margin-top: 15px;
        width: 100% !important;
    }
}

.btn-primary,
.btn-success {
    transition: background-color 0.4s ease, color 0.4s ease;
    /* Плавная смена фона и текста */
}

/* Анимация для плавного появления текста */
.button-text {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.button-text.show {
    opacity: 1;
}






/* edit account */
.edit_bg {
    padding: 24px;
    border: 1px solid #E1E1E1;
    border-radius: 16px;
}

.edit_company h6 {
    font-size: 20px !important;
}

input {
    padding: 10px 16px !important;
    border-radius: 12px !important;
    border-color: #E1E1E1 !important;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: #FCFBFE;
}

.company_block {
    gap: 16px;
}

.company_block div {
    flex: 1;
}

.mt-20 {
    margin-top: 20px;
}

.align-items-end {
    align-items: flex-end !important;
}

#sendToEmail {
    padding: 7px 16px !important;
    min-width: 220px;
}

#edit_safe {
    padding: 7px 16px !important;
    min-width: 220px;
    margin-top: 20px;
}

.modal-account-edit .modal-body {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.card {
    position: relative;
    min-width: 285px;
    min-height: 285px;
    margin: 0 auto;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: none;
}

.card .circle {
    position: absolute;
    width: 200px;
    height: 200px;
    top: 42px;
    background: transparent;
    border-radius: 50%;
}

.card .circle-outer {
    position: absolute;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    top: 42px;
    box-sizing: border-box;
    background: transparent;
    border: 3px solid #492982;
}

.card .icon {
    position: absolute;
    z-index: 2;
    top: 110px;
    fill: none;
    stroke-width: 2px;
    stroke: #492982;
    stroke-linecap: round;
    stroke-dasharray: 325 325;
}

.card .icon.mail {
    width: 120px;
    height: 70px;
    stroke-dashoffset: 0;
}

.card .icon.plane {
    width: 120px;
    height: 110px;
    stroke-dashoffset: 325;
}

.card .button {
    position: absolute;
    top: 290px;
    z-index: 10;
    width: 200px;
    height: 45px;
    line-height: 43px;
    background: transparent;
    border: 1px solid #0ea5ea;
    color: #fff;
    text-align: center;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.card .button:hover {
    background: linear-gradient(90deg, #0ea5ea, #0bd1d1 51%, #0ea5ea);
    transition: all 0.3s ease-in-out;
}

.card .button.reset {
    opacity: 0;
    z-index: 5;
}

.close_modal {
    width: 100%;
    margin-bottom: 0;
}

.card #chck {
    display: none;
    position: absolute;
    top: 0;
}

.card #chck:checked~.button {
    animation: button 1.5s ease-in-out 1.7s;
    animation-fill-mode: both;
}

.card #chck:checked~.reset {
    animation: reset 1s ease-in-out 3.7s;
    animation-fill-mode: both;
}

.card #chck:checked~.circle {
    animation: circle 1s ease-in-out;
    animation-fill-mode: both;
}

.card #chck:checked~.circle-outer {
    animation: circle 0.8s ease-in-out 0.2s;
    animation-fill-mode: both;
}

.card #chck:checked~.mail {
    stroke-dashoffset: 326;
    transition: stroke-dashoffset 1s ease-in-out;
}

.card #chck:checked~.plane {
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 1s ease-in-out 0.6s;
    animation: fly 2.4s ease-in-out;
    animation-fill-mode: both;
}

@keyframes fly {

    0%,
    50% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    60% {
        transform: translate3d(-10px, 5px, 0) scale(1.05);
    }

    70% {
        opacity: 1;
    }

    85% {
        opacity: 0;
    }

    100% {
        transform: translate3d(300px, -150px, 0) scale(0.4);
        opacity: 0;
    }
}

@keyframes circle {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    20% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes button {
    0% {
        transform: scale(1);
    }

    30% {
        background: #0ea5ea;
        color: transparent;
        width: 200px;
        left: 0;
    }

    50%,
    60% {
        width: 40px;
        left: 80px;
        transform: scale(1);
    }

    70% {
        transform: scale(1.1);
    }

    100% {
        width: 40px;
        left: 80px;
        background: #0ea5ea;
        color: transparent;
        transform: scale(0);
    }
}

@keyframes reset {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.login_edit a {
    position: absolute;
    right: 10px;
    top: 5px;
}

.login_edit {
    position: relative;

}

.edit_login .modal-dialog {
    max-width: 500px;
}

.edit_login h3 {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
}

.edit_login label {
    font-size: 16px;
    font-weight: 500;
}

.change_login {
    gap: 8px;
    margin-top: 15px;
    align-items: center;
}

.edit_login .modal-content {
    padding: 24px;
    border-radius: 14px;
}

.change_login p {
    margin-bottom: 0;
}

.change_login label {
    margin-bottom: 0;
}

.btn-block {
    margin-top: 20px;
    gap: 12px;
}

.btn-block button {
    width: 100%;
}

.custom-tooltip .tooltip-inner {
    max-width: fit-content !important;
    background-color: #fff;
    color: #000;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 8px 12px;
    border-radius: 12px;
    text-align: left;
}

.custom-tooltip .tooltip-inner ul {
    margin-left: 5px;
}

.custom-tooltip .tooltip-inner ul li {
    text-align: left;
}

#modalEditLogin .notice svg {
    margin-bottom: 4px;
}

/* #myChart {
    padding: 20px;
} */

.gap-3 {
    gap: 8px !important;
}

ul.tabs {
    display: flex;
    padding: 8px;
    align-items: center;
    gap: 8px;
    border-radius: 5px;
    border: 1px solid #F5F5F5;
    background: #FCFCFC;
    width: fit-content;
}

ul.tabs li {
    display: flex;
    padding: 4px 8px;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    background: #F5F5F5;
    cursor: pointer;
}

ul.tabs li.active {
    display: flex;
    padding: 4px 8px;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    background: #F0EBF8;
    color: #492982;

}

.tab_container {
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    align-self: stretch;
    border-radius: 18px;
    border: 1px solid #E1E1E1;
    background: #FFF;
}

.tab_content {
    display: none;
}

.tab_drawer_heading {
    display: none;
}

@media screen and (max-width: 480px) {
    .tabs {
        display: none;
    }

    .tab_drawer_heading {
        background-color: #ccc;
        color: #fff;
        border-top: 1px solid #333;
        margin: 0;
        padding: 5px 20px;
        display: block;
        cursor: pointer;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .d_active {
        background-color: #666;
        color: #fff;
    }
}

.table_content {
    display: flex;
    flex-direction: column;
}

.tab_content h2 {
    font-size: 20px;
    margin-bottom: 0;
    line-height: 1.5;
}

.tab_content {
    width: 100%;
}

.filter_block {
    margin-top: 16px;
    margin-bottom: 16px;
}

.fiter_input {
    background-color: transparent;
    background: url('https://partner.aiokk.io/img/chevron.svg');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 14px;
}

.filter_btn {
    display: flex;
    height: 36px;
    padding: 6px 8px;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    border: 1px solid #707070;
    background-color: transparent;
}


.filter_block .dropdown-container {
    display: flex;
    gap: 10px;

}

.filter_block_payment .dropdown-container {
    display: flex;
    gap: 10px;

}

.filter_block .dropdown {
    position: relative;
    width: 100%;
}

.filter_block .dropdown input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
}

.filter_block .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
    box-sizing: border-box;
    z-index: 10;
    border-radius: 12px;
}

.filter_block .dropdown-menu label {
    display: block;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.filter_block .dropdown-menu label input[type="text"] {
    width: 100%;
    margin-left: 5px;
    border: 1px solid #ccc;
    padding: 5px;
    border-radius: 4px;
}

.filter_block .dropdown input[type="checkbox"],
.filter_block .dropdown input[type="radio"] {
    margin-right: 8px;
    width: auto !important;
}



#amount-to_payment {
    margin-top: 8px;
}





.filter_block_payment .dropdown-container {
    display: flex;
    gap: 10px;

}

.filter_block_payment .dropdown-container {
    display: flex;
    gap: 10px;

}

.filter_block_payment .dropdown {
    position: relative;
    width: 100%;
}

.filter_block_payment .dropdown input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
}


.filter_block_payment .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
    box-sizing: border-box;
    z-index: 10;
    border-radius: 12px;
}

.filter_block_payment .dropdown-menu label {
    display: block;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.filter_block_payment .dropdown-menu label input[type="text"] {
    width: 100%;
    margin-left: 5px;
    border: 1px solid #ccc;
    padding: 5px;
    border-radius: 4px;
}

.filter_block_payment .dropdown input[type="checkbox"],
.filter_block_payment .dropdown input[type="radio"] {
    margin-right: 8px;
    width: auto !important;
}

.amount-dropdown span {
    position: absolute;
    bottom: 12px;
    left: 19px;
    /* color: ; */
}

.p-relative {
    position: relative;
}

.amount-pd {
    padding-left: 65px !important;
}

#amount-to {
    margin-top: 8px;
}

.padding_btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.table {
    border-spacing: 0;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.table thead {
    background-color: #F5F5F5 !important;
    border-bottom: 2px solid #dee2e6;
    height: 30px;
    border-radius: 12px 12px 0 0;
}

.table th {
    padding: 4px 20px 4px 8px;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
    color: #707070;
    font-weight: 600;
}

.table th:first-child {
    border-radius: 12px 0 0 0;
}

.table th:last-child {
    border-radius: 0px 12px 0 0;
}

.table tbody>tr {
    background-color: #fff !important;
}

.table td {
    padding: 0 8px;
    height: 70px;
    text-align: left;
    border-bottom: 1px solid #fff;
    vertical-align: middle;
    border-bottom: 2px solid #ccc;
}

.table-hover tbody tr:hover {
    background-color: #f1f1f1;
}

.table td.text-center a {
    text-decoration: none;
    font-size: 16px;
}

.text-danger {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url(https://support.aiokk.kz/img/TrashSimple.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px;
}

.text-danger:hover {
    background-image: url(https://support.aiokk.kz/img/TrashSimple-1.svg);
}

.text-primary {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url(https://support.aiokk.kz/img/PencilSimpleLine.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px;
}

.text-primary:hover {

    background-image: url(https://support.aiokk.kz/img/PencilSimpleLine-1.png);

}

#myModalEdit .modal-body {
    padding: 20px 0;
}

#myModalAdd .modal-body {
    padding: 20px 0;
}

/* === Общий стиль модального окна === */
.modal-content {
    border-radius: 16px !important;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    background-color: #fff;
    max-width: 640px;
}

.modal-dialog-centered {
    justify-content: center;
}

/* === Заголовок модального окна === */
.modal-header {
    border-bottom: none;
    text-align: center;
    padding: 0;
    padding: 1rem 0rem;
    border-bottom: 1px solid #ccc;

}

.modal-title {
    font-size: 20px;
    font-weight: 500;
    width: 100%;
    margin-bottom: 0 !important;
}

/* === Закрывающая кнопка (крестик) === */
.close {
    opacity: 0.6;
    transition: 0.2s;
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url(https://support.aiokk.kz/img/Close_MD.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px;
}

.close:hover {
    opacity: 1;
}

.modal-header .close {
    padding: 0;
    margin: 0;
    position: absolute;
    top: 16px;
    right: 16px;
}


/* === Кнопки === */
.modal-footer {
    border-top: 1px solid rgba(0, 0, 0, .075);
    padding: 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}


.form-group select {
    border-radius: 12px;
}

.form-group input {
    border-radius: 12px;
}

.gap-5 {
    gap: 8px;
}

.width_30_70 .form-group:first-child {
    width: 30%;
}

.width_30_70 .form-group:last-child {
    width: 70%;
}

.width_50_50 .form-group:first-child {
    width: 50%;
}

.width_50_50 .form-group:last-child {
    width: 50%;
}

.change_result .custom-checkbox {
    width: auto;
    height: auto;
}

/* Скрываем стандартный чекбокс */
.custom-checkbox {
    appearance: none;
    width: 24px;
    height: 24px;
    /* border: 2px solid rgba(0, 0, 0, .075); */
    /* Фиолетовый цвет */
    border-radius: 6px !important;
    /* Закругление углов */
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
    padding: 0 !important;
}

/* Галочка внутри чекбокса */
.custom-checkbox::after {
    content: url(https://support.aiokk.kz/img/Check.svg);
    /* Галочка */
    width: 14px;
    height: 21px;
    color: white;
    display: none;
    position: absolute;
}

/* Чекбокс при нажатии */
.custom-checkbox:checked {
    background-color: #6c3cff;
    /* Заполняем фиолетовым */
    border-color: #6c3cff;
}

/* Показываем галочку при активации */
.custom-checkbox:checked::after {
    display: block;
}

/* Стилизованный текст */
.custom-label {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin: 0;
}

.myd-none {
    display: none;
}

.myd-none-add {
    display: none;
}

/* Скрываем стандартный чекбокс */
.custom-checkbox1 {
    appearance: none;
    width: 24px !important;
    height: 24px !important;
    border: 2px solid rgba(0, 0, 0, .075);
    /* Фиолетовый цвет */
    border-radius: 6px !important;
    /* Закругление углов */
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
    padding: 0 !important;
}

/* Галочка внутри чекбокса */
.custom-checkbox1::after {
    content: url(https://support.aiokk.kz/img/Check.svg);
    /* Галочка */
    width: 14px;
    height: 21px;
    color: white;
    display: none;
    position: absolute;
}

/* Чекбокс при нажатии */
.custom-checkbox1:checked {
    background-color: #6c3cff;
    /* Заполняем фиолетовым */
    border-color: #6c3cff;
}

/* Показываем галочку при активации */
.custom-checkbox1:checked::after {
    display: block;
}

#myModalDelete .close {
    position: absolute;
    top: -10px;
    right: 1px;
}

#myModalDelete {
    text-align: center;
}

/* #myModalDelete form,button {
    width: 100%;
} */

.title_payment {
    margin-bottom: 40px;
    font-size: 24px;
}

/* Индикатор шагов */
.step-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    align-items: center;
}

.step {
    flex: 1;
    background: transparent;
    color: #707070;
    border-radius: 5px;
    border: 1px solid #E1E1E1;
    margin: 0 5px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    position: relative;
    width: 42px;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step.active {
    color: #000;
}

.step span {
    display: block;
    font-size: 20px;
    font-weight: bold;
}

/* Форма шагов */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    position: relative;
    min-height: 293px;
}

/* Поля формы */
input,
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 12px;
}

/* Кнопки */

.submit-btn {
    background: #4caf50;
}

/* Выбор способа оплаты */
.payment-options {
    display: flex;
    justify-content: space-around;
    margin: 20px 0 0 0;
    max-height: 117px;
    min-height: 117px;
    align-items: center;
    gap: 8px;
}

.payment-option {
    padding: 15px;
    border: inset;
    border-width: 3px;
    border-style: solid;
    border-color: #e7e7e7;
    border-radius: 10px;
    cursor: pointer;
    width: 30%;
    text-align: center;
    width: 33%;
}

.payment-option img {
    width: 50px;
    height: auto;
}

.payment-option.selected {
    border: inset;
    border-width: 3px;
    border-style: solid;
    border-color: #492982;
}

/* Информационные сообщения */
.info-box {
    background: #FDF9ED url('https://support.aiokk.kz/img/notice.svg') no-repeat;
    background-position: left 15px center;
    color: #BF8900;
    padding: 15px 15px 15px 40px;
    border-radius: 12px;
    margin: 20px 0 0px 0;
}

.line {
    width: 100%;
    height: 1px;
    background: #ddd;
    z-index: 1;
    transform: translateY(-50%);
}



#step-1 select {
    appearance: none;
    /* Убираем стандартную стрелку */
    -webkit-appearance: none;
    -moz-appearance: none;
    background: white url('https://support.aiokk.kz/img/chevron.svg') no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    cursor: pointer;
}

.w-indicator {
    width: 520px;
}

.step-1-txt {
    width: 50%;
    align-items: right;
}

.light-gray {
    color: #707070;
    font-size: 14px;
}


.black {
    color: #000;
    font-size: 14px;
}


.green {
    color: #0E7C3A;
    font-size: 14px;
}

.completed {
    background-color: #0E7C3A;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fix-height {
    min-height: 520px;
}

.next-step {
    min-width: 160px;
    max-height: 44px;
    padding: 0;
    min-height: 44px;
}

.prev-step {
    min-width: 160px;
    max-height: 44px;
    padding: 0;
    min-height: 44px;
}

.payment_results {
    border: 1px solid #e7e7e7;
    border-radius: 14px;
    padding: 16px;
    width: 100%;
}

.payment_results p {
    margin: 0;
}

.payment_results div:first-child {
    border-bottom: 1px solid #e7e7e7;
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.payment_results div:nth-child(2) {
    border-top: none !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.payment_results div:last-child {
    border-top: 1px solid #e7e7e7;
    padding-top: 12px;
    margin-top: 12px;
}

.step3_mg {
    margin-bottom: 123px;
}

.submit-btn {
    min-width: 160px;
    max-height: 44px;
    padding: 0;
    min-height: 44px;
}

.payment-option img {
    width: 107px;
}

.payment-option p {
    font-size: 12px;
    margin-bottom: 0;
}

.payment-option div {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
}

.pos-abs {
    position: absolute;
    width: 100%;
    bottom: 0;
}

.fixed-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}

.input-container {
    position: relative;
    display: inline-block;
}

.input-container input {
    padding-right: 30px;
    /* Добавляем отступ, чтобы не накладывалось на текст */
}

.input-container::after {
    content: attr(data-currency);
    position: absolute;
    right: 10px;
    top: 32px;
    font-size: 16px;
    color: #333;
    pointer-events: none;
    font-weight: 600;
    background: #fff;
    width: 30px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

#invoiceModal .modal-content {
    margin: 0 auto;
}

.custom-dropdown {
    position: relative;
    display: inline-block;
    width: 308px;
    height: 44px;
}

.dropdown-btn {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    background: white;
    border: 2px solid #492982;
    border-radius: 12px;
    cursor: pointer;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 44px;
}

.arrow {
    font-size: 12px;
}

.dropdown-content {
    display: none;
    position: absolute;
    width: 100%;
    background: white;
    border: 1px solid #ccc;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 5px;
    z-index: 10;
}

.dropdown-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 10px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
    margin: 0;
    border-bottom: 1px solid #ccc;
}

.dropdown-item:hover {
    background: #f1f1f1;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:first-child:hover {
    background: #f1f1f1;
    border-radius: 12px 12px 0 0;
}

.dropdown-item:last-child:hover {
    background: #f1f1f1;
    border-radius: 0 0 12px 12px;
}

.dropdown-item input {
    width: fit-content;
}

.show {
    display: block;
}

button:focus {
    outline-color: #492982;
}

/* Скрываем стандартное радио */
.dropdown-item input[type="radio"] {
    appearance: none;
    width: 24px;
    /* Размер кнопки */
    height: 24px;
    border: 2px solid #492982;
    /* Цвет обводки */
    border-radius: 50% !important;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    background-color: white;
    padding: 0 !important;
}

/* Добавляем эффект при выборе */
.dropdown-item input[type="radio"]:checked {
    background-color: #492982;
    /* Цвет заливки при выборе */
    border: 0px solid #492982;
}

/* Создаём кастомную точку внутри */
.dropdown-item input[type="radio"]::before {
    content: "";
    width: 20px;
    height: 20px;
    background: #492982;
    border: 2px solid #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.2s ease-in-out;
}

/* Показываем внутреннюю точку при выборе */
.dropdown-item input[type="radio"]:checked::before {
    transform: translate(-50%, -50%) scale(1);
}

#invoiceModal h5 {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
}

#invoiceModal .padding_btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border-width: 2px;
}

#invoiceModal .modal-content {
    max-width: fit-content;
}

input[readonly] {
    color: #666;
    cursor: not-allowed;
    outline: none;
}

.text-warning {
    font-size: 14px;
    margin: 0;
    padding: 4px 8px;
    background-color: #FDF9ED;
    color: #BF8900 !important;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    width: fit-content;
    border-radius: 4px;
}

.text-warning::before {
    content: "";
    display: inline-block;
    width: 17px;
    height: 19px;
    background-image: url(https://support.aiokk.kz/img/warning_check.svg);
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}

.text-success {
    font-size: 14px;
    margin: 0;
    padding: 4px 8px;
    background-color: #EDFDF3;
    color: #0E7C3A !important;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    width: fit-content;
    border-radius: 4px;
}

.text-success::before {
    content: "";
    display: inline-block;
    width: 17px;
    height: 19px;
    background-image: url(https://support.aiokk.kz/img/success_check.svg);
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}

.text-cancel {
    font-size: 14px;
    margin: 0;
    padding: 4px 8px;
    background-color: #FDEDED;
    color: #DB1C1C !important;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    width: fit-content;
    border-radius: 4px;
}

.text-cancel::before {
    content: "";
    display: inline-block;
    width: 17px;
    height: 19px;
    background-image: url(https://support.aiokk.kz/img/cancel_check.svg);
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}

.pay_btn {
    background-color: #D0C2E9;
    color: #492982;
    padding: 8px 10px;
    border-radius: 12px;
}

.pay_btn:hover {
    color: #492982;
}

th {
    cursor: pointer;
    position: relative;
    padding-right: 20px;
}

th::after {
    content: "";
    width: 17px;
    height: 19px;
    background-image: url(https://support.aiokk.kz/img/up_down.svg);
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    position: absolute;
    bottom: 6px;
}

.table th,
.table td {
    white-space: nowrap;
    /* Запрещает перенос текста */

    text-overflow: ellipsis;
    /* Добавляет троеточие, если текст обрезается */
}

.filter_block {
    opacity: 0;
    transform: translateY(-10px);
    /* Смещаем вверх на 10px */
    visibility: hidden;
    /* Чтобы элемент не кликабельно пропадал */
    height: 0;
    margin: 0;
    transition: all 0.3s ease-in-out, transform 0.5s ease-in-out, visibility 0.3s;
}

.filter_block_payment {
    opacity: 0;
    transform: translateY(-10px);
    /* Смещаем вверх на 10px */
    visibility: hidden;
    /* Чтобы элемент не кликабельно пропадал */
    height: 0;
    margin: 0;
    transition: all 0.3s ease-in-out, transform 0.5s ease-in-out, visibility 0.3s;
}

.filter_block.active {
    height: 100%;
    opacity: 1;
    margin: 16px 0;
    transform: translateY(0);
    visibility: visible;
    position: relative;
    z-index: 9;
}

.filter_block_payment.active {
    height: 100%;
    opacity: 1;
    margin: 16px 0;
    transform: translateY(0);
    visibility: visible;
    position: relative;
    z-index: 9;
}

.clear_filter {
    display: none;
    background-color: transparent;
    border: none;
    padding: 3px;
    margin: 0px 0 0 4px;
    padding: 4px;
}

.clear_filter:focus {
    outline-color: transparent;
}

.clear_filter_payment {
    display: none;
    background-color: transparent;
    border: none;
    padding: 3px;
    margin: 0px 0 0 4px;
    padding: 4px;
}

.clear_filter_payment:focus {
    outline-color: transparent;
}

.filter_block_payment div {
    width: 100%;
}

.fiter_input {
    cursor: pointer !important;

}


/* Общий стиль для чекбоксов и радиокнопок */
.filter_block .dropdown input[type="checkbox"],
.filter_block .dropdown input[type="radio"] {
    display: none;
    /* Скрываем стандартный элемент */
}

/* Кастомный стиль для чекбоксов */
.filter_block .dropdown label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    user-select: none;
    transition: color 0.2s ease;
}

/* Стилизация чекбоксов */
.filter_block .dropdown label input[type="checkbox"]+span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border: 2px solid #492982;
    border-radius: 4px;
    margin-right: 8px;
    position: relative;
    transition: all 0.2s ease;
    background-color: #fff;
    /* Фон по умолчанию */
}

/* Стилизация активного чекбокса */
.filter_block .dropdown label input[type="checkbox"]:checked+span {
    background-color: #492982;
    /* Цвет заливки при активации */
    border-color: #492982;
}

/* Галочка внутри чекбокса */
.filter_block .dropdown label input[type="checkbox"]:checked+span::after {
    content: "";
    width: 18px;
    height: 18px;
    background: url(https://support.aiokk.kz/img/Check.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    border-radius: 2px;
}

/* Кастомный стиль для радиокнопок */
.filter_block .dropdown label input[type="radio"]+span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border: 2px solid #492982;
    border-radius: 50%;
    margin-right: 8px;
    position: relative;
    transition: all 0.2s ease;
    background-color: #fff;
    /* Фон по умолчанию */
}

/* Стилизация активной радиокнопки */
.filter_block .dropdown label input[type="radio"]:checked+span {
    background-color: #492982;
    /* Цвет заливки при активации */
    border-color: #492982;
}

/* Внутренний кружок радиокнопки */
.filter_block .dropdown label input[type="radio"]:checked+span::after {
    content: "";
    width: 14px;
    height: 14px;
    background-color: #fff;
    /* Белый кружок внутри */
    border-radius: 50%;
}

/* Эффект наведения */
.filter_block .dropdown label:hover {
    color: #492982;
}

.filter_block .dropdown label input[type="checkbox"]+span:hover,
.filter_block .dropdown label input[type="radio"]+span:hover {
    border-color: #7a52af;
}










/* Общий стиль для чекбоксов и радиокнопок */
.filter_block_payment .dropdown input[type="checkbox"],
.filter_block_payment .dropdown input[type="radio"] {
    display: none;
    /* Скрываем стандартный элемент */
}

/* Кастомный стиль для чекбоксов */
.filter_block_payment .dropdown label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    user-select: none;
    transition: color 0.2s ease;
}

/* Стилизация чекбоксов */
.filter_block_payment .dropdown label input[type="checkbox"]+span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border: 2px solid #492982;
    border-radius: 4px;
    margin-right: 8px;
    position: relative;
    transition: all 0.2s ease;
    background-color: #fff;
    /* Фон по умолчанию */
}

/* Стилизация активного чекбокса */
.filter_block_payment .dropdown label input[type="checkbox"]:checked+span {
    background-color: #492982;
    /* Цвет заливки при активации */
    border-color: #492982;
}

/* Галочка внутри чекбокса */
.filter_block_payment .dropdown label input[type="checkbox"]:checked+span::after {
    content: "";
    width: 18px;
    height: 18px;
    background: url(https://support.aiokk.kz/img/Check.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    border-radius: 2px;
}

/* Кастомный стиль для радиокнопок */
.filter_block_payment .dropdown label input[type="radio"]+span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border: 2px solid #492982;
    border-radius: 50%;
    margin-right: 8px;
    position: relative;
    transition: all 0.2s ease;
    background-color: #fff;
    /* Фон по умолчанию */
}

/* Стилизация активной радиокнопки */
.filter_block_payment .dropdown label input[type="radio"]:checked+span {
    background-color: #492982;
    /* Цвет заливки при активации */
    border-color: #492982;
}

/* Внутренний кружок радиокнопки */
.filter_block_payment .dropdown label input[type="radio"]:checked+span::after {
    content: "";
    width: 14px;
    height: 14px;
    margin-left: 1px;
    background-color: #fff;
    /* Белый кружок внутри */
    border-radius: 50%;
}

/* Эффект наведения */
.filter_block_payment .dropdown label:hover {
    color: #492982;
}

.filter_block_payment .dropdown label input[type="checkbox"]+span:hover,
.filter_block_payment .dropdown label input[type="radio"]+span:hover {
    border-color: #7a52af;
}

.p-status_1 {
    font-size: 14px;
    margin: 0;
    padding: 4px 8px;
    background-color: #FDF9ED;
    color: #BF8900 !important;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    width: fit-content;
    border-radius: 4px;
}

.p-status_2 {
    font-size: 14px;
    margin: 0;
    padding: 4px 8px;
    background-color: #FDEDED;
    color: #DB1C1C !important;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    width: fit-content;
    border-radius: 4px;
}

.p-status_3 {
    font-size: 14px;
    margin: 0;
    padding: 4px 8px;
    background-color: #EDFDF3;
    color: #0E7C3A !important;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    width: fit-content;
    border-radius: 4px;
}

.p-status_4 {
    font-size: 14px;
    margin: 0;
    padding: 4px 8px;
    background-color: #FDEDED;
    color: #DB1C1C !important;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    width: fit-content;
    border-radius: 4px;
}

.p-status_5 {
    font-size: 14px;
    margin: 0;
    padding: 4px 8px;
    background-color: #FDEDED;
    color: #DB1C1C !important;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    width: fit-content;
    border-radius: 4px;
}

.dashboard_gap {
    gap: 20px;
}

.graphic {
    height: 269px;
    margin-top: 20px;
    background-color: #FAF7FE;
    padding: 20px;
    border-radius: 14px;
    width: 100%;
}

.chevron_none .fiter_input {
    background: none !important;
}

.w-inputs input {
    width: 48%;
}



#google-doc-iframe {
    width: 80%;
    /* Регулируй ширину (например, 80% экрана) */
    height: 90vh;
    /* 90% от высоты экрана */
    border: none;
    /* Убирает рамку */
}

#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: white;
    /* Можно заменить на нужный фон */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-in-out;
}

#preloader.hidden {
    opacity: 0;
    pointer-events: none;
    /* Чтобы не мешал кликам */
}



.logoloader {
    padding: 0;
    text-align: center;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 0;
}

/* #preloader {
    background: #fff;
    height: auto;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 99;
    
    display: flex;
    align-items: center;
    justify-content: center;
} */

#preloader .outer {
    position: relative;
    margin: auto;
    width: 100%;
    text-align: center;
    height: 200px;
    padding-top: 50px;
}

pre {
    display: block;
    padding: 9.5px;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.42857143;
    color: #000;
    word-break: break-all;
    word-wrap: break-word;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 0;
}

.infinity {
    width: 120px;
    height: 60px;
    position: relative;
    margin: auto;
    z-index: 1;
}

.infinity div,
.infinity span {
    position: absolute;
}

.infinity div {
    top: 0;
    left: 50%;
    width: 60px;
    height: 60px;
    animation: rotate 6.9s linear infinite;
}

.infinity div span {
    left: -8px;
    top: 50%;
    margin: -8px 0 0;
    width: 16px;
    height: 16px;
    display: block;
    background: #000;
    box-shadow: 2px 2px 8px rgba(255, 76, 96, 0.09);
    border-radius: 50%;
    transform: rotate(90deg);
    animation: move 6.9s linear infinite;
}

.infinity div span:before,
.infinity div span:after {
    content: "";
    position: absolute;
    display: block;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    background: inherit;
    top: 50%;
    left: 50%;
    margin: -7px 0 0 -7px;
    box-shadow: inherit;
}

.infinity div span:before {
    animation: drop1 0.8s linear infinite;
}

.infinity div span:after {
    animation: drop2 0.8s linear infinite 0.4s;
}

.infinity div:nth-child(2) {
    animation-delay: -2.3s;
}

.infinity div:nth-child(2) span {
    animation-delay: -2.3s;
}

.infinity div:nth-child(3) {
    animation-delay: -4.6s;
}

.infinity div:nth-child(3) span {
    animation-delay: -4.6s;
}

.infinityChrome {
    width: 128px;
    height: 60px;
    margin: auto;
}

.infinityChrome div {
    position: absolute;
    width: 16px;
    height: 16px;
    background: #000;
    /* Черный цвет */
    box-shadow: 2px 2px 8px rgba(255, 76, 96, 0.09);
    /* Тень */
    border-radius: 50%;
    /* Закругленные углы */
    animation: moveSvg 6.9s linear infinite;
    /* Анимация */
    -webkit-filter: url(#goo);
    /* Фильтр для WebKit */
    filter: url(#goo);
    /* Фильтр */
    transform: scaleX(-1);
    /* Отражение по X */
    offset-path: path("M64.3636364,29.4064278 C77.8909091,43.5203348 84.4363636,56 98.5454545,56 C112.654545,56 124,44.4117395 124,30.0006975 C124,15.5896556 112.654545,3.85282763 98.5454545,4.00139508 C84.4363636,4.14996252 79.2,14.6982509 66.4,29.4064278 C53.4545455,42.4803627 43.5636364,56 29.4545455,56 C15.3454545,56 4,44.4117395 4,30.0006975 C4,15.5896556 15.3454545,4.00139508 29.4545455,4.00139508 C43.5636364,4.00139508 53.1636364,17.8181672 64.3636364,29.4064278 Z");
    /* Путь для анимации */
}


.infinityChrome div:before,
.infinityChrome div:after {
    content: "";
    position: absolute;
    display: block;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    background: inherit;
    top: 50%;
    left: 50%;
    margin: -7px 0 0 -7px;
    box-shadow: inherit;
}

.infinityChrome div:before {
    animation: drop1 0.8s linear infinite;
}

.infinityChrome div:after {
    animation: drop2 0.8s linear infinite 0.4s;
}

.infinityChrome div:nth-child(2) {
    animation-delay: -2.3s;
}

.infinityChrome div:nth-child(3) {
    animation-delay: -4.6s;
}

@keyframes moveSvg {
    0% {
        offset-distance: 0%;
    }

    25% {
        background: rgba(0, 0, 0, 0.09);
    }

    75% {
        background: #000;
    }

    100% {
        offset-distance: 100%;
    }
}

@keyframes rotate {
    50% {
        transform: rotate(360deg);
        margin-left: 0;
    }

    50.0001%,
    100% {
        margin-left: -60px;
    }
}

@keyframes move {

    0%,
    50% {
        left: -8px;
    }

    25% {
        background: #000;
    }

    75% {
        background: rgba(0, 0, 0, 0.09);
    }

    50.0001%,
    100% {
        left: auto;
        right: -8px;
    }
}

@keyframes drop1 {
    100% {
        transform: translate(32px, 8px) scale(0);
    }
}

@keyframes drop2 {
    0% {
        transform: translate(0, 0) scale(0.9);
    }

    100% {
        transform: translate(32px, -8px) scale(0);
    }
}



/* Morphing container */
.morphing {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 46px;
    font-weight: 800;
    font-family: "Noto Sans", sans-serif;
    color: #000;
    min-height: 100%;
    filter: contrast(25) blur(1px);
    /* text-shadow: 2px 4px 3px rgba(0, 0, 0, 0.3); */
}

/* Word animation */
.word {
    position: absolute;
    top: 50%;
    left: 50%;
    width: max-content;
    transform: translate(-50%, -50%);
    animation: word 8s infinite ease-in-out;
    /* Animation delay for each word */
    /* Keyframes for word animation */
}

.word:nth-child(1) {
    animation-delay: -3s;
}

.word:nth-child(2) {
    animation-delay: -5s;
}

/* .word:nth-child(3) {
			animation-delay: -12s;
			}

			.word:nth-child(4) {
				animation-delay: -10s;
			}

			.word:nth-child(5) {
				animation-delay: -8s;
			}

			.word:nth-child(6) {
				animation-delay: -6s;
			}

			.word:nth-child(7) {
				animation-delay: -4s;
			} */

@keyframes word {

    0%,
    5%,
    100% {
        filter: blur(0px);
        opacity: 1;
    }

    20%,
    80% {
        filter: blur(1em);
        opacity: 0;
    }
}

.d-mm-none {
    margin-bottom: 10px;
}