.select-pure__select {
    align-items: center;
    box-shadow: unset;
    box-sizing: border-box;
    color: #010101;
    cursor: pointer;
    display: flex;
    font-size: 14px;
    font-weight: 500;
    justify-content: left;
    min-height: 44px;
    padding: 6px 10px;
    position: relative;
    transition: 0.2s;
    width: 100%;
    border: 1px solid #fff;
    border-radius: 32px;
}

.select-pure__options {
    border: 1px solid #fff;
    box-shadow: unset;
    box-sizing: border-box;
    color: #363b3e;
    display: none;
    left: 0;
    max-height: 240px;
    overflow-y: auto;
    position: absolute;
    top: calc(100% + 1px) !important;
    z-index: 5;
    border-top: unset;
    left: -1px;
    right: -1px;
    border-radius: 0px 0px 32px 32px;
    padding: 0;
}

.select-pure__options {
    scrollbar-width: none;
    scrollbar-color: none;
}

.select-pure__options::-webkit-scrollbar {
    display: none;
}

.select-pure__options::-webkit-scrollbar-track {
    display: none;
}

.select-pure__options::-webkit-scrollbar-thumb {
    display: none;
}

.select-pure__select--opened {
    border-radius: 32px 32px 0px 0px!important;
    background-color: #fff;
}

.select-pure__select--opened .select-pure__options {
    display: block;
}

.select-pure__select--opened .select-pure__label,
.select-pure__select--opened .select-pure__selected-label {
    color: #0171f9;
}

.select-pure__option {
    background: #fff;
    border-bottom: 1px solid #b2d5ff;
    box-sizing: border-box;
    line-height: 16px;
    padding: 6px 10px;
    color: #272727;
    transition: all 200ms ease-in;
}

.select-pure__option:hover {
    color: #0171f9;
}

.select-pure__option:last-child {
    border: none;
}

.select-pure__option--selected {
    color: #b5b5b5;
    cursor: initial;
    pointer-events: none;
    text-decoration: line-through;
}

.select-pure__option--hidden {
    display: none;
}

.select-pure__selected-label {
    background: unset;
    border-radius: 0px;
    color: #fff;
    cursor: initial;
    display: inline-block;
    margin: 0;
    padding: 2px 6px;
}

.select-pure__selected-label:last-of-type {
    margin-right: 0;
}

.select-pure__label {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0px;
    column-gap: 2px;
    line-height: 1em;
    color: #fff;
}

.select-pure__selected-label i {
    cursor: pointer;
    display: inline-block;
    margin-left: 7px;
    transition: all 200ms ease-in;
}

.select-pure__selected-label i:hover {
    color: #95b6ff;
}

.select-pure__autocomplete {
    background: #fff;
    border-left: none;
    border-right: none;
    border-top: none;
    box-sizing: border-box;
    font-size: 16px;
    outline: none;
    padding: 6px 10px;
    width: 100%;
    color: #000;
    border-bottom: 1px solid #b2d5ff;
    border-top: 1px solid #b2d5ff;
}

.import_content_items .select-pure__select {
    min-height: 32px;
    position: relative;
}

.import_content_items .select-pure__select::after {
    content: "Select";
    position: absolute;
    left: 0;
    top: 6px;
    font-weight: 400;
    font-size: 14px;
    width: 100%;
    text-align: center;
}

.import_content_items .select-pure__option {
    background: #ffffff;
    line-height: 14px;
}

.import_content_items .select-pure__autocomplete {
    background: #f0f0f0;
    font-size: 14px;
}

.shop_tab_withinfo {
    display: flex;
    border-radius: 20px;
    padding: 0;
    margin-top: 8px;
    gap: 4px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.shop_tab_content_card_checkbox {
    font-size: 14px;
    border: 1px solid #fff;
    border-radius: 32px;
    padding: 4px 6px;
    height: 100%;
    cursor: pointer;
    transition: all 100ms ease-in;
    display: flex;
    align-items: center;
    color: #fff;
    gap: 4px;
}

.shop_tab_content_card_checkbox i {
    transition: all 100ms ease-in;
}

.shop_tab_content_card_checkbox:hover i {
    transform: rotate(90deg);
}

.shop_tab_content_card_checkbox.active {
    background: #fff;
    color: #0171f9;
}

.filter_form_btn {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.filter_form_btn #clear_fl {
    color: #a1a1a1;
}

.filter_form_btn #st_search {
    color: #0171f9;
}

