.dashboard-container {
    padding-left: 60px;
    padding-right: 60px;
}

h1 {
    color: var(--logo-color, #20395F) !important;
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 32px !important;
    font-style: normal !important;
    font-weight: 500 !important;
    line-height: 44px !important;
}

.btn {
    height: 48px;
    color: var(--Light-Solid-Color-Extra-White, #FFF);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 17px;
    font-style: normal !important;
    font-weight: 500 !important;
    line-height: 18px !important; /* 129.412% */
    letter-spacing: 0.43px;
    display: flex;
    align-items: center !important;
    gap: 10px !important;
}

.btn-sm {
    height: 38px;
}

/*navbar*/
.nav-list {
    display: flex;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: max-content;
}

.dashboard-navbar {
    width: 100%;
    height: 88px;
    border-bottom: 1px solid var(--Secondary-blue, #CEE0FA);
    background: var(--Primary-white, #FEFEFE);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu__content {
    position: absolute;
    top: 88px;
    background: #f2f3f7;
    width: 100%;
    height: 100vh;
    z-index: 4;
}

.dashboard-navbar__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.menu-nav__list {
    display: flex;
    align-items: center;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    height: 88px;
    margin-left: 60px !important;
    gap: 20px;
}

.menu-nav__item {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 3px solid transparent;
}

.menu-nav__item a {
    color: var(--Light-Typography-Color-Body-Text, #4B465C);
    transition: 200ms ease;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
}

.menu-nav__item_active {
    border-bottom: 3px solid var(--light-solid-color-primary-primary-500-base, #0B63E5);
}

.menu-nav__item_active a {
    color: var(--light-solid-color-primary-primary-500-base, #0B63E5);
}

.nav-action__wrapper {
    margin-left: 44px;
}

.navbar-user__wrapper {
    display: flex;
    align-items: center;
    gap: 24px;
}

/*navbar*/

.custom-navbar {
    background: transparent !important;
}

.custom-navbar .nav-link.active {
    background: transparent !important;
}

.domains__page_sidebar {
    display: flex;
    justify-content: space-between;
    margin-right: -60px;
    gap: 22px;
}

.domains__page-wrapper {
    width: -webkit-fill-available;
}

.custom-layout-menu {
    right: 0 !important;
    position: sticky;
    bottom: 0;
    top: 0;
    height: 100vh;
    margin-right: 0 !important;
    margin-left: 0 !important;
    box-shadow: 0 0.125rem 0.25rem rgba(165, 163, 174, 0.3);
    background-color: #fff !important;
    color: #6f6b7d;
    width: 550px;
    padding: 32px;
    overflow-y: auto;
    display: none;
}

.custom-layout-menu::-webkit-scrollbar {
    height: 4px;
    width: 4px;
    border-radius: 20px;
}

.domains__page-head {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.domains__page-head__action {
    display: flex;
    align-items: center;
    gap: 12px;
}

.domains__page-head__action .dropdown-toggle {
    height: 38px;
}

.domains__page .nav-tabs {
    margin-bottom: 24px;
}

.domains__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Domain search card */
.domain_big_card-container {
    position: relative;
    padding-block: 35px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.domain_big_card-gradient-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(161, 250, 213, 0) 0%, rgba(96, 157, 246, 0.1) 30%, rgba(96, 157, 246, 0.24) 60%, rgba(96, 157, 246, 0) 100%);
    border-radius: 80px;
    z-index: 0;
}

.domain_big_card-header {
    display: flex;
    align-items: center;
    position: relative;
    margin-block: 18px;
    z-index: 1;
    justify-content: space-between;
}

.domain_big_card-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.domain_big_card-name-and-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.domain_big_card-name {
    font-size: 24px;
    color: #2e3b4e;
}

.domain_big_card-tracking-badge {
    background-color: #2F3F51;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 10px;
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.domain_big_card-tracking-icon {
    margin-right: 5px;
    font-size: 10px;
}

.domain_big_card-blocked-info {
    font-size: 14px;
}

.domain_big_card-action-container {
    display: flex;
    position: relative;
    z-index: 1;
    justify-content: space-between;
}

.domain_big_card-action-button-check{
    border: 1px;
    border-color: #0b82e3 !important;
    background: none !important;
}

.domain_big_card-action-button {
    padding-inline: 20px;
    font-size: 14px;
    white-space: nowrap;
}

.domain_big_card-action-button:not(:last-child) {
    margin-right: 10px;
}

.domain_big_card-container-action-button{
    display: flex !important;
    flex-direction: row;
}

/* Mobile */
@media (max-width: 768px) {
    .domain_big_card-container {
        flex-direction: column;
        align-items: flex-start !important;
        padding-block: 20px;
        gap: 15px;
    }

    .domain_big_card-container-action-button{
        width: 100% !important;
        flex-direction: column;
    }

    .domain_big_card-gradient-background {
        background: linear-gradient(180deg, rgba(161, 250, 213, 0) 0%, rgba(96, 157, 246, 0.1) 30%, rgba(96, 157, 246, 0.24) 60%, rgba(96, 157, 246, 0) 100%);
        border-radius: 30px;
    }

    .domain_big_card-name {
        font-size: 18px;
        max-width: 90%;
        white-space: normal;
    }

    .domain_big_card-blocked-info {
        font-size: 12px;
    }

    .domain_big_card-tracking-badge {
        font-size: 8px;
        padding: 2px 8px;
        margin-left: 0;
    }

    .domain_big_card-action-container {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .domain_big_card-action-button {
        padding: 10px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }

    .domain_big_card-action-button:not(:last-child) {
        margin-right: 0;
        margin-bottom: 10px;
    }
}


.domains-item__container {
    border-radius: 8px;
    border: 1px solid var(--Secondary-blue, #CEE0FA);
    background: var(--Flowkit-White, #FFF);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    padding: 8px;
}

.domains-item__content {
    display: flex;
    align-items: center;
}

.domains-item__label {
    width: 60px;
    height: 54px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.domains-item__label .ti {
    font-weight: bold;
    font-size: 24px !important;
}

.domains-item__label_success {
    background: var(--Light-Solid-Color-Success-Success---100, linear-gradient(0deg, rgba(255, 255, 255, 0.80) 0%, rgba(255, 255, 255, 0.80) 100%), #28C76F);
}

.domains-item__label_success .ti {
    color: #28C76F;
}

.domains-item__label_warning {
    background: var(--Light-Solid-Color-Danger-Danger---100, linear-gradient(0deg, rgba(255, 255, 255, 0.80) 0%, rgba(255, 255, 255, 0.80) 100%), #EA5455)
}

.domains-item__label_warning .ti {
    color: #EA5455;
}

.domains-item__label_deactivated {
    background: var(--Light-Solid-Color-Danger-Danger---100, linear-gradient(0deg, rgba(255, 255, 255, 0.80) 0%, rgba(255, 255, 255, 0.80) 100%), #c4c4c4)
}

.domains-item__label_deactivated .ti {
    color: #c4c4c4;
}

.searched-domain__wrapper .domains-item__label {
    width: 70px;
    height: 64px;
}

.searched-domain__wrapper .domains-item__label .ti {
    font-size: 28px !important;
}

.search-domain__title-wrapper {
    display: flex;
}

.search-domain__info-wrapper {
    margin-left: 15px;
}

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

.domains-item__text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.domains-item__name {
    color: var(--Primary-Blue, #0B63E5);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 133.333% */
}

.domains-item__status {
    color: var(--light-solid-color-secondary-secondary-600-hover, #A8AAAE);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 14px; /* 107.692% */
}

.setting__button {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
}

.setting__button .ti {
    opacity: 0.8;
    color: var(--light-solid-color-primary-primary-500-base, #0B63E5);
    font-size: 22px !important;
}

.country__list {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: 16px;
}

.country__item {
    height: 26px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.country__img {
    height: 26px;
    border-radius: 5px 0px 0px 5px;
}

.country__text {
    height: 100%;
    border-radius: 0px 5px 5px 0px;
    background: var(--Light-Solid-Color-Danger-Danger---100, linear-gradient(0deg, rgba(255, 255, 255, 0.80) 0%, rgba(255, 255, 255, 0.80) 100%), #EA5455);
    color: var(--light-solid-color-danger-danger-500-base, #EA5455);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 146.023%;
    padding-left: 8px;
    padding-right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.country__more {
    border-radius: 5px;
    padding: 0 8px;
}

.country__new_label {
    height: 26px;
    border-radius: 5px;
    background: var(--light-solid-color-danger-danger-500-base, #EA5455);
    color: var(--Flowkit-White, #FFF);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 146.023%;
    padding-left: 8px;
    padding-right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.selected-domain__name {
    color: var(--logo-color, #20395F);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 8px !important;
}

.selected-domain__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.selected-domain__header .btn-close {
    border-radius: 6px;
    background: var(--Light-Solid-Color-Extra-Card-Background, #FFF);
    box-shadow: 0px 2px 4px 0px rgba(165, 163, 174, 0.30);
    width: 32px;
    height: 32px;
}

.selected-domain__header .btn-close .ti {
    font-size: 24px !important;
    font-weight: bold;
    color: var(--Light-Typography-Color-Body-Text) !important;
}

.selected-tracking-time__text {
    color: var(--light-solid-color-secondary-secondary-600-hover, #A8AAAE);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px; /* 146.667% */
}

.selected-domain__panel .nav-tabs {
    margin-bottom: 30px;
    margin-top: 30px;
}

.tracking-action__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 25px;
}

.tracking-action-check__wrapper {
    width: 100%;
    display: none;
}

.tracking-action__wrapper button {
    width: 100%;
}

.tracking-action__text {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light-solid-color-secondary-secondary-600-hover, #A8AAAE);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    margin-top: 17px;
}

.tracking-action__text .ti {
    font-size: 24px;
}

.selected-domain__alert {
    margin-bottom: 24px;
    border-radius: 8px;
    background: var(--Light-Solid-Color-Danger-Danger---100, linear-gradient(0deg, rgba(255, 255, 255, 0.80) 0%, rgba(255, 255, 255, 0.80) 100%), #EA5455);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
}

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

.selected-domain__alert .ti {
    font-size: 24px;
    color: #EA5455;
}

.selected-domain__alert-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.selected-domain__alert-status {
    color: var(--logo-color, #20395F);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.selected-domain__alert-text {
    color: var(--light-solid-color-danger-danger-500-base, #EA5455);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
}

.selected-domain__country-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.notification__title {
    color: var(--logo-color, #20395F);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 133.333% */
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.notification__title .ti {
    color: #0B63E5;
    font-size: 24px;
}

.notification__subtitle {
    color: var(--light-solid-color-secondary-secondary-600-hover, #A8AAAE);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px; /* 146.667% */
}

.notification-method__list {
    margin-top: 32px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-left: 0;
    list-style: none;
}

.notification-method__list .switch .switch-toggle-slider {
    right: 0;
}

.notification-method__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.notification-method__title {
    color: var(--logo-color, #20395F);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px; /* 140% */
    /* text-transform: capitalize; */
}

.notification-method__subtitle {
    color: var(--Light-Solid-Color-Secondary-Secondary---400, #A8AAAE);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 14px; /* 107.692% */
}

.notification-method__settings-button {
    border: 1px solid #A8AAAE;
    padding: 5px 12px;
    border-radius: 4px;
    color: black;
    background-color: #fff;
}

.social-img__wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 12px;
    border: 1px solid var(--Light-Solid-Color-Extra-Divider, #DBDADE);
    background: #FFF;
    margin-right: 16px;
}

.check__block {

}

.check__block .btn {
    width: 100% !important;
}

.delete__block .btn {
    width: 100%;
    margin-top: 30px;
    color: var(--Light-Solid-Color-Extra-Dark, #4B4B4B);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px; /* 120% */
    letter-spacing: 0.43px;
}

.btn-secondary {
    color: var(--Light-Solid-Color-Extra-Dark, #4B4B4B) !important;
}

.delete-modal-body {
    padding: 65px !important;
    padding-top: 41px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.delete-modal-body__title {
    color: var(--Light-Typography-Color-Heading-Text, #4B465C);
    text-align: center;
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
    margin-bottom: 12px;
}

.delete-modal-body__subtitle {
    color: var(--Light-Typography-Color-Body-Text, #4B465C);
    text-align: center;
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 26px;
}

.delete-modal-body__subtitle span {
    color: var(--Primary-Blue, #0B63E5);
}

.delete-modal__action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.delete-modal__action .btn {
    height: 38px;
}

.delete-modal-alert {
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.delete-modal-alert .ti {
    font-size: 24px !important;
}

.check-domain__block .btn {
    width: 100%;
}

.navbar-action__block {
    display: flex;
    align-items: center;
    gap: 17px;
}

.search-domains__field {
    position: relative !important;
    width: 100% !important;
}

.custom-table__wrapper .custom-table {
    border-radius: 8px;
    border: 1px solid var(--Light-Solid-Color-Secondary-Secondary---200, #A8AAAE);
    /*padding-bottom: 0*/
}

.custom-table__wrapper .custom-table table {
    /*margin-bottom: 0!important;*/
}

.custom-table__wrapper .custom-table thead tr {
    background: #e9ebf3;
    height: 47px;
}

.custom-table__wrapper .custom-table tbody tr {
    height: 58px;
}

.custom-table__wrapper .custom-table .dataTables_length {
    display: none;
}

.custom-table__wrapper .custom-table .dataTables_filter {
    display: none;
}

.custom-table__wrapper .custom-table tbody tr td {
    color: var(--logo-color, #20395F);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
}

.table-state__wrap {
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.table-state__wrap .ti {
    font-weight: 600;
}

.table-state__wrap_success {
    color: var(--light-solid-color-success-success-700-active, #28C76F);
}

.table-state__wrap_fail {
    color: var(--light-solid-color-danger-danger-500-base, #EA5455);
}

/*dataTables_info*/
.custom-table__wrapper .custom-table .dataTables_paginate {
    display: none;
}

.custom-navbar-search-table__wrapper {
    margin-top: 32px;
}

.search-domains-page__title {
    margin-top: 24px;
    color: var(--Light-Typography-Color-Body-Text, #4B465C);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

.search-domains-page__title span {
    font-weight: 600;
}

.twitter-typeahead, .tt-menu {
    width: 100% !important;
}

.table-action__wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.table-action__wrapper a {
    display: flex;
    width: 40px;
    height: 40px;
    padding: 10px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: 200ms ease;
    border-radius: 8px;
}

.table-action__wrapper a:hover {
    background: var(--Secondary-blue, #CEE0FA);
}

.table-action__wrapper a .ti {
    opacity: 0.8;
    color: var(--light-solid-color-primary-primary-500-base, #0B63E5);
    font-size: 22px;
}

.setting__button {
    display: flex;
    width: 40px;
    height: 40px;
    padding: 10px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: 200ms ease;
    border-radius: 8px;
}

.setting__button:hover {
    background: var(--Secondary-blue, #CEE0FA);
}

.domains-list-nav__content {
    display: none;
}

.searched-domain__info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.searched-domain__text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.searched-domain__title {
    color: var(--logo-color, #20395F);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
}

.searched-domain__text .selected-domain__alert-text {
    font-size: 18px;
}

.searched-domain__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
    border: 1px solid var(--Secondary-blue, #0B63E5);
    background: var(--Seocndary-white);
    padding: 32px;
    margin-bottom: 32px;
}

.searched-domain__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.searched-domain__actions .btn {
    width: 244px !important;
}

.similar-domains__title {
    color: var(--logo-color, #20395F);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.similar-domains__title span {
    color: var(--Body-text, #858F9C);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

.similar-domains-item__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 20px;
}

.similar-domains__text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.similar-domains-item__title {
    color: var(--Primary-Blue, #0B63E5);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.similar-domains-item__title_checked {
    color: var(--Flowkit-Purple, #7B61FF);
}

.similar-domains-item__subtitle {
    color: var(--light-solid-color-secondary-secondary-600-hover, #A8AAAE);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 14px;
}

.notification-method__item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.notification-method__item-action {
    align-items: center;
    gap: 6px;
}

.notification-method__item-action .btn {
    height: 38px;
    min-width: 148px;
}

.modal-tracking-notifications .modal-body {
    padding: 65px !important;
    padding-top: 41px !important;
}

.modal-tracking-notifications .notification-method__list {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.modal-tracking__action {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 26px;
    justify-content: center;
}

.modal-tracking__action .btn {
    min-width: 162px;
}

.notification-method__item .d-flex {
    align-items: center;
}

.notification-settings-modal input {
    width: 420px;
}

.notification-item__wrapper {
    margin-top: 14px;
}

.notification-item {
    background-color: #A8AAAE29;
    padding: 6px 10px;
    height: 31px;
    cursor: pointer;
    margin-right: 6px;
    margin-top: 6px;
}

.notification-item-cross {
    margin-left: 5px;
}

.domain-detail-notification-method__list .d-flex {
    align-items: center !important;
}

.modal-tracking__head {
    margin-bottom: 27px;
    gap: 12px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.modal-tracking__title {
    white-space: nowrap;
    margin-bottom: 0;
    color: var(--Light-Typography-Color-Heading-Text, #4B465C);
    text-align: center;
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
}

.modal-tracking__subtitle {
    color: var(--Light-Typography-Color-Body-Text, #4B465C);
    text-align: center;
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

.modal-tracking__subtitle span {
    color: var(--light-solid-color-primary-primary-500-base, #0B63E5);
}

.notification-method__title .notification-method__default {
    color: var(--Light-Solid-Color-Secondary-Secondary---400, #A8AAAE);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
}

.empty-list__container {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin-top: 80px;
    margin-bottom: 80px;
}

.empty-list__img {
    height: 120px;
    margin-bottom: 18px;
}

.empty-list__title {
    color: var(--logo-color, #20395F);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 44px;
}

.empty-list__subtitle {
    color: var(--light-solid-color-secondary-secondary-600-hover, #A8AAAE);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.start-search__panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-bottom: 140px;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    width: 780px;
    margin: auto;
    margin-top: 100px;
    margin-bottom: 100px;
}

.start-search__title {
    color: var(--logo-color, #20395F);
    text-align: center;
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
    margin-bottom: 80px;
    width: 489px;
}

.start-search__panel .form-control {
    height: 48px !important;
    width: 340px !important;
}

.start-search__panel .country__text .ti {
    margin-left: 6px;
    font-size: 16px;
}

.start-search__panel .country__item_success .country__text {
    background: #30BD91;
    color: var(--Primary-white, #FEFEFE);
}

.start-search__panel .country__item_fail .country__text {
    background: #FF5A50;
    color: var(--Primary-white, #FEFEFE);
}

.start-search__panel .country__item_1 {
    position: relative;
    margin-bottom: 22px;
    left: 90px;
}

.start-search__panel .country__item_2 {
    position: relative;
    margin-bottom: 32px;
    left: 170px;
    transform: scale(1.7);
}

.start-search__panel .country__item_3 {
    position: relative;
    margin-bottom: 32px;
    margin-top: 43px;
    transform: scale(1.7);
    left: 85px;
}

.start-search__panel .country__item_4 {
    position: relative;
    margin-bottom: 32px;
    transform: scale(1.7);
    left: 240px;
}

.start-search__panel .country__item_5 {
    position: relative;
    transform: scale(1.2);
    left: 80px;
}

.exhausted-subscription-body {
    padding: 65px !important;
    padding-top: 41px !important;
}

.exhausted-subscription__head {
    gap: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.exhausted-subscription__title {
    color: var(--Light-Typography-Color-Heading-Text, #4B465C);
    text-align: center;
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
    white-space: nowrap;
}

.exhausted-subscription__subtitle {
    color: var(--Light-Typography-Color-Body-Text, #4B465C);
    text-align: center;
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

.modal-content {
    width: auto !important;
}

.exhausted-subscription__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 26px;
}

.exhausted-subscription__item {
    border-radius: 8px;
    border: 1px solid var(--Secondary-blue, #CEE0FA);
    background: var(--Light-Solid-Color-Gray-Gray---100, linear-gradient(0deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%), #4B465C);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

.exhausted-subscription__info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.exhausted-subscription-item__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.exhausted-subscription-item__title {
    color: var(--Primary-Blue, #0B63E5);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.exhausted-subscription-item__subtitle {
    color: var(--Light-Typography-Color-Body-Text, #4B465C);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    white-space: nowrap;
}

.exhausted-subscription__info .ti {
    color: var(--Primary-Blue, #0B63E5);
    font-size: 30px;
}

.exhausted-subscription__action {
    display: flex;
    align-items: center;
    gap: 24px;
}

.exhausted-subscription__action .btn {
    width: 180px;
    height: 38px;
}

.exhausted-subscription__currency {
    white-space: nowrap;
    color: var(--Primary-Blue, #0B63E5);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
}

/*active-exhausted-item-bg.png*/

.exhausted-subscription__item_active {
    overflow: hidden;
    position: relative;
    background-repeat: no-repeat !important;
    background-position: right !important;
    /*background: var(--Light-Solid-Color-Gray-Gray---100, linear-gradient(0deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%), #4B465C);*/
}

.exhausted-subscription__item_active:before {
    content: '';
    border-radius: 446px;
    background: #9FFFD7;
    filter: blur(125px);
    width: 61px;
    height: 446px;
    position: absolute;
    transform: rotate(77deg);
    flex-shrink: 0;
    z-index: 1;
    right: 0;
}

.exhausted-subscription__item_active:after {
    content: '';
    border-radius: 503px;
    background: #9FD1FF;
    filter: blur(125px);
    width: 186px;
    height: 503px;
    right: 100px;
    transform: rotate(74deg);
    flex-shrink: 0;
    position: absolute;
    z-index: 2;
}

.exhausted-subscription__info, .exhausted-subscription__action {
    z-index: 3;
}

.billing-page__route {
    color: var(--Light-Typography-Color-Body-Text, #4B465C);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 146.667% */
    margin-top: 24px;
}

.billing-page__route span {
    font-weight: 600;
}

.billing-page__title {
    color: var(--logo-color, #20395F);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 44px;
    margin-bottom: 24px;
}

.billing-types-select__wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 20px;
}

.billing-card__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 24px;
}

.billing-card__item {
    position: relative;
    padding: 64px 24px 24px 24px;
    border-radius: 8px;
    border: 1px solid rgba(168, 170, 174, 0.4);
    height: 100%;
}

.billing-card__item:hover {
    border-color: var(--light-solid-color-primary-primary-500-base);
    transition: border-color 0.3s ease;
}

.billing-card__item-label {
    position: absolute;
    right: 24px;
    top: 24px;
    color: var(--light-solid-color-primary-primary-500-base, #0B63E5);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 14px; /* 107.692% */
    border-radius: 4px;
    background: var(--light-opacity-color-primary-primary-16, rgba(11, 99, 229, 0.16));
    padding: 5px 10px;
}

.billing-card__type {
    text-align: center;
    color: var(--logo-color, #20395F);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px; /* 138.462% */
    margin-bottom: 6px;
}

.billing-card__description {
    color: var(--Light-Typography-Color-Body-Text, #4B465C);
    text-align: center;
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 146.667% */
    margin-bottom: 16px;
}

.billing-card__price {
    display: flex;
    gap: 2px;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.billing-card__price-wrap {
    display: flex;
    gap: 2px;
    align-items: baseline;
}

.billing-card__price-currency {
    color: var(--light-solid-color-primary-primary-500-base, #0B63E5);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 146.667% */
}

.billing-card__price-value {
    color: var(--light-solid-color-primary-primary-500-base, #0B63E5);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 56px;
    font-style: normal;
    font-weight: 500;
    line-height: 78px; /* 139.286% */
}

.billing-card__price-period {
    color: var(--Light-Typography-Color-Muted-Text, #4B465C);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 146.667% */
    opacity: 0.5;
}

.billing-card__info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 0;
    margin-bottom: 16px;
}

.billing-card__info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.billing-card__info-item .ti {
    color: var(--Primary-Blue, #0B63E5);
    font-size: 20px;
}

.billing-card__info-item__text {
    color: var(--Light-Typography-Color-Body-Text, #4B465C);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 146.667% */
}

.billing-card__item .btn {
    width: 100%;
}

.billing-card__item.billing-card__item_active .billing-card__info-item .billing-card__info-item__text {
    color: var(--light-solid-color-success-success-700-active, #28C76F);
}

.billing-card__item.billing-card__item_active .billing-card__info-item .ti {
    color: var(--light-solid-color-success-success-700-active, #28C76F);
}

.billing-card__item_default {
    border-radius: 8px;
    border: 1px solid var(--light-solid-color-primary-primary-500-base, #0B63E5);
    background: linear-gradient(205deg, rgba(154, 252, 240, 0.15) -36.79%, rgba(160, 255, 244, 0.00) 59.78%), linear-gradient(148deg, rgba(120, 174, 255, 0.80) -20.35%, rgba(255, 255, 255, 0.00) 51%);
}

.authentication-inner:before {
    content: none !important;
}

.authentication-inner:after {
    background-image: url("/assets/img/start-search-bg.png") !important;
    width: 1000px !important;
    height: 800px !important;
    z-index: -1 !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%);
    background-repeat: no-repeat !important;
    background-size: contain !important;
}

.authentication-inner {
    max-width: 560px !important;
}

.authentication-inner .card-body {
    padding: 50px 60px !important;
}

.authentication__title {
    text-align: center;
    color: var(--logo-color, #20395F);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px; /* 138.462% */
}

.authentication__subtitle {
    text-align: center;
    color: var(--Light-Typography-Color-Body-Text, #4B465C);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 146.667% */
}

.profile__layout {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 40px;
}

.profile__layout .nav-tabs {
    margin-bottom: 24px;
}

.profile__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 16px;
}

.profile__cards .card {
    padding: 24px;
    border-radius: 8px;
    background: var(--Flowkit-White, #FFF);
    box-shadow: none;
}

.card__title {
    color: var(--logo-color, #20395F);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card__head {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card__title .ti {
    color: var(--light-solid-color-primary-primary-500-base, #0B63E5);
    font-size: 20px;
}

.card__action-name {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
}

.card__action-dropdown {
    display: flex;
    flex-direction: column;
}

.card__action-dropdown .btn {
    height: 38px;
    width: 100%;
    max-width: calc(50% - 20px);
    padding-left: 10px !important;
    padding-right: 15px !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    border-color: #c9c8ce;
    color: var(--Light-Typography-Color-Body-Text, #4B465C);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 160% */;
}

.card__action-dropdown .dropdown-menu {
    width: 100%;
    max-width: calc(50% - 20px);
}

.card__head-edit {
    cursor: pointer;
    color: var(--light-solid-color-primary-primary-500-base, #0B63E5);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: 0.43px;
}

.card__action-delete {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card__action-delete .btn {
    height: 28px;
    width: max-content;
}

.profile__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
    border: 1px solid var(--Secondary-blue, #0B63E5);
    background: url("/assets/img/active-exhausted-item-bg.png"), radial-gradient(1550.42% 184.69% at 75.43% -134.34%, rgba(159, 255, 215, 0.20) 0%, rgba(159, 255, 215, 0.00) 100%), linear-gradient(277deg, rgba(159, 209, 255, 0.50) -1.56%, rgba(159, 209, 255, 0.00) 57.37%), #FFF;
    padding: 24px;
    margin-bottom: 24px;
    background-repeat: no-repeat !important;
    background-position: right !important;
    background-size: contain !important;
}

.profile__container .avatar {
    width: 64px;
    height: 64px;
}

.profile__container-account {
    display: flex;
    align-items: center;
    gap: 24px;
}

.profile__container-names {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.profile__container-names__title {
    color: var(--logo-color, #20395F);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px; /* 136.364% */
}

.profile__container-names__subtitle {
    color: var(--Primary-Blue, #0B63E5);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
}

.account-stat__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 42px;
    position: relative;
}

.account-stat__list:before {
    content: '';
    position: absolute;
    width: 1px;
    height: 64px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.60) 0%, rgba(255, 255, 255, 0.60) 100%), #A8AAAE;
    left: -44px;
}

.account-stat__item {
    display: flex;
    align-items: center;
    gap: 11px;
}

.account-stat__item .ti {
    color: var(--Primary-Blue, #0B63E5);
    font-size: 30px;
}

.account-stat__text {
    display: flex;
    flex-direction: column;
}

.account-stat__title {
    color: var(--logo-color, #20395F);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px; /* 136.364% */
}

.account-stat__subtitle {
    color: var(--Light-Typography-Color-Body-Text, #4B465C);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 146.667% */
}

.account-info__label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.account-plan__panel {
    display: flex;
    align-items: center;
    gap: 32px;
}

.account-info__label .ti {
    color: var(--Primary-Blue, #0B63E5);
    font-size: 35px;
}

.account-info__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.account-info__title {
    color: var(--Primary-Blue, #0B63E5);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px; /* 136.364% */
}

.account-info__subtitle {
    color: var(--Light-Typography-Color-Body-Text, #4B465C);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 146.667% */
}

.transaction__page-head {
    margin-top: 6px !important;
    margin-bottom: 30px !important;
}

.transaction__page-head h2 {
    color: var(--logo-color, #20395F);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px; /* 136.364% */
    margin-bottom: 0;
}

.modal-control__container {
    width: 100%;
    min-width: 422px;
    max-width: 100vw;
    margin-bottom: 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.security__block {
    border-radius: 8px;
    border: 1px solid var(--Secondary-blue, #CEE0FA);
    background: var(--Flowkit-White, #FFF);
    max-width: 1080px;
    margin: 0 auto;
    padding: 24px;
}

.password__block {
    margin-bottom: 16px;
}

.security__block h2 {
    color: var(--logo-color, #20395F);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

.security__block h2 .ti {
    color: var(--light-solid-color-primary-primary-500-base, #0B63E5);
    font-size: 20px;
}

.security-password__form {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(auto, 330px));
    grid-gap: 14px;
    margin-bottom: 18px;
    width: 100%;
}

.security-password__subtitle {
    color: var(--logo-color, #20395F);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px; /* 140% */
    margin-bottom: 14px;
}

.password-requirements__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.password-requirements__item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--Light-Typography-Color-Body-Text, #4B465C);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 146.667% */
}

.password-requirements__item_fail {
    color: var(--light-solid-color-danger-danger-600-hover, #EA5455);
}

.password-requirements__item_success {
    color: var(--light-solid-color-success-success-700-active, #28C76F);
}

.two-factor__block {
    background: radial-gradient(78.93% 43.03% at 75.39% 35.49%, rgba(11, 229, 177, 0.12) 0%, rgba(11, 229, 177, 0.00) 100%), linear-gradient(309deg, rgba(11, 99, 229, 0.20) -8.67%, rgba(11, 99, 229, 0.00) 55.82%), #FFF;
}

.two-factor__container {
    max-width: 510px;
}

.two-factor__title {
    color: var(--logo-color, #20395F);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px; /* 140% */
}

.two-factor__text {
    color: var(--Light-Typography-Color-Body-Text, #4B465C);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 146.667% */
}

.two-factor__container {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.two-factor__container .btn {
    margin-top: 12px;
    width: max-content;
}

.two-factor__block {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.two-factor__block .img-shield {
    width: 258px;
}

.two-factor-authenticator__modal .delete-modal__action {
    width: 100%;
    justify-content: flex-end;
    margin-top: 26px;
}

.two-factor-authenticator__modal .two-factor-authenticator__alert {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.two-factor-authenticator__alert__text {
    color: var(--light-solid-color-warning-warning-500-base, #FF9F43);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px; /* 146.667% */
}

.two-factor-authenticator__alert__code {
    color: var(--light-solid-color-warning-warning-500-base, #FF9F43);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 133.333% */
}

.two-factor-authenticator__modal .modal-body {
    width: 787px;
}

.two-factor-authenticator__text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.two-factor-authenticator__text_title {
    color: var(--Light-Typography-Color-Heading-Text, #4B465C);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 133.333% */
}

.two-factor-authenticator__text_subtitle {
    color: var(--Light-Typography-Color-Body-Text, #4B465C);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 146.667% */
}

.two-factor-authenticator__qr {
    margin-top: 36px;
    margin-bottom: 16px;
    margin-left: auto;
    margin-right: auto;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.billing__title {
    color: var(--Primary-Blue, #0B63E5);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 23px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px; /* 130.435% */
}

.billing__subtitle {
    color: var(--Light-Typography-Color-Body-Text, #4B465C);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 137.5% */
}

.billing__head {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

.billing__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
}

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

.billing__item-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.billing__item-text__title {
    color: var(--logo-color, #20395F);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px; /* 137.5% */
}

.billing__item-text__subtitle {
    color: var(--Light-Typography-Color-Body-Text, #4B465C);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 137.5% */
}

.billing__item-icon {
    display: flex;
    width: 44px;
    height: 44px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: rgba(206, 224, 250, 0.50);
}

.billing__item-icon .ti {
    color: #0B63E5 !important;
}

.billing__block .account-stat__list:before {
    content: none;
}

.page-item_disabled {
    cursor: not-allowed;
}

.page-item_disabled .page-link {
    pointer-events: none;
}

.swal2-modal.swal2-popup .swal2-title {
    margin: 0;
}

.back__link-wrapper {
    margin-top: 35px;
}

.back__link {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--Primary-Blue, #0B63E5);
    font-size: 15px;
}

.refill-block__container, .subscription-success__container {
    border-radius: 8px;
    background: var(--Flowkit-White, #FFF);
    box-shadow: 0px 7px 45px 0px rgba(0, 0, 0, 0.05);
    width: 560px;
    margin: auto;
    padding: 44px 24px;
}

.refill-page__wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: calc(100dvh - 250px);
    min-height: 700px;
    gap: 20px;
}

.refill-block__title {
    color: var(--logo-color, #20395F);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px; /* 138.462% */
    text-align: center;
    margin-bottom: 32px;
}

.primary__text {
    color: var(--Primary-Blue, #0B63E5);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 146.667% */
}

.default__text {
    color: var(--Light-Typography-Color-Body-Text, #4B465C);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 153.846% */
}

.default__text_sm {
    color: var(--Light-Typography-Color-Body-Text, #4B465C);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 153.846% */
}

.default-dark__text {
    color: var(--logo-color, #20395F);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 146.667% */
}

.refill-calc-panel__wrapper {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--Secondary-blue, #CEE0FA);
    background: rgba(206, 224, 250, 0.40);
}

.refill-calc-panel__divider {
    height: 1px;
    width: 100%;
    border-bottom: 1px dashed #CEE0FA;;
}

.flex {
    display: flex;
}

.refill-calc-panel__content {
    padding: 12px 14px;
}

.refill-sum__text {
    color: var(--light-solid-color-primary-primary-500-base, #0B63E5);
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 46px; /* 143.75% */
    display: flex;
    align-items: flex-start;
    gap: 4px;
}

.refill-sum__currency {
    font-size: 15px;
    line-height: 27px;
}

.btn-w100 {
    width: 100%;
}

.refill-payments__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 12px;
}

.refill-payments__item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 76px;
    border-radius: 8px;
    border: 1px solid var(--Secondary-blue, #0B63E5);
    cursor: pointer;
}

.refill-payments__item_active {
    position: relative;
    border-radius: 8px;
    border: 1px solid var(--Primary-Blue, #0B63E5);
    background: rgba(206, 224, 250, 0.40);
}

.refill-payments__item_active .active-mark {
    position: absolute;
    top: 7px;
    right: 10px;
    color: var(--Primary-Blue, #0B63E5);
}

.coin-rate__block {
    border-radius: 3333px;
    border: 1px solid var(--Secondary-blue, #0B63E5);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 2px 12px;
    width: max-content;
    margin-left: auto;
}

.coin-rate__block img {
    height: 18px;
}

.refill-total__wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.refill-total__divider {
    width: 1px;
    height: 19px;
    background: var(--Light-Solid-Color-Extra-Divider, #DBDADE);
}

.coin-payment__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid #DBDADE;
    margin-bottom: 32px;
}

.coin-payment__code {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.refill-block__container_success {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.refill-block__container_success .refill-block__title {
    margin-bottom: 4px;
}

/*http://localhost/assets/img/start-search-bg.png*/

.is-invalid .form-label {
    color: #dc3545;
}

.is-invalid .form-control {
    border-color: #dc3545 !important;
}

.is-invalid .form-control:focus, .is-invalid.form-select:focus {
    border-color: #dc3545 !important;
}

.avatar-online__default {
    border-radius: 50%;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--Light-Solid-Color-Primary-Primary---400, #3C82EA) !important;
    color: var(--Light-Solid-Color-Extra-White, #FFF) !important;
    text-align: center !important;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 133.333% */
}

.user-dropdown-menu {
    /*padding: 20px!important;*/
}

.user-dropdown-menu .dropdown-item__user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-dropdown__text {
    display: flex;
    flex-direction: column;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
}

.user-dropdown__text .user-dropdown__title {
    font-weight: 600;
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 14px;
}

.user-dropdown__text .user-dropdown__subtitle {
    font-size: 12px;
}

.current-plan-button {
    opacity: 1!important;
}

.success-mark {
    .badge {
        width: 5rem;
        height: 5rem;
        background-color: #D4F4E2;
    }
}

.subscription-success__container {
    .balance {
        color: var(--Primary-Blue, #0B63E5);
    }
}

.subscription-success {
    &__title {
        weight: 500;
        size: 26px;
        line-height: 36px;
    }
}

.mb-3 .input-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.mb-3 .input-wrapper .input-prefix {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: #555;
    pointer-events: none;
}

.mb-3 .input-wrapper .form-control {
    padding-left: 25px;
}

.light-grey {
    color: var(--Light-Typography-Color-Muted-Text, #4B465C);
    font-feature-settings: 'clig' off, 'liga' off;
    opacity: 0.5;
}

.warning-text {
    background-color: #fff0e1;
    color: #ff9f43!important;
    border-radius: 8px;
}

.bnt-close-theme {
    position: absolute;
    right: -15px;
    top: -15px;
    border-radius: 6px!important;
    background: var(--Light-Solid-Color-Extra-Card-Background, #FFF)!important;
    box-shadow: 0 2px 4px 0 rgba(165, 163, 174, 0.30);
    opacity: 1!important;
    color: var(--light-solid-color-secondary-secondary-600-hover, #A8AAAE)!important;
}