#loader {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999999;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    background: #f1f1f14d;
    display: flex;
    align-items: center;
    justify-content: center;
}

#loader img {
    width: 300px;
    height: auto;
}

.flt_buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
}

.count_on_page {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
}

.count_on_page p {
    font-size: 14px;
    border: 1px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    color: #fff;
    justify-content: center;
    height: 44px;
    width: 44px;
    font-weight: 800;
    transition: all 100ms ease-in;
}

.count_on_page p:hover {
    font-size: 16px;
}

.count_on_page p[b_act] {
    background: #fff;
    color: #0171f9;
}

.items_count {
    font-size: 14px;
    color: #181818;
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 8px;
    line-height: 1em;
}

.abs_cnbl {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-end;
    justify-content: center;
}

.shop_tabs {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
}

.shop_tab.pass_item {
    padding: 2px 10px;
    line-height: 1em;
}

.shop_tabs .shop_tab:not(.pass_item) {
    border: 1px solid #181818;
    border-radius: 32px;
    padding: 2px 10px;
    line-height: 1em;
    cursor: pointer;
    font-weight: 500;
    transition: all 100ms ease-in;
}

.shop_tabs .shop_tab:not(.pass_item, .shop_tab_active):hover {
    background-color: #fff;
}

.shop_tabs .shop_tab.shop_tab_active {
    background-color: #181818;
    color: #f1f1f1;
}

.country_flag img {
    border-radius: 4px;
    height: 20px;
    width: auto;
}

.country_flag {
    text-align: center;
}

td[info='base'] {
    color: #0171f9;
    font-weight: 800;
}

td[info='slr'] {
    color: #68de3a;
    font-weight: 800;
}

td[info='bin'] {
    color: #0171f9;
    font-weight: 800;
}

td[info='card'],
td[info='cvv'],
td[info='exp'] {
    font-weight: 800;
}

td[info='zip'] {
    font-weight: 800;
    color: #de813a;
}

td[info='bank'] {
    width: 100px;
}

td[info='bank'] span {
    font-size: 12px;
    word-break: break-all;
    white-space: pre-wrap;
}

td[info='valid'] b {
    font-weight: 800;
}

td[info='addt'] {
    font-size: 10px;
    font-weight: 600;
}

td[info='info'] {
    width: 200px;
}

td[info='info'] span {
    font-size: 12px;
    word-break: break-all;
    white-space: pre-wrap;
    color: #0171f9;
    font-weight: 500;
}

td[info='price'] {
    color: #68de3a;
    font-weight: 800;
}

.delete_fr_cart i {
    color: #de3a3a;
    font-size: 16px;
    cursor: pointer;
    transition: all 100ms ease-in;
}

.delete_fr_cart i:hover {
    transform: scale(1.2);
}

.addt_info {
    color: #0171f9;
    font-weight: 500;
    margin-left: auto;
    padding-left: 16px;
    word-break: break-all;
    white-space: pre-wrap;
    padding-right: 24px;
}

tr[empty_td] td {
    text-align: center;
    font-size: 16px;
    padding: 12px 0;
    font-weight: 700;
    color: #9b9b9b;
}

.store_wr {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 4px;
}

.cart_icon>span {
    position: absolute;
    font-weight: 600;
    top: 4px;
    font-size: 10px;
    line-height: 1em;
}

.social .top_active>span {
    color: #0171f9;
}

.cart_buttons {
    position: absolute;
    z-index: 10;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
}

#cart_clear {
    color: #de3a3a;
}

#cart_clear:hover {
    box-shadow: 0 0 12px 4px #de3a3a;
}

#buy_cart {
    color: #68de3a;
}

.check_bins {
    color: #0171f9;
}

#buy_cart:hover {
    box-shadow: 0 0 12px 4px #68de3a;
}

.cart_content .country_flag {
    text-align: left;
}

.bin_item textarea {
    margin-top: 24px;
    background: #fff;
    border-radius: 12px;
    width: 100%;
    height: 200px;
    overflow: auto;
    padding: 12px;
    position: relative;
    resize: none;
    border: none;
}

.checker_result {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    padding: 0;
    margin-top: 24px;
}

.checker_result h2 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    color: #000;
}

.checker_result p {
    font-size: 16px;
    font-weight: 700;
    margin-top: 8px;
    color: #0171f9;
}

.checker_result span {
    font-size: 14px;
    font-weight: 400;
    color: #000;
}

.checker_wn {
    margin-top: 12px;
}

.tbl_top {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
}

.tbl_top select {
    border: 1px solid #181818;
    border-radius: 32px;
    padding: 0px 6px;
    line-height: 1em;
    cursor: pointer;
    font-weight: 500;
}

.tbl_top select:active {
    border-radius: 32px 32px 0 0;
}

select:focus-visible {
    outline: none;
}

.checker_tbl .items_count {
    margin: 0;
    text-align: center;
    margin-top: 24px;
}

.one_item {
    border: 1px solid #181818;
    border-radius: 32px;
    font-weight: 500;
    opacity: .6;
}

.news_elems {
    gap: 16px;
}

.empt_news {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    padding: 20px 0;
    color: gray;
}

.checker_st {
    font-weight: 800;
}

.checker_tbl tbody tr:not(:last-child) {
    border-bottom: 1px solid #cdcdcd;
}

.pd_5566 {
    padding-bottom: 72px;
}

.bin_bl {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    align-items: flex-start;
    gap: 2px;
}

.cust_row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 12px;
}

.transactions_item.data_item.empt_tr {
    background: transparent;
    justify-content: center;
    margin-top: 25px;
}

.transactions_item.data_item.empt_tr .transactions_item_col {
    font-size: 16px;
    font-weight: 600;
    color: #a9a9a9;
}

.data_item[data-col='1'] .sts_tr {
    color: #68de3a;
}

.data_item[data-col='2'] .sts_tr {
    color: #de3a3a;
}

.data_item[data-col='3'] .sts_tr {
    color: #0171f9;
}

.sts_tr {
    font-weight: 700;
}

.data_item .transactions_item_col:nth-child(2) {
    font-weight: 700;
}

.page_left_menu_list a.logout-btn {
    color: #de3a3a;
}

.page_left_menu_list a.logout-btn:hover {
    color: #fff;
}

.mob_menu_content .page_left_menu_list a.logout-btn {
    background-color: #fff;
}

.page_li {
    cursor: pointer;
}

span[w_addr] {
    color: #000;
    font-size: 11px;
    display: block;
    font-weight: 500;
}

span[img_cr] {
    background: #0171f9;
    border-radius: 50%;
}

.w_32 {}

.qr_block {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
}

.qr_div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cr_name>span {
    flex: 1;
    font-size: 18px;
    color: #010101;
    font-weight: 600;
    text-align: center;
    line-height: 1em;
}

.wallet_addr {
    width: auto;
    font-size: 16px;
    color: #0171f9;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.wallet_addr i {
    margin-left: 10px;
    font-size: 20px;
    cursor: pointer;
    transition: all 100ms ease;
    margin-bottom: 3px;
}

.wallet_addr i:hover {
    transform: scale(1.05);
}

.wallet_addr span {
    word-break: break-all;
}

.pay_data {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.blocked_bl b {
    color: #fff;
}

.cc_info {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    overflow-x: hidden;
    background: #0171f9;
    border-radius: 32px 32px 12px 12px;
    padding: 24px;
    z-index: 30;
    overflow-y: auto;
}

.close_ccinfo {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

.close_ccinfo i {
    cursor: pointer;
    transition: all 100ms ease-in;
}

.close_ccinfo i:hover {
    transform: rotate(90deg);
}

.details_cc {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 12px;
    margin-top: 24px;
}

.details_cc .col-cc {
    width: calc(25% - 9px);
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

.details_cc p span {
    word-break: break-all;
    white-space: pre-wrap;
}

.details_cc p {
    cursor: pointer;
    transition: all 100ms ease-in;
}

.details_cc p:hover {
    color: #1effea;
}

.details_cc p.cop_ {
    color: #75ff1e;
}

tr.selected_[data-id] a.open_cc {
    background: #fff;
    color: #0171f9;
}

.db_tbl td[t='name'] {
    color: #0171f9;
    font-weight: 700;
}

.db_tbl td[t='date'] {
    color: #000;
}

.db_tbl td[t='cards'],
.db_tbl td[t='sale'],
.db_tbl td[t='sold'] {
    font-weight: 700;
}

.db_tbl td[t='prof'] {
    color: #68de3a;
    font-weight: 700;
}

.db_tbl td[t='proc'] {
    color: #de813a;
    font-weight: 700;
}

.db_tbl td[t='valid'] {
    color: #000;
    font-weight: 700;
}

.db_tbl tr td {
    padding-top: 8px;
    padding-bottom: 8px;
}

.db_tbl tr.more_info td {
    padding-top: 0;
}

.db_tbl tr[db_tr] {
    border-top: 1px solid #cdcdcd;
}

.badge_ {
    border-radius: 0px;
    padding: 0;
    font-weight: 700;
}

.badge_[t='sale'] {
    color: #68de3a;
}

.badge_[t='pending'] {
    color: #0171f9;
}

.badge_[t='rejected'] {
    color: #de3a3a;
}

.badge_[t='disabled'] {
    color: #de813a;
}

.import_inputs_top {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 12px;
}

.import_inputs_top p {
    color: #fff;
    font-weight: 900;
    margin-bottom: 4px;
}

.import_inputs_top input {
    border-radius: 32px;
    border: none;
    height: 44px;
    padding: 14px 10px;
    position: relative;
    transition: 0.2s;
    width: 160px;
    text-align: center;
    font-weight: 800;
}

.dual-listbox {
    display: flex;
    flex-direction: column;
}

.dual-listbox .dual-listbox__container {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.dual-listbox .dual-listbox__search {
    padding: 10px;
    width: 100%;
}

.dual-listbox .dual-listbox__available,
.dual-listbox .dual-listbox__selected {
    height: 300px;
    overflow-y: auto;
    padding: 0;
    width: 300px;
    margin-top: 0;
    -webkit-margin-before: 0;
}

.dual-listbox .dual-listbox__buttons {
    display: flex;
    flex-direction: column;
    margin: 0 10px;
}

.dual-listbox .dual-listbox__button {
    border: 0;
    background-color: #000;
    color: #fff;
    cursor: pointer;
    transition: all 200ms ease;
    font-size: 14px;
    padding: 4px 10px;
    font-weight: 700;
    border-radius: 16px;
    text-transform: capitalize;
}

.dual-listbox .dual-listbox__button:hover {
    background-color: #707070;
}

.dual-listbox .dual-listbox__title {
    padding: 15px 10px;
    font-size: 120%;
    font-weight: 700;
    margin-top: 1rem;
    -webkit-margin-before: 1rem;
}

.dual-listbox .dual-listbox__item {
    display: block;
    padding: 10px;
    cursor: pointer;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    transition: background .2s ease;
}

#add_level .select-pure__select.select-pure__select--multiple,
#add_country .select-pure__select.select-pure__select--multiple {
    background-color: #fff;
    min-height: 44px;
    width: 160px;
    border-radius: 32px;
}

.listbox_wrap .dual-listbox__container {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
}

.listbox_wrap .dual-listbox__search {
    display: none;
}

.listbox_wrap .dual-listbox__buttons {
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 8px;
}

.listbox_wrap .dual-listbox__buttons>button {
    margin: 0;
}

.listbox_wrap .dual-listbox__buttons>button:focus {
    box-shadow: none;
}

.listbox_wrap .dual-listbox__title {
    margin: 0;
    font-size: 14px;
    text-align: center;
    color: #767676;
    display: none;
}

.listbox_wrap .dual-listbox__container>div:not([class]) {
    width: 100%;
}

.listbox_wrap .dual-listbox__available,
.listbox_wrap .dual-listbox__selected {
    display: flex;
    width: 100%;
    height: auto;
    min-height: 44px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    background: #fff;
    gap: 8px;
    padding: 10px 16px 10px;
    border: none;
    border-radius: 32px;
    transition: all 200ms ease;
}

.listbox_wrap .dual-listbox__available>li,
.listbox_wrap .dual-listbox__selected>li {
    border: none !important;
    background: #0171f9;
    font-size: 14px;
    padding: 4px 10px;
    color: #fff;
    font-weight: 700;
    border-radius: 16px;
}

#add_bin_pr {
    color: #0171f9;
    font-size: 18px;
    cursor: pointer;
    transition: all 200ms ease;
    position: absolute;
    right: 23px;
    top: 1px;
}

#add_bin_pr:hover {
    transform: rotate(90deg);
}

.profile__form-label {
    color: #000;
    font-weight: 900;
    margin-bottom: 4px;
    position: relative;
    width: 100%;
    display: block;
}

th[no_elems] {
    text-align: center;
}

.import_from label {
    font-size: 14px;
    position: relative;
    width: 100%;
}

.import_buttons .row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}

.import_buttons button {
    font-size: 16px;
    font-weight: 900;
    padding: 13px 20px;
    border: 1px solid #0171f9;
    transition: all 200ms ease;
    border-radius: 32px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    min-width: 160px;
    cursor: pointer;
    line-height: 1em;
    gap: 8px;
}

.import_buttons button.send_base:hover {
    background-color: transparent;
    color: #0171f9;
    padding: 13px 26px;
}

.import_buttons button.upload_base:hover {
    background-color: #0171f9;
    color: #fff;
    padding: 13px 26px;
}

.send_base {
    background: #0171f9;
    color: #fff;
}

.upload_base {
    background: transparent;
    color: #0171f9;
}

.clear_file {
    color: #0171f9;
    font-size: 22px;
    line-height: 44px;
    vertical-align: bottom;
    cursor: pointer;
    margin-left: 8px;
    transition: all 200msease;
    margin-right: auto;
}

.clear_file:hover {
    transform: scale(1.1);
}

.profile__form-input {
    border: none;
    font-size: 14px;
    padding: 8px;
    background: #fff;
    color: #000;
    transition: all 200ms ease;
    width: 100%;
    border-radius: 32px;
    text-align: center;
    font-weight: 700;
}

.col-md-3,
.col-sm-2,
.col-sm-1 {
    position: relative;
    margin-top: 8px;
    overflow: hidden;
}

.col-sm-1 {
    width: calc(10% - 7.2px);
}

.col-sm-2 {
    width: calc(25% - 6px);
}

.bin_pr_conf {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 4px;
    width: calc(25% - 6px);
}

.delete_price {
    position: absolute;
    right: 0px;
    cursor: pointer;
    top: 0px;
    font-size: 15px;
    transition: all 200ms ease;
}

.delete_bin_price {
    font-size: 15px;
    transition: all 200ms ease;
    cursor: pointer;
}

.delete_bin_price:hover,
.delete_price:hover {
    color: #de3a3a;
}

.add_b {
    padding-left: 0 !important;
}

.import_txt.chat-fields textarea {
    background-color: #fff;
    font-size: 14px;
    padding: 12px;
    height: 200px;
    overflow: auto;
    color: #010101;
    line-height: 1.2em;
    box-shadow: unset;
    width: 100%;
    border: none;
    border-radius: 12px;
    resize: none;
}

.dual-listbox__item.dual-listbox__item--selected {
    background-color: #4197ff!important;
}

.mt-2 {
    margin-top: 12px;
}

.price_head {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

.price_head .profile__form-label {
    margin: 0;
}

.border_bl {
    height: 1px;
    width: 100%;
    background: #d9d9d9;
    margin: 16px 0;
}

.price_list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
    column-gap: 8px;
}

.answer_base {
    margin-top: 32px;
}

.answer_base .col-12>p,
.answer_base>p {
    text-align: center;
    color: #000;
    font-weight: 900;
    margin-bottom: 8px;
    width: 100%;
    display: block;
    font-size: 16px;
}

.answer_base .row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    column-gap: 0;
}

.answer_base .col-md-3 {
    width: 25%;
    font-weight: 700;
}

.answer_base .col-12 {
    width: 100%;
}

.answer_base span[data-info] {
    color: #0171f9;
    font-weight: 700;
}

.errors__db {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 6px;
}

.errors__db p {
    width: 100%;
    font-size: 14px;
}

.comment,
.errors__db p span {
    color: #de3a3a!important;
}

.success_db {
    color: #decb3a;
    font-weight: 700;
    padding: 24px 0 0;
    text-align: center;
    font-size: 16px!important;
}

.delete_bin_cnf {
    color: #de3a3a;
    cursor: pointer;
    font-size: 18px;
    margin-bottom: 4px;
    transition: all 100ms ease-in;
}

.delete_bin_cnf:hover {
    color: #000;
}

.list_pr {
    font-weight: 400;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 4px;
    column-gap: 8px;
    font-size: 14px;
    padding: 1px 0;
}

#save_auto_p,
.list_pr span:first-child b {
    color: #0171f9;
}

.list_pr b {
    font-weight: 600;
    color: #0171f9;
}

.list_pr * {
    line-height: 1em;
}

.news_bl {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: 12px;
}

.n_head {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.news_title {
    color: #000000;
    font-weight: 700;
    font-size: 16px;
}

.news_time {
    font-size: 16px;
    color: gray;
    font-weight: 300;
    text-align: right;
}
.contacts_ul{
    overflow: hidden;
}
.page_left_menu_list .contacts_ul a:hover{
    color: #0171f9;
    background-color: #fff;
}
.mob_menu_content .contacts_ul a:hover{
    color: #fff;
    background-color: transparent;
}
.export_btn{
    border: 1px solid #ffffff;
    border-radius: 0 12px 0 12px;
    line-height: 1em;
    cursor: pointer;
    font-weight: 600;
    transition: all 150ms ease-in;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #fff;
    font-size: 14px;
    padding: 2px 22px;
}
.export_btn:hover{
    background: #0171f9;
    color: #fff;
}
.export_btn.diss{
    pointer-events: none;
    color: #9b9b9b;
}
@media screen and (max-width:600px) {
    .details_cc .col-cc {
        width: calc(50% - 6px);
    }
    .chat_item {
        max-width: 100%;
    }
    .checker_tbl {
        overflow-y: hidden;
    }
    .checker_tbl,
    .nav,
    .page_right_content.cart_content {
        overflow-x: auto;
    }
}

@media (max-width: 480px) {
    main .dual-listbox__buttons {
        display: flex;
        flex-direction: column !important;
        flex-wrap: wrap;
        gap: 16px;
    }
    .dual-listbox .dual-listbox__button {
        width: 120px;
    }
    .import_buttons .row .col-sm-6 {
        display: flex;
        justify-content: center;
        flex-wrap: nowrap;
    }
    .send_base {
        margin: 0;
    }
    .import_buttons .row {
        gap: 16px;
    }
    .page_right.cart_page>.page_right_header {
        padding-bottom: 84px;
    }
    .pg_bin .cart_buttons {
        bottom: 64px;
    }
    .col-md-3,
    .col-sm-2,
    .col-sm-1 {
        width: calc(50% - 4px);
    }
    .pg_settings .page_right_header_row_left {
        padding-bottom: 70px;
    }
}