@charset "UTF-8";
@import "style_2.css";
@keyframes error_inp {
    0% {
        transform: translateX(0px);
    }
    25% {
        transform: translateX(-10px);
    }
    50% {
        transform: translateX(0px);
    }
    75% {
        transform: translateX(10px);
    }
    100% {
        transform: translateX(0px);
    }
}

::selection {
    color: #fff;
    background-color: #CE0051;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Roboto Mono', monospace;
    display: flex;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    flex-direction: column;
    justify-content: flex-start;
    background-color: #fff;
    color: #010101;
}

header {
    background-color: #f0f0f0;
    border-bottom: 1px dotted #c80041;
}

main {
    background-color: #fff;
    padding: 0;
    min-height: calc(100vh - 170px);
}

button {
    outline: none !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

* {
    scrollbar-width: 5px;
    scrollbar-color: #c80041 #f0f0f0
}

*::-webkit-scrollbar {
    width: 5px;
    height: 5px
}

*::-webkit-scrollbar-track {
    background: #f0f0f0
}

*::-webkit-scrollbar-thumb {
    background-color: #c80041;
    border-radius: 0
}

#loader {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .4);
    z-index: 999;
}

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

.main-info__wrap {
    margin: 24px 0;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}

p,
h1,
h2,
h3,
h4,
h5,
ul,
button,
label {
    margin-bottom: 0;
    padding: 0;
}

a:hover {
    text-decoration: none;
}

input {
    outline: none;
}

.wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

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

li.products-list__item {
    position: relative;
}

li.products-list__item.loading_pr::after {
    position: absolute;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background: #f0f0f0d6;
}

.custom-input {
    background: #fff;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #000;
    border: 0;
    padding-left: 0;
    transition: all 200ms ease;
    text-align: center;
}

.cust-select {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    cursor: pointer;
    padding-left: 16px;
}

.cust-select__header {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.cust-select__text {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    color: rgba(0, 0, 0, 0.4);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.cust-select__text-selected {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: rgba(0, 0, 0, 0.4);
}

.cust-select__arrow {
    width: 27px;
    height: 27px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    right: 6px;
    margin-top: 2px;
}

.cust-select__arrow--active {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.cust-select__arrow span {
    width: 2px;
    height: 9px;
    background-color: #afb0b2;
    position: absolute;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.cust-select__arrow span::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #afb0b2;
    position: absolute;
    left: -4px;
    top: 4px;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.cust-select__list {
    width: 100%;
    height: fit-content;
    position: absolute;
    top: 100%;
    left: 0;
    background: #f0f0f0;
    -webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 0px 0px 4px 4px;
    border-radius: 0px 0px 4px 4px;
    display: none;
    opacity: 0;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    z-index: 10001;
}

.cust-select__list--country {
    top: 120%;
}

.cust-select__list--active {
    opacity: 1;
}

.cust-select__item {
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    padding: 10px 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.cust-select__item:hover {
    background: #e0ebfc;
}

.cust-select__item--country .cust-select__text {
    color: #fff;
}

.cust-select__item--country:hover {
    background: none;
}

a.auth__sub.link_a {
    margin-top: 24px;
    margin-bottom: 0;
    background: #fff;
    color: #c80041;
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
    .cust-select__text-selected {
        font-size: 14px;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .cust-select__text-selected {
        font-size: 14px;
    }
    .cust-select__arrow {
        width: 20px;
        height: 20px;
        right: 4px;
    }
}

@media screen and (min-width: 576px) and (max-width: 767px) {
    .cust-select__text-selected {
        font-size: 14px;
    }
    .cust-select__arrow {
        width: 20px;
        height: 20px;
        right: 4px;
    }
}

@media screen and (min-width: 400px) and (max-width: 575px) {
    .cust-select__text-selected {
        font-size: 14px;
    }
    .cust-select__arrow {
        width: 20px;
        height: 20px;
        right: 4px;
    }
}


/* Specifications end */

.header-burger {
    display: none;
}

.header-burger-btn {
    display: none;
}

.header-burger__menu-btn {
    display: none;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: fixed;
    top: 28px;
    left: 20px;
    width: 26px;
    height: 26px;
    cursor: pointer;
    z-index: 10000;
}

.header-burger__menu-btn>span,
.header-burger__menu-btn>span::before,
.header-burger__menu-btn>span::after {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #c80041;
    -webkit-transition-duration: 0.25s;
    -o-transition-duration: 0.25s;
    transition-duration: 0.25s;
}

.header-burger__menu-btn>span::before {
    content: "";
    top: -8px;
}

.header-burger__menu-btn>span::after {
    content: "";
    top: 8px;
}

.header #header-burger__menu-toggle {
    opacity: 0;
    display: none;
}

.header #header-burger__menu-toggle:checked~.header-burger__menu-btn>span {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.header #header-burger__menu-toggle:checked~.header-burger__menu-btn>span::before {
    top: 0;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}

.header #header-burger__menu-toggle:checked~.header-burger__menu-btn>span::after {
    top: 0;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.header #header-burger__menu-toggle:checked~.header-burger {
    visibility: visible;
    left: 0;
}

.header-wrap {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 16px 0;
}

.proj-logo {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

.proj-logo img {
    height: 40px;
    width: auto;
}

.proj-logo span {
    font-size: 24px;
    font-weight: 700;
    margin-top: 2px;
}

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

.header-find {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-right: 17px;
}

.header-find__field {
    width: 220px;
    height: 43px;
    margin-right: 5px;
}

.header-find__btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    background: #101924;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
}

.header-find__select {
    width: 185px;
    height: 43px;
    background: #101924;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    position: relative;
}

.header-find__select::before {
    content: "";
    width: 2px;
    height: 43px;
    position: absolute;
    background: rgba(0, 0, 0, 0.03);
    right: 0;
}

.header-find__sub {
    width: 43px;
    height: 43px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
}

bore .header-find__sub-img {
    width: 24px;
    height: 24px;
}

.header-btns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 18px;
}

.header-btns__link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-btns__link>i {
    font-size: 20px;
    color: #c80041;
    transition: all 300ms ease;
}

.header-btns__link:hover {
    transform: scale(1.1);
}

.header-btns__text {
    font-style: normal;
    font-weight: 450;
    font-size: 14px;
    line-height: 16px;
    color: #f7931a;
}

.header-btns__img-balance {
    width: 19px;
    height: 19px;
    margin-right: 6px;
}

.header-btns__select {
    width: 105px;
    padding: 0;
    cursor: pointer;
}

.header-btns__select-img {
    width: 24px;
    height: 24px;
    -o-object-fit: contain;
    object-fit: contain;
    margin-right: 8px;
}

.header-btns__select-country {
    font-style: normal;
    font-weight: 450;
    font-size: 18px;
    line-height: 21px;
    color: #ffffff;
}

.header-btns__form-country {
    margin-right: 5px;
    background: #101924;
    padding: 0 5px;
}

.header-btns__sub-country {
    background-color: transparent;
    height: 100%;
    border: 0;
    outline: none;
    border-left: 1px solid black;
    padding: 5px;
}

.header-btns__select-country {
    background-color: transparent;
    border: 0;
    font-style: normal;
    font-weight: 450;
    font-size: 18px;
    line-height: 21px;
    color: #ffffff;
    outline: none;
}

.header-btns__select-country option {
    background-color: #fff;
    padding: 4px;
}

.header-user {
    position: relative;
}

.header-user-profile {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}


/* .header-user-profile:hover .header-user__menu-wrap {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
} */

.header-user__name {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    margin-right: 0;
    cursor: pointer;
    color: #c80041;
    text-transform: uppercase;
    transition: all 200ms ease;
}

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

.header-wrap.wrap .proj-logo {
    margin: 0;
    width: 290px;
}

.r-menu {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    width: 290px;
}

.header-main-menu {
    display: flex;
    flex: 1;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.header-main-menu div {
    margin: 0px 8px;
}

.header-main-menu a {
    color: #010101;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 16px;
    padding: 4px;
    line-height: 1em;
    border: 2px dotted #f0f0f0;
    border-left: unset;
    border-right: unset;
}

.header-main-menu a:hover {
    border-color: #010101;
}

.header-main-menu a.this_menu {
    border-color: #c80041;
    color: #c80041;
}

.header-user__name:hover {
    transform: scale(1.1);
}

.header-bal__text {
    font-size: 16px;
    padding: 4px 12px 2px;
    margin: 0 14px;
    border-radius: 0px;
    font-weight: 700;
    color: #010101;
    border-left: 2px dotted #010101;
    border-right: 2px dotted #010101;
}

.header-user__img {
    cursor: pointer;
    width: 32px;
    object-fit: cover;
    height: 32px;
    border-radius: 50%;
}

.header-user__menu {
    width: 269px;
    background: #f0f0f0;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    margin-bottom: auto;
    font-style: normal;
    font-weight: 450;
    font-size: 18px;
    line-height: 21px;
    z-index: 1000;
    padding: 8px;
    border-bottom: 1px dotted #c80041;
    border-left: 1px dotted #c80041;
    border-right: 1px dotted #c80041;
}

.header-categories-menu {
    display: flex;
    width: 100%;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 30px;
    background: #6e6e6e;
    border-radius: 0px;
    padding: 16px;
    border: 2px dotted #6e6e6e;
}

.header-categories-menu a {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.header-user__menu-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 270px;
    z-index: 1000;
    position: absolute;
    bottom: -273px;
    opacity: 1;
    visibility: visible;
    right: 0;
    transition: unset;
    top: 46px;
}

.dps_mt {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0;
    justify-content: space-between;
    padding: 24px 0 0;
    gap: 44px;
    column-gap: 0px;
}

.bl_bal {
    color: #6e6e6e;
    font-weight: 400;
    margin-left: 12px;
    font-size: 14px;
    text-transform: uppercase;
}

#trans_table_ .trans_block div[tr]:not(:last-child) {
    border-bottom: 1px solid #0d141d;
}

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

.cr_name {
    display: flex;
    flex-direction: row;
    min-width: 200px;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 8px;
    border-radius: 0px;
    background: transparent;
    transition: all 200ms ease;
    cursor: pointer;
    border: 2px dotted #c80041;
}

.cr_name:hover {
    border-style: solid;
}

.cr_name.active {
    background-color: #c80041;
}

.cr_name.active span {
    color: #fff;
}

.select_cr[data-type="w"] {
    justify-content: flex-start;
}

.w_28 {
    width: 36px;
}

.w_32 {
    width: auto;
    height: 32px;
}

.name_crypto {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 16px;
    flex-direction: column;
}

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

.qr_div {
    height: 250px;
    width: 250px;
    overflow: hidden;
    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 {
    margin-top: 20px;
    width: auto;
    font-size: 16px;
    color: #c80041;
    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;
}

.pr_cart,
.products-list__item {
    overflow-x: auto;
    width: 100%;
}

.pr_cart tr:not(.product_tr) {
    border-bottom: 1px dotted #6e6e6e;
}

.pr_cart tr:not(.product_tr) th {
    padding: 4px 6px 8px;
    padding-left: 0;
    font-size: 16px;
    font-weight: 600;
}

.dell_cart_button {
    text-align: right;
}

.header-user__menu-item {
    margin-bottom: 8px;
}

.header-user__menu-item:last-child {
    margin-bottom: 0;
}

.header-user__menu-item:last-child a::before {
    display: none;
}

.qr_block>input {
    margin: 0;
    width: 160px;
    margin-bottom: 44px;
}

.header-user__menu-link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: #010101;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    position: relative;
}

.logout-btn {
    justify-content: center;
    width: fit-content;
    margin: 16px auto 0;
}

.logout-btn span {
    width: 100px;
    text-align: center;
}

.header-user__menu-link:hover {
    color: #c80041;
    letter-spacing: 2px;
}

.header-nav {
    background: #f0f0f0;
    padding: 20px 0;
}

.header-nav__wrap {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: space-between;
}

.products-wrap {
    margin-top: 24px;
    align-items: flex-start;
}

.ctg_wrap {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

.ctg_wrap a.this_menu {
    color: #c80041;
}

.ctg_wrap a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    transition: all 200ms ease-in;
    padding: 4px 8px;
    border-radius: 0px;
}

.ctg_wrap a:hover {
    transform: translateY(-3px);
}

.ctg_wrap i {
    font-size: 18px;
}

#alert_message {
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

#alert_message>p {
    font-size: 20px;
    padding: 5px;
    color: #fff;
    text-align: center;
    font-weight: 600;
    border-radius: 0px;
    box-shadow: 0 0 6px 2px #ffffff63;
    margin: 20px 15px;
}

#alert_message>p.goods {
    background: #00c700;
}

#alert_message>p.bads {
    background: #c23328;
}

#alert_message>p.infs {
    background: #c80041;
}

#upload_photo {
    width: 100%;
    height: auto;
    margin-top: 25px;
    border-radius: 0px;
}

.header-user__img.div_photo {
    background: #c80041;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #f0f0f0;
    font-weight: 700;
}

.profile__avatar.div_photo {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #0d141d;
    font-weight: 500;
}

.header-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    margin-right: auto;
}

.header-menu__item {
    margin-right: 33px;
}

.header-menu__item:last-child {
    margin-right: 0;
}

.header-menu__link {
    color: #ffffff;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    position: relative;
}

.header-menu__link::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -3px;
    background-color: #fff;
    -webkit-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.header-menu__link:hover {
    color: #ffffff;
}

.products-list {
    width: 100%;
}

.header-menu__link:hover::before {
    width: 100%;
}

.header-categories {
    width: 200px;
    margin-right: 4px;
}

.header-sub {
    width: 100%;
    margin-top: 10px;
    border: none;
    position: absolute;
    top: 36px;
    background: #c80041;
    z-index: 1000;
    padding: 0;
}

.header-sub__menu-wrap {
    width: 100%;
    position: absolute;
    visibility: hidden;
    opacity: 0;
    top: 0;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    z-index: 1000;
}

.header-sub__img {
    width: 24px;
    height: 24px;
    margin-right: 15px;
}

.header-sub__text {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    color: #ffffff;
}

.header-sub__header {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    cursor: pointer;
}

.header-sub__header:hover>.header-sub__menu-wrap {
    visibility: visible;
    opacity: 1;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.header-sub__item {
    margin: 12px 0;
    text-align: center;
}

.header-sub__link {
    font-style: normal;
    font-weight: 450;
    font-size: 14px;
    line-height: 16px;
    color: #ffffff;
}

.header-sub__link:hover {
    color: #fff;
}

.header-course {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-right: 5px;
}

.header-course__text {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    color: #fff;
}

.header-course__change {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
    .header .custom-input {
        font-size: 14px;
    }
    .header-find__field {
        width: 180px;
    }
    .header-find__select {
        width: 160px;
    }
   
    .header-btns__select {
        width: 95px;
    }
    .header-btns__select-country {
        font-size: 14px;
    }
    .header-menu__item {
        margin-right: 16px;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .proj-logo {
        display: none;
    }
    .header-burger {
        width: 100%;
        height: 100%;
        display: block;
        position: fixed;
        background-color: #f0f0f0; 
        top: 0;
        left: -100%;
        z-index: 1000;
        -webkit-transition: all 0.8s ease;
        -o-transition: all 0.8s ease;
        transition: all 0.8s ease;
    }
    .header-burger--active {
        left: 0;
    }
    .header-burger__menu-btn {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
    .header-burger__form-country {
        margin-right: 0px;
        background: #101924;
        padding: 0 5px;
        margin-bottom: 20px;
        margin-left: 90px;
    }
    .header-burger__sub-country {
        background-color: transparent;
        height: 100%;
        border: 0;
        outline: none;
        border-left: 1px solid black;
        padding: 5px;
    }
    .header-burger__select-country {
        background-color: transparent;
        border: 0;
        font-style: normal;
        font-weight: 450;
        font-size: 18px;
        line-height: 21px;
        color: #ffffff;
        outline: none;
    }
    .header-burger__select-country option {
        background-color: #fff;
        padding: 4px;
    }
    .header-burger__close {
        width: 24px;
        height: 24px;
        position: absolute;
        right: 50px;
        top: 30px;
    }
    .header-burger__close span {
        width: 100%;
        height: 2px;
        background-color: #fff;
        position: absolute;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .header-burger__close span::before {
        content: "";
        width: 100%;
        height: 100%;
        background-color: #fff;
        position: absolute;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
    }
    .header-burger__btn {
        display: block;
        width: 42px;
        height: 19px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
    .header-burger__btn span {
        width: 100%;
        height: 2px;
        background-color: #fff;
        -webkit-border-radius: 100px;
        border-radius: 100px;
        position: relative;
    }
    .header-burger__btn span::before,
    .header-burger__btn span::after {
        content: "";
        height: 2px;
        background-color: #fff;
        -webkit-border-radius: 100px;
        border-radius: 100px;
        position: absolute;
    }
    .header-burger__btn span::before {
        width: 60%;
        bottom: -7px;
    }
    .header-burger__btn span::after {
        width: 100%;
        bottom: -14px;
    }
    .header-burger__wrap {
        margin-top: 30px;
    }
    .header-burger__btns {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 30px;
    }
    .header-burger__btns__link {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .header-burger__btns__text {
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 19px;
    }
    .header-burger__btns__text-btc {
        color: #f7931a;
    }
    .header-burger__btns__text-m {
        color: #ff6600;
    }
    .header-burger__btns__img {
        width: 34px;
        height: 34px;
    }
    .header-burger__btns__img-balance {
        margin-right: 8px;
    }
    .header-burger .header-btns__select-country {
        font-size: 18px;
    }
    .header-burger .header-btns__select {
        width: 110px;
        margin-left: 100px;
        margin-bottom: 20px;
    }
    .header-burger .header-categories {
        margin-left: 100px;
        margin-bottom: 20px;
    }
    .header-burger .header-sub__text {
        color: #fff;
    }
    .header-burger .header-sub__img {
        width: 30px;
        height: 30px;
        margin-right: 15px;
    }
    .header-burger .header-menu {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        margin-left: 100px;
    }
    .header-burger .header-menu__item {
        margin-bottom: 10px;
        padding: 7px;
    }
    .header-burger .header-menu__item:last-child {
        margin-bottom: 0;
    }
    .header-burger .header-menu__link {
        color: #fff;
        font-size: 20px;
    }
    .header-burger .header-menu__link:hover::before {
        background-color: #fff;
    }
    .header .custom-input {
        font-size: 14px;
    }
    .header-wrap {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .header-user__menu-wrap {
        left: -130px;
    }
    .header-find__field {
        width: 150px;
    }
    .header-find__select {
        width: 160px;
    }
   
    .header-btns__select {
        width: 95px;
    }
    .header-btns__select-country {
        font-size: 14px;
    }
    .header-nav {
        display: none;
    }
}

@media screen and (min-width: 576px) and (max-width: 767px) {
    .proj-logo {
        display: none;
    }
    .header-burger {
        width: 100%;
        height: 100%;
        display: block;
        position: fixed;
        background-color: #f0f0f0;
        top: 0;
        left: -100%;
        z-index: 1000;
        -webkit-transition: all 0.8s ease;
        -o-transition: all 0.8s ease;
        transition: all 0.8s ease;
    }
    .header-burger__menu-btn {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
    .header-burger__country {
        padding: 10px;
        width: 200px;
        background: #101924;
        -webkit-border-radius: 0px;
        border-radius: 0px;
    }
    .header-burger--active {
        left: 0;
    }
    .header-burger__form-country {
        margin-right: 0px;
        background: #101924;
        padding: 0 5px;
        margin-bottom: 20px;
    }
    .header-burger__sub-country {
        background-color: transparent;
        height: 100%;
        border: 0;
        outline: none;
        border-left: 1px solid black;
        padding: 5px;
    }
    .header-burger__select-country {
        background-color: transparent;
        border: 0;
        font-style: normal;
        font-weight: 450;
        font-size: 18px;
        line-height: 21px;
        color: #ffffff;
        outline: none;
    }
    .header-burger__select-country option {
        background-color: #fff;
        padding: 4px;
    }
    .header-burger__close {
        width: 24px;
        height: 24px;
        position: absolute;
        right: 50px;
        top: 30px;
    }
    .header-burger__close span {
        width: 100%;
        height: 2px;
        background-color: #fff;
        position: absolute;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .header-burger__close span::before {
        content: "";
        width: 100%;
        height: 100%;
        background-color: #fff;
        position: absolute;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
    }
    .header-burger__btn {
        display: block;
        width: 42px;
        height: 19px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
    .header-burger__btn span {
        width: 100%;
        height: 2px;
        background-color: #fff;
        -webkit-border-radius: 100px;
        border-radius: 100px;
        position: relative;
    }
    .header-burger__btn span::before,
    .header-burger__btn span::after {
        content: "";
        height: 2px;
        background-color: #fff;
        -webkit-border-radius: 100px;
        border-radius: 100px;
        position: absolute;
    }
    .header-burger__btn span::before {
        width: 60%;
        bottom: -7px;
    }
    .header-burger__btn span::after {
        width: 100%;
        bottom: -14px;
    }
    .header-burger__wrap {
        margin-top: 30px;
    }
    .header-burger__btns {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 30px;
    }
    .header-burger__btns__link {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .header-burger__btns__text {
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 19px;
    }
    .header-burger__btns__text-btc {
        color: #f7931a;
    }
    .header-burger__btns__text-m {
        color: #ff6600;
    }
    .header-burger__btns__img {
        width: 34px;
        height: 34px;
    }
    .header-burger__btns__img-balance {
        margin-right: 8px;
    }
    .header-burger .header-btns__select-country {
        font-size: 18px;
    }
    .header-burger .header-btns__select {
        width: 110px;
        margin-left: 10px;
        margin-bottom: 20px;
    }
    .header-burger .header-categories {
        margin-left: 10px;
        margin-bottom: 20px;
    }
    .header-burger .header-sub__text {
        color: #fff;
    }
    .header-burger .header-sub__img {
        width: 30px;
        height: 30px;
        margin-right: 15px;
    }
    .header-burger .header-menu {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        margin-left: 10px;
    }
    .header-burger .header-menu__item {
        margin-bottom: 10px;
        padding: 7px;
    }
    .header-burger .header-menu__item:last-child {
        margin-bottom: 0;
    }
    .header-burger .header-menu__link {
        color: #fff;
        font-size: 20px;
    }
    .header-burger .header-menu__link:hover::before {
        background-color: #fff;
    }
    .header .custom-input {
        font-size: 14px;
    }
    .header-wrap {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .header-user__menu-wrap {
        left: -130px;
    }
    .header-find {
        -webkit-box-ordinal-group: 4;
        -webkit-order: 3;
        -ms-flex-order: 3;
        order: 3;
        margin: 15px auto 0;
    }
    .header-find__field {
        width: 190px;
    }
    .header-find__select {
        width: 190px;
    }
  
    .header-btns__select {
        width: 95px;
    }
    .header-btns__select-country {
        font-size: 14px;
    }
    .header-nav {
        display: none;
    }
}

@media screen and (min-width: 400px) and (max-width: 575px) {
    .proj-logo {
        display: none;
    }
    .header-burger {
        width: 100%;
        height: 100%;
        display: block;
        position: fixed;
        background-color: #101924;
        top: 0;
        left: -100%;
        z-index: 1000;
        -webkit-transition: all 0.8s ease;
        -o-transition: all 0.8s ease;
        transition: all 0.8s ease;
    }
    .header-burger__menu-btn {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
    .header-burger--active {
        left: 0;
    }
    .header-burger__close {
        width: 24px;
        height: 24px;
        position: absolute;
        right: 50px;
        top: 30px;
    }
    .header-burger__close span {
        width: 100%;
        height: 2px;
        background-color: #fff;
        position: absolute;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .header-burger__close span::before {
        content: "";
        width: 100%;
        height: 100%;
        background-color: #fff;
        position: absolute;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
    }
    .header-burger__form-country {
        margin-right: 0px;
        background: #101924;
        padding: 0 5px;
        margin-bottom: 20px;
    }
    .header-burger__sub-country {
        background-color: transparent;
        height: 100%;
        border: 0;
        outline: none;
        border-left: 1px solid black;
        padding: 5px;
    }
    .header-burger__select-country {
        background-color: transparent;
        border: 0;
        font-style: normal;
        font-weight: 450;
        font-size: 18px;
        line-height: 21px;
        color: #ffffff;
        outline: none;
    }
    .header-burger__select-country option {
        background-color: #fff;
        padding: 4px;
    }
    .header-burger__btn {
        display: block;
        width: 42px;
        height: 19px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
    .header-burger__btn span {
        width: 100%;
        height: 2px;
        background-color: #fff;
        -webkit-border-radius: 100px;
        border-radius: 100px;
        position: relative;
    }
    .header-burger__btn span::before,
    .header-burger__btn span::after {
        content: "";
        height: 2px;
        background-color: #fff;
        -webkit-border-radius: 100px;
        border-radius: 100px;
        position: absolute;
    }
    .header-burger__btn span::before {
        width: 60%;
        bottom: -7px;
    }
    .header-burger__btn span::after {
        width: 100%;
        bottom: -14px;
    }
    .header-burger__wrap {
        margin-top: 30px;
    }
    .header-burger__btns {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 30px;
    }
    .header-burger__btns__link {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .header-burger__btns__text {
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 19px;
    }
    .header-burger__btns__text-btc {
        color: #f7931a;
    }
    .header-burger__btns__text-m {
        color: #ff6600;
    }
    .header-burger__btns__img {
        width: 34px;
        height: 34px;
    }
    .header-burger__btns__img-balance {
        margin-right: 8px;
    }
    .header-burger .header-btns__select-country {
        font-size: 18px;
    }
    .header-burger .header-btns__select {
        width: 110px;
    }
    .header-burger .header-categories {
        margin-left: 10px;
        margin-bottom: 20px;
    }
    .header-burger .header-sub__text {
        color: #fff;
    }
    .header-burger .header-sub__img {
        width: 30px;
        height: 30px;
        margin-right: 15px;
    }
    .header-burger .header-menu {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        margin-left: 10px;
    }
    .header-burger .header-menu__item {
        margin-bottom: 10px;
        padding: 7px;
    }
    .header-burger .header-menu__item:last-child {
        margin-bottom: 0;
    }
    .header-burger .header-menu__link {
        color: #fff;
        font-size: 20px;
    }
    .header-burger .header-menu__link:hover::before {
        background-color: #fff;
    }
    .header .custom-input {
        font-size: 14px;
    }
    .header-wrap {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        flex-direction: row;
        align-items: center;
    }
    .header-user__menu-wrap {
        left: -130px;
    }
    .header-find {
        -webkit-box-ordinal-group: 4;
        -webkit-order: 3;
        -ms-flex-order: 3;
        order: 3;
        margin: 15px auto 0;
    }
    .header-find__field {
        max-width: 180px;
    }
    .header-find__select {
        max-width: 180px;
    }

    .header-btns__select {
        width: 95px;
        margin-left: 10px;
        margin-bottom: 20px;
    }
    .header-btns__select-country {
        font-size: 14px;
    }
    .header-nav {
        display: none;
    }
}

@media screen and (max-width: 399px) {
    .proj-logo {
        display: none;
    }
    .header-burger {
        width: 100%;
        height: 100%;
        display: block;
        position: fixed;
        background-color: #f0f0f0;
        top: 0;
        left: -100%;
        z-index: 1000;
        -webkit-transition: all 0.8s ease;
        -o-transition: all 0.8s ease;
        transition: all 0.8s ease;
    }
    .header-burger__menu-btn {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
    .header-burger--active {
        left: 0;
    }
    .header-burger__close {
        width: 24px;
        height: 24px;
        position: absolute;
        right: 50px;
        top: 30px;
    }
    .header-burger__close span {
        width: 100%;
        height: 2px;
        background-color: #fff;
        position: absolute;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .header-burger__close span::before {
        content: "";
        width: 100%;
        height: 100%;
        background-color: #fff;
        position: absolute;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
    }
    .header-burger__form-country {
        margin-right: 0px;
        background: #101924;
        padding: 0 5px;
        margin-bottom: 20px;
    }
    .header-burger__sub-country {
        background-color: transparent;
        height: 100%;
        border: 0;
        outline: none;
        border-left: 1px solid black;
        padding: 5px;
    }
    .header-burger__select-country {
        background-color: transparent;
        border: 0;
        font-style: normal;
        font-weight: 450;
        font-size: 18px;
        line-height: 21px;
        color: #ffffff;
        outline: none;
    }
    .header-burger__select-country option {
        background-color: #fff;
        padding: 4px;
    }
    .header-burger__btn {
        display: block;
        width: 42px;
        height: 19px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
    .header-burger__btn span {
        width: 100%;
        height: 2px;
        background-color: #fff;
        -webkit-border-radius: 100px;
        border-radius: 100px;
        position: relative;
    }
    .header-burger__btn span::before,
    .header-burger__btn span::after {
        content: "";
        height: 2px;
        background-color: #fff;
        -webkit-border-radius: 100px;
        border-radius: 100px;
        position: absolute;
    }
    .header-burger__btn span::before {
        width: 60%;
        bottom: -7px;
    }
    .header-burger__btn span::after {
        width: 100%;
        bottom: -14px;
    }
    .header-burger__wrap {
        margin-top: 30px;
    }
    .header-burger__btns {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        width: 208px;
        margin: 0 auto 30px;
    }
    .header-burger__btns__link {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .header-burger__btns__text {
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 19px;
    }
    .header-burger__btns__text-btc {
        color: #f7931a;
    }
    .header-burger__btns__text-m {
        color: #ff6600;
    }
    .header-burger__btns__img {
        width: 34px;
        height: 34px;
    }
    .header-burger__btns__img-balance {
        margin-right: 8px;
    }
    .header-burger .header-btns__select-country {
        font-size: 18px;
    }
    .header-burger .header-btns__select {
        width: 110px;
        margin-left: 10px;
        margin-bottom: 20px;
    }
    .header-burger .header-categories {
        margin-left: 10px;
        margin-bottom: 20px;
    }
    .header-burger .header-sub__text {
        color: #fff;
    }
    .header-burger .header-sub__img {
        width: 30px;
        height: 30px;
        margin-right: 15px;
    }
    .header-burger .header-menu {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        margin-left: 10px;
    }
    .header-burger .header-menu__item {
        margin-bottom: 10px;
        padding: 7px;
    }
    .header-burger .header-menu__item:last-child {
        margin-bottom: 0;
    }
    .header-burger .header-menu__link {
        color: #fff;
        font-size: 20px;
    }
    .header-burger .header-menu__link:hover::before {
        background-color: #fff;
    }
    .header .custom-input {
        font-size: 14px;
    }
    .header-wrap {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .header-user__menu-wrap {
        left: -130px;
    }
    .header-find {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-ordinal-group: 4;
        -webkit-order: 3;
        -ms-flex-order: 3;
        order: 3;
        margin: 15px auto 0;
    }
    .header-find__field {
        width: 280px;
        margin-right: 0;
        margin-bottom: 10px;
    }
    .header-find__select {
        width: 240px;
    }
   
    .header-btns__select {
        width: 95px;
    }
    .header-btns__select-country {
        font-size: 14px;
    }
    .header-nav {
        display: none;
    }
}

.crumbs-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-style: normal;
    font-weight: 450;
    font-size: 18px;
    line-height: 21px;
}

.crumbs-list__link {
    color: #c80041;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.crumbs-list .crumbs-list__item:first-child a {
    color: #010101;
    pointer-events: none;
}

.crumbs-list__item {
    margin-right: 13px;
    padding-left: 18px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.crumbs-list__item:nth-child(2) {
    margin: 0;
    padding-left: 4px;
}

.crumbs-list__item:nth-child(2)>i {
    font-size: 14px;
}

.crumbs-list__item:first-child {
    padding-left: 0;
}

.crumbs-list__item:last-child {
    margin-right: 0;
    padding-right: 0;
}

@media screen and (min-width: 400px) and (max-width: 575px) {
    .crumbs-list {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        font-size: 16px;
    }
}

@media screen and (max-width: 399px) {
    .crumbs-list {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        font-size: 16px;
    }
}

.custom-radio {
    height: 29px;
    position: relative;
    margin-bottom: 8px;
}

.custom-radio:last-child {
    margin-bottom: 0;
}

.custom-radio>input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.custom-radio>span {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.custom-radio>span::before {
    content: "";
    display: inline-block;
    width: 29px;
    height: 29px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    background: #101924;
    border: 2px solid rgba(0, 0, 0, 0.02);
    -webkit-border-radius: 50%;
    border-radius: 50%;
    margin-right: 0.5em;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: 50% 50%;
    background-size: 50% 50%;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.custom-radio>input:not(:disabled):not(:checked)+span:hover::before {
    border-color: #b3d7ff;
}

.custom-radio>input:not(:disabled):active+span::before {
    background-color: #b3d7ff;
    border-color: #b3d7ff;
}

.custom-radio>input:focus:not(:checked)+span::before {
    border-color: #80bdff;
}

.custom-radio>input:checked+span::before {
    border-color: #0b76ef;
    background-color: #0b76ef;
    background-image: url("../img/products/filter/done.png");
    -webkit-background-size: 20px 20px;
    background-size: 20px;
}

.custom-radio>input:disabled+span::before {
    background-color: #e9ecef;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .custom-radio {
        margin-right: 20px;
        margin-bottom: 0;
    }
    .custom-radio>span {
        white-space: pre;
    }
}

@media screen and (min-width: 576px) and (max-width: 767px) {
    .custom-radio {
        margin-right: 20px;
        margin-bottom: 0;
    }
    .custom-radio>span {
        white-space: pre;
    }
}

th[buy_icon] button {
    padding: 0px 16px;
    border: 2px solid #c80041;
    border-radius: 0px;
    background-color: #ffffff;
    color: #c80041;
}

th[buy_icon] i,
th[open_icon] i {
    color: #c80041;
    font-size: 18px;
    cursor: pointer;
    vertical-align: middle;
    margin-bottom: 3px;
}

th[buy_icon] i.in_cart {
    color: #00c887;
    font-weight: 900;
}

.cart_table>h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 10px;
}

.dell_cart_button i,
.pr_cart i[unknown],
.purchases_tr i[unknown] {
    font-size: 20px;
    color: #c80041;
    vertical-align: middle;
}

.dell_cart_button i {
    cursor: pointer;
    transition: all 300ms ease;
}

.pr_cart {
    width: 100%;
}

.pr_cart th {
    padding: 6px 0;
    text-align: left;
}

.pr_cart tr th:last-child {
    width: 20px;
}

.pr_cart th[at='country_code'] img {
    height: 22px;
    width: auto;
}

.pr_cart tr th[at='price'],
.pr_cart tr th[at='base_name'] {
    width: 140px;
    color: #c80041;
    font-weight: 600 !important;
}

.pr_cart tr th[at='exp'] {
    font-weight: 600 !important;
}

.pr_cart tr th[at='bin'] {
    color: #0040c8;
    font-weight: 600 !important;
}

.pr_cart tr th[at='country_code'] {
    text-align: center;
    width: 110px;
}

.pr_cart tr:first-child th {
    font-size: 16px;
}

.pr_cart tr:not(:first-child) th {
    font-weight: 500;
    font-size: 14px;
}

.buttons_cart {
    display: flex;
    align-items: center;
    gap: 27px;
}

.buttons_cart button {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    padding: 8px 12px;
    border-radius: 0px;
    width: 180px;
    text-transform: uppercase;
    transition: all 200ms ease;
    border: 2px solid black;
    line-height: 1em;
}

.emty_cart {
    font-size: 24px;
    font-weight: 800;
    color: #6e6e6e;
    text-align: center;
    margin-top: 38vh;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.buttons_cart button.clear_b {
    border-color: #c80041;
    background: #c80041;
}

.buttons_cart button.buy_b {
    background: #00c887;
    border-color: #00c887;
}

.buttons_cart button.buy_b:hover {
    color: #00c887;
    background-color: transparent;
}

.buttons_cart button.clear_b:hover {
    color: #c80041;
    background-color: transparent;
}

.dell_cart_button i:hover {
    color: red;
}

.total_price {
    width: 100px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    color: #c80041;
    margin-right: 60px;
}

.total_price p:first-child {
    font-size: 16px;
    font-weight: 700;
}

.total_price p:last-child {
    font-weight: 700;
    font-size: 14px;
}

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

.products-link {
    color: inherit;
}

.products-link:hover {
    color: inherit;
}

.products-btns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
}

.products-btns__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 16px;
}

.products-btns__item:last-child {
    margin-right: 0;
}

.products-btns__button {
    width: 153px;
    height: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background: #f0f0f0;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    font-style: normal;
    font-weight: 450;
    font-size: 18px;
    line-height: 21px;
    border: 0;
}

.products-btns__button-img {
    margin-right: 6px;
}

.products-btns__button--active {
    background: #c80041;
    color: #fff;
}

.products-btns__button--active .products-btns__button-img path {
    fill: #fff;
    fill-opacity: 1;
}

.products-filter {
    width: 100%;
    background: #f0f0f0;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    margin-right: 0;
    padding: 16px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}

.products-filter__categories,
.products-filter__categories-params.products-params {
    margin-bottom: 0;
}

.products-filter__categories-params.products-params {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
}

.products-params__item {
    margin-bottom: 0;
    width: calc(25% - 12px);
}

.products-params__item.main_li, .products-params__item.item_50 {
    width: calc(50% - 8px);
}

.products-params__item.main_li>div {
    width: 434px;
}

.products-filter__categories-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 8px;
    cursor: pointer;
}

.products-filter__categories-arrow {
    margin-right: 12px;
}

.products-filter__categories-arrow--active {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.products-filter__categories-title {
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    color: #010101;
    margin-bottom: 0;
}

.products-filter__categories-name {
    font-style: normal;
    font-weight: 450;
    font-size: 18px;
    line-height: 21px;
}

.products-filter__categories-list {
    padding-left: 24px;
    max-height: 0;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    overflow: hidden;
}

.products-filter__categories-list--active {
    max-height: 1000px;
}

.products-filter__categories-item {
    margin-bottom: 8px;
}

.products-filter__categories-item:last-child {
    margin-bottom: 0;
}

.products-filter__categories-category {
    font-style: normal;
    font-weight: 450;
    font-size: 18px;
    line-height: 21px;
    color: rgba(0, 0, 0, 0.4);
}

.products-filter__categories-category span {
    position: relative;
}

.products-filter__categories-category input {
    display: none;
}

.products-filter__categories-category input:checked+span::before {
    content: "";
    width: 100%;
    height: 2px;
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
}

.products-params {
    margin-bottom: 16px;
}

.products-params__item:last-child {
    margin-bottom: 0;
}

.products-params__item--price,
.products-params__item--count,
.products-params__item--count-d {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.products-params__item--filters {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.products-params__text {
    font-style: normal;
    font-weight: 450;
    font-size: 18px;
    line-height: 21px;
    color: #ffffff;
}

.products-params__text--price {
    margin-right: 16px;
}

.products-params__text--count {
    margin-right: 100px;
}

.products-params__text--filter {
    margin-bottom: 16px;
}

.products-params__input {
    width: 302px;
    height: 43px;
    background: #101924;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: rgba(0, 0, 0, 0.4);
    padding-left: 16px;
    border: 0;
}

.products-params__input--from,
.products-params__input--to {
    width: 109px;
}

.products-params__input--from {
    margin-right: 16px;
}

.products-params__input--m-from,
.products-params__input--m-to {
    width: 143px;
}

.products-params__input--m-from {
    margin-right: 16px;
}

.products-params__select {
    width: 302px;
    height: 43px;
    background: #101924;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: rgba(0, 0, 0, 0.4);
    padding-left: 16px;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    background: url("../img/products/filter/arrow_s.svg") no-repeat right;
    background-position-x: -webkit-calc(100% - 8px);
    background-position-x: calc(100% - 8px);
}

.products-params__select option {
    font-size: 16px;
}

.products-params__select--m {
    width: 133px;
}

.products-params__radio--sq span::before {
    -webkit-border-radius: 0px;
    border-radius: 0px;
}

.products-params__sub {
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #c80041;
    border-radius: 0px;
    font-style: normal;
    font-weight: 450;
    font-size: 18px;
    line-height: 21px;
    border: 0;
    color: #fff;
    transition: all 150ms ease;
}

.products-params__sub-img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.products-list__block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.products-list__block-info {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.products-list__block-name {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-right: 10px;
}

.products-list__block-buy {
    margin-left: auto;
}

.products-list__item>p {
    font-size: 22px;
    text-align: center;
    width: 100%;
    margin: 36px 0 20px;
    color: #6e6e6e;
}

.products-list__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 16px;
    background: #f0f0f0;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    margin-bottom: 24px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.products-list__item:last-child {
    margin-bottom: 0;
}

.counts_page_len {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.counts_page_len div {
    width: 100%;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.counts_page_len p {
    color: #c80041;
    width: 44px;
    font-weight: 400;
    font-size: 16px;
    display: flex;
    padding: 8px 8px;
    border-radius: 0px;
    background-color: transparent;
    border: 2px dotted #c80041;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 200ms ease;
}

.counts_page_len p[b_act] {
    background: #c80041;
    color: #fff;
}

.counts_page_len p:hover {
    border-style: solid;
}

.search_cont {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    width: 100%!important;
}

.search_cont button {
    width: 150px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    font-size: 16px;
    padding: 12px 0;
    margin: 0;
    height: auto;
    border-style: dotted;
    line-height: 1em;
    max-height: unset;
    border-width: 2px;
    transition: all 200ms ease;
}

.search_cont button.clear {
    color: #6e6e6e;
    border-color: #6e6e6e;
}

.search_cont button.products-params__sub {
    border-color: #c80041;
}

.search_cont button i {
    font-size: 14px;
}

.search_cont button.clear:hover {
    background-color: #6e6e6e;
    color: #fff;
}

.search_cont button.products-params__sub:hover {
    background-color: #fff;
    color: #c80041;
}

.cart_icon {
    position: relative;
}

.cart_icon span {
    position: absolute;
    color: #c80041;
    z-index: 22;
    top: -18px;
    font-size: 14px;
    font-weight: 600;
    left: 2px;
    right: 0;
    text-align: center;
}

.header-btns__link.isset_cart>i {
    font-weight: 600;
    color: #c80041;
}

[d_none] {
    display: none !important;
}

.products_table {
    width: 100%;
}

.products_table th {
    padding: 6px;
    text-align: center;
}

.pr_cart tr.product_tr,
.products_table tr.product_tr {
    transition: all 150ms ease;
}

.pr_cart tr.product_tr:hover,
.products_table tr.product_tr:hover {
    border-color: #6e6e6e;
}

.products_table tr th:last-child {
    width: 70px;
}

.products_table tr:first-child {
    border-bottom: 1px dotted #6e6e6e;
}

.products_table tr:first-child>th {
    padding: 4px 6px 8px;
    color: #010101;
    font-size: 16px;
    font-weight: 600;
}

tr.product_tr.error_prod[data-id] th:first-child {
    border-left: 5px solid red;
    padding-left: 8px;
}

.pr_cart .product_tr:not(:last-child),
.products_table .product_tr:not(:last-child) {
    border-bottom: 1px solid #dbdbdb;
}

.pr_cart .product_tr:last-child,
.products_table .product_tr:last-child {
    border-bottom: 1px solid transparent;
}

.products_table .product_tr>th {
    font-size: 14px;
    font-weight: 500;
}

.products_table i[unknown] {
    font-size: 21px;
    font-weight: 500;
    color: #c80041;
    vertical-align: middle;
}

.products_table tr>th[at=bin],
.products_table tr>th[at=card],
.products_table tr>th[at=cvv] {
    font-weight: 600;
    color: #0040c8;
}

.products_table tr>th[at=exp], .products_table tr>th[at=zip_info] {
    font-weight: 600;
}
.product_tr th[at=info]{
    width: 250px;
    color: #0040c8;
    text-align: center;
}
.pr_cart th[at=info]{
    text-align: center;
}
.product_tr th[at=info]{
    padding-top: 0;
    padding-bottom: 0;
}
.product_tr th[at=info]>div{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 0px;
    column-gap: 12px;
    padding: 2px 0;
    padding-right: 6px;
}
.product_tr th[at=info]>div>span{
    color: #0040c8;
    font-size: 12px;
    font-weight: 600;
}
.products_table tr>th[at=price],
.products_table tr>th[at=open],
.products_table tr>th[at=base_name] {
    color: #c80041;
    font-weight: 600;
}

.products_table tr>th[at=bank] {
    max-width: 160px;
}

.products_table tr>th[at=bank] span {
    font-size: 12px;
}

.products-list__item .cntrl_pages {
    width: 100%;
    margin: 0 auto 16px;
}

.products-list__item .show_count {
    text-align: right;
    color: #c80041;
    font-size: 14px;
    font-weight: 400;
    width: 100%;
    font-style: italic;
    text-align: center;
}

.products-list__img {
    width: 140px;
    height: 140px;
    margin-right: 16px;
}

.products-list__name {
    font-style: normal;
    font-weight: 450;
    font-size: 18px;
    line-height: 21px;
    margin-bottom: 5px;
}

.products-list__type {
    font-style: normal;
    font-weight: 450;
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 5px;
}

.products-list__price {
    font-style: normal;
    font-weight: 500;
    font-size: 30px;
    line-height: 28px;
    margin-right: 90px;
    margin-left: auto;
}

.products-list__price--mob {
    display: none;
}

.products-list__info {
    width: 420px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.products-list__info-item:nth-child(1) {
    margin-right: 60px;
    margin-bottom: 10px;
}

.products-list__info-item:nth-child(3) {
    margin-right: 0px;
}

.products-list__info-title {
    font-style: normal;
    font-weight: 450;
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 5px;
}

.products-list__info-text {
    font-style: normal;
    font-weight: 450;
    font-size: 14px;
    line-height: 21px;
    color: rgba(0, 0, 0, 0.4);
    margin-right: 8px;
}

.products-list__fav {
    background-color: transparent;
    border: 0;
}

.products-list__fav-img {
    width: 30px;
    height: 30px;
}

.products-list__fav-img path {
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.products-list__fav-img:hover {
    fill: red;
}

.products-list__fav-img:hover path {
    stroke: red;
    fill: #c80041;
}

.products-list__buy {
    width: 170px;
    height: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background: #c80041;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    font-style: normal;
    font-weight: 450;
    font-size: 18px;
    line-height: 21px;
    color: #fff;
    border: 0;
    margin-right: 6px;
}

.products-list__buy:hover {
    color: #fff;
}

.products-list__stars {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 10px;
}

.products-list__stars-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.products-list__stars-img {
    vertical-align: unset;
}

.products-list__stars-img--yellow path {
    fill: #ffac38;
    fill-opacity: 1;
}

.products-card {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.products-card.product-list--active {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.products-card__item {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-right: 20px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    padding: 10px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
}

.products-card__item:hover {
    -webkit-box-shadow: 0px 0px 7px 7px rgba(110, 110, 110, 0.219);
    box-shadow: 0px 0px 7px 7px rgba(110, 110, 110, 0.219);
}

.products-card__img {
    width: 220px;
    height: 200px;
    margin-bottom: 12px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
}

.products-card__name {
    font-style: normal;
    font-weight: 450;
    font-size: 18px;
    line-height: 21px;
    margin-bottom: 4px;
    color: #ffffff;
}

.products-card__desc {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: rgba(0, 0, 0, 0.4);
    margin-bottom: 8px;
}

.products-card__stars {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 8px;
}

.products-card__stars-img--yellow path {
    fill: #ffac38;
    fill-opacity: 1;
}

th[at='country_code'] img {
    height: 22px;
    width: auto;
    margin: auto;
}

.products-card__stars-item {
    margin-right: 4px;
}

.products-card__stars-item:last-child {
    margin-right: 0;
}

.products-card__price {
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 16px;
}

.products-card__footer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.products-card__buy,
.products-card__fav {
    border: 0;
}

.products-card__fav {
    background-color: transparent;
}

.products-card__fav-img path {
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.products-card__fav-img:hover {
    fill: red;
}

.products-card__fav-img:hover path {
    stroke: red;
    fill: #c80041;
}

.products-card__buy {
    width: 86px;
    height: 33px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background: #c80041;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    font-style: normal;
    font-weight: 450;
    font-size: 18px;
    line-height: 21px;
    color: #fff;
}

.products-card__buy:hover {
    color: #fff;
}

.product-list {
    -webkit-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    transition: all 0.8s ease;
}

.product-list--active {
    display: block;
}

.auth__captcha>div {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin-bottom: 12px;
}

.pass_input>input {
    width: 260px!important;
}

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

.auth__captcha>div>img {
    height: 44px;
    width: auto;
    border-radius: 0px;
}

.inp_btn {
    font-size: 20px;
    color: #c80041;
    cursor: pointer;
    transition: all 200ms ease;
}

.inp_btn:hover {
    transform: scale(1.16);
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
    .products-filter {
        width: 100%;
    }
    .products-params__input {
        width: 276px;
    }
    .products-params__select {
        width: 276px;
    }
    .products-params__select--m {
        width: 100px;
        margin-left: auto;
    }
    .products-params__item--price {
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .products-params__text--price {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .products-params__input--m-from {
        width: 130px;
    }
    .products-params__input--m-to {
        width: 130px;
    }
    .products-params__input--from {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .products-params__sub {
        width: 100%;
    }
    .products-list {
        width: 100%;
    }
    .products-list-price {
        -webkit-box-ordinal-group: 5;
        -webkit-order: 4;
        -ms-flex-order: 4;
        order: 4;
    }
    .products-list__block:nth-child(1) {
        -webkit-box-ordinal-group: 1;
        -webkit-order: 0;
        -ms-flex-order: 0;
        order: 0;
        width: 100%;
        margin-bottom: 20px;
    }
    .products-list__block:nth-child(3) {
        margin-bottom: 20px;
        width: 100%;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
    }
    .products-list__block:nth-child(4) {
        width: 100%;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
    }
    .products-list__block-info {
        width: 100%;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .products-list__block-buy {
        margin-left: unset;
    }
    .products-list__item {
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .products-list__img {
        width: 140px;
        height: 140px;
    }
    .products-list__name {
        font-size: 26px;
    }
    .products-list__info {
        width: 100%;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        margin-bottom: 20px;
    }
    .products-list__info-item {
        margin-right: 20px;
        margin-bottom: 0;
    }
    .products-list__info-item:nth-child(1) {
        margin-right: 20px;
        margin-bottom: 0;
    }
    .products-list__info-item:nth-child(3) {
        margin-right: 20px;
    }
    .products-list__info-item:last-child {
        margin-right: 0;
    }
    .products-list__price {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
        display: none;
    }
    .products-list__price--mob {
        display: block;
        font-size: 36px;
        -webkit-box-ordinal-group: 1;
        -webkit-order: 0;
        -ms-flex-order: 0;
        order: 0;
        margin-right: 10px;
    }
    .products-list__count,
    .products-list__from,
    .products-list__delivery {
        font-size: 18px;
    }
    .products-list__buy {
        width: 200px;
        height: 50px;
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
    }
    .products-list__fav {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
    }
    .products-list__stars-img {
        width: 20px;
        height: 20px;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
 
    .products-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .products-filter {
        width: 100%;
    }
    .products-filter__container {
        width: 100%;
        overflow: scroll;
        margin-bottom: 16px;
    }
    .products-btns {
        margin-top: 20px;
        margin-left: unset;
    }
    .products-params {
        margin-bottom: 0;
    }
    .products-params__input {
        width: 276px;
    }
    .products-params__select {
        width: 276px;
    }
    .products-params__select--m {
        width: 100px;
        margin-left: auto;
    }
    .products-params__item {
        margin-bottom: 0;
        margin-right: 20px;
    }
    .products-params__item:last-child {
        margin-right: 0;
    }
    .products-params__item--filters {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .products-params__text--filter {
        width: 110px;
        margin-bottom: 0;
    }
    .products-params__text--count {
        width: 70px;
        margin-right: 20px;
    }
    .products-params__text--price {
        margin-right: 20px;
        margin-bottom: 0px;
    }
    .products-params__input--m-from {
        width: 100px;
        margin-bottom: 0;
    }
    .products-params__input--m-to {
        width: 100px;
        margin-bottom: 0;
    }
    .products-params__input--from {
        margin-right: 10px;
        margin-bottom: 0px;
    }
    .products-params__sub {
        width: 100%;
        height: 60px;
    }
    .products-list {
        width: 100%;
    }
    .products-list-price {
        -webkit-box-ordinal-group: 5;
        -webkit-order: 4;
        -ms-flex-order: 4;
        order: 4;
    }
    .products-list__block:nth-child(1) {
        -webkit-box-ordinal-group: 1;
        -webkit-order: 0;
        -ms-flex-order: 0;
        order: 0;
        width: 100%;
        margin-bottom: 20px;
    }
    .products-list__block:nth-child(3) {
        margin-bottom: 20px;
        width: 100%;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
    }
    .products-list__block:nth-child(4) {
        width: 100%;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
    }
    .products-list__block-buy {
        margin-left: unset;
    }
    .products-list__item {
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .products-list__img {
        width: 140px;
        height: 140px;
    }
    .products-list__name {
        font-size: 26px;
    }
    .products-list__info {
        width: 100%;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        margin-bottom: 20px;
    }
    .products-list__info-item {
        margin-right: 20px;
        margin-bottom: 0;
    }
    .products-list__info-item:nth-child(1) {
        margin-right: 20px;
        margin-bottom: 0;
    }
    .products-list__info-item:nth-child(3) {
        margin-right: 20px;
    }
    .products-list__info-item:last-child {
        margin-right: 0;
    }
    .products-list__price {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
        display: none;
        margin-right: 20px;
    }
    .products-list__price--mob {
        display: block;
        font-size: 36px;
        -webkit-box-ordinal-group: 1;
        -webkit-order: 0;
        -ms-flex-order: 0;
        order: 0;
    }
    .products-list__count,
    .products-list__from,
    .products-list__delivery {
        font-size: 18px;
    }
    .products-list__buy {
        width: 200px;
        height: 50px;
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
    }
    .products-list__fav {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
    }
    .products-list__stars-img {
        width: 20px;
        height: 20px;
    }
    .products-card__img {
        width: 220px;
        height: 220px;
    }
    .products-card__name {
        font-size: 22px;
    }
    .products-card__desc {
        font-size: 18px;
    }
    .products-card__stars-img {
        width: 20px;
        height: 20px;
    }
    .products-card__price {
        font-size: 28px;
    }
    .products-card__buy {
        width: 110px;
        height: 40px;
    }
    .products-card__fav-img {
        width: 30px;
        height: 30px;
    }
    .products-card__item {
        margin-right: auto;
    }
    .products-card__item:nth-child(2n+2) {
        margin-right: 0;
    }
}

@media screen and (min-width: 576px) and (max-width: 767px) {

    .products-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .products-filter {
        width: 100%;
    }
    .products-filter__container {
        width: 100%;
        overflow: scroll;
        margin-bottom: 16px;
    }
    .products-btns {
        margin-top: 20px;
        margin-left: unset;
    }
    .products-params {
        margin-bottom: 0;
    }
    .products-params__input {
        width: 276px;
    }
    .products-params__select {
        width: 276px;
    }
    .products-params__select--m {
        width: 100px;
        margin-left: auto;
    }
    .products-params__item {
        margin-bottom: 0;
        margin-right: 20px;
    }
    .products-params__item:last-child {
        margin-right: 0;
    }
    .products-params__item--filters {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .products-params__text--filter {
        width: 110px;
        margin-bottom: 0;
    }
    .products-params__text--count {
        width: 70px;
        margin-right: 20px;
    }
    .products-params__text--price {
        margin-right: 20px;
        margin-bottom: 0px;
    }
    .products-params__input--m-from {
        width: 100px;
        margin-bottom: 0;
    }
    .products-params__input--m-to {
        width: 100px;
        margin-bottom: 0;
    }
    .products-params__input--from {
        margin-right: 10px;
        margin-bottom: 0px;
    }
    .products-params__sub {
        width: 100%;
        height: 60px;
    }
    .products-list {
        width: 100%;
    }
    .products-list-price {
        -webkit-box-ordinal-group: 5;
        -webkit-order: 4;
        -ms-flex-order: 4;
        order: 4;
    }
    .products-list__block:nth-child(1) {
        -webkit-box-ordinal-group: 1;
        -webkit-order: 0;
        -ms-flex-order: 0;
        order: 0;
        width: 100%;
        margin-bottom: 20px;
    }
    .products-list__block:nth-child(3) {
        margin-bottom: 20px;
        width: 100%;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
    }
    .products-list__block:nth-child(4) {
        width: 100%;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
    }
    .products-list__block-buy {
        margin-left: unset;
    }
    .products-list__item {
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .products-list__img {
        width: 140px;
        height: 140px;
    }
    .products-list__name {
        font-size: 26px;
    }
    .products-list__price {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
        display: none;
    }
    .products-list__price--mob {
        display: block;
        font-size: 36px;
        -webkit-box-ordinal-group: 1;
        -webkit-order: 0;
        -ms-flex-order: 0;
        order: 0;
        margin-right: 20px;
    }
    .products-list__fav {
        -webkit-box-ordinal-group: 4;
        -webkit-order: 3;
        -ms-flex-order: 3;
        order: 3;
    }
    .products-list__count,
    .products-list__from,
    .products-list__delivery {
        font-size: 18px;
    }
    .products-list__buy {
        width: 200px;
        height: 50px;
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
    }
    .products-list__info {
        width: 440px;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-bottom: 20px;
    }
    .products-list__info-item {
        margin-right: 20px;
        margin-bottom: 0;
    }
    .products-list__info-item:nth-child(1) {
        margin-right: 70px;
        margin-bottom: 0;
    }
    .products-list__info-item:nth-child(2) {
        margin-right: 0;
    }
    .products-list__info-item:nth-child(3) {
        margin-right: 20px;
    }
    .products-list__info-item:last-child {
        margin-right: 0;
    }
    .products-list__stars-img {
        width: 20px;
        height: 20px;
    }
    .products-card__img {
        width: 220px;
        height: 220px;
    }
    .products-card__name {
        font-size: 22px;
    }
    .products-card__desc {
        font-size: 18px;
    }
    .products-card__stars-img {
        width: 20px;
        height: 20px;
    }
    .products-card__price {
        font-size: 28px;
    }
    .products-card__buy {
        width: 110px;
        height: 40px;
    }
    .products-card__fav-img {
        width: 30px;
        height: 30px;
    }
    .products-card__item {
        margin-right: auto;
    }
    .products-card__item:nth-child(2n+2) {
        margin-right: 0;
    }
}

@media screen and (min-width: 400px) and (max-width: 575px) {
 
    .products-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .products-filter {
        width: 100%;
    }
    .products-filter__container {
        width: 100%;
        overflow: scroll;
        margin-bottom: 16px;
    }
    .products-btns {
        margin-top: 20px;
        margin-left: unset;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .products-btns__item {
        margin-bottom: 15px;
    }
    .products-btns__item:last-child {
        margin-bottom: 0;
    }
    .products-params {
        margin-bottom: 0;
    }
    .products-params__input {
        width: 276px;
    }
    .products-params__select {
        width: 276px;
    }
    .products-params__select--m {
        width: 100px;
        margin-left: auto;
    }
    .products-params__item {
        margin-bottom: 0;
        margin-right: 20px;
    }
    .products-params__item:last-child {
        margin-right: 0;
    }
    .products-params__item--filters {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .products-params__text--filter {
        width: 110px;
        margin-bottom: 0;
    }
    .products-params__text--count {
        width: 70px;
        margin-right: 20px;
    }
    .products-params__text--price {
        margin-right: 20px;
        margin-bottom: 0px;
    }
    .products-params__input--m-from {
        width: 100px;
        margin-bottom: 0;
    }
    .products-params__input--m-to {
        width: 100px;
        margin-bottom: 0;
    }
    .products-params__input--from {
        margin-right: 10px;
        margin-bottom: 0px;
    }
    .products-params__sub {
        width: 100%;
        height: 60px;
    }
    .products-list {
        width: 100%;
    }
    .products-list-price {
        -webkit-box-ordinal-group: 5;
        -webkit-order: 4;
        -ms-flex-order: 4;
        order: 4;
    }
    .products-list__block:nth-child(1) {
        -webkit-box-ordinal-group: 1;
        -webkit-order: 0;
        -ms-flex-order: 0;
        order: 0;
        width: 100%;
        margin-bottom: 20px;
    }
    .products-list__block:nth-child(3) {
        width: 100%;
        margin-bottom: 20px;
        margin-left: unset;
    }
    .products-list__block:nth-child(4) {
        width: 100%;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
    }
    .products-list__item {
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .products-list__img {
        width: 120px;
        height: 120px;
    }
    .products-list__name {
        font-size: 20px;
    }
    .products-list__fav {
        -webkit-box-ordinal-group: 4;
        -webkit-order: 3;
        -ms-flex-order: 3;
        order: 3;
    }
    .products-list__info {
        width: 100%;
        max-width: 440px;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-bottom: 20px;
    }
    .products-list__info-item {
        margin-right: 20px;
        margin-bottom: 0;
    }
    .products-list__info-item:nth-child(1) {
        margin-right: 70px;
        margin-bottom: 0;
    }
    .products-list__info-item:nth-child(2) {
        margin-right: 0;
    }
    .products-list__info-item:nth-child(3) {
        margin-right: 20px;
    }
    .products-list__info-item:last-child {
        margin-right: 0;
    }
    .products-list__price {
        display: none;
    }
    .products-list__price--mob {
        display: block;
        font-size: 30px;
        -webkit-box-ordinal-group: 1;
        -webkit-order: 0;
        -ms-flex-order: 0;
        order: 0;
        margin-right: 20px;
    }
    .products-list__count,
    .products-list__from,
    .products-list__delivery {
        font-size: 16px;
    }
    .products-list__buy {
        width: 180px;
        height: 45px;
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
    }
    .products-list__stars-img {
        width: 16px;
        height: 16px;
    }
    .products-card__img {
        width: 160px;
        height: 160px;
    }
    .products-card__name {
        font-size: 18px;
    }
    .products-card__desc {
        font-size: 14px;
    }
    .products-card__stars-img {
        width: 16px;
        height: 16px;
    }
    .products-card__price {
        font-size: 28px;
    }
    .products-card__buy {
        width: 110px;
        height: 35px;
    }
    .products-card__fav-img {
        width: 20px;
        height: 20px;
    }
    .products-card__item {
        width: 180px;
        margin-right: auto;
    }
    .products-card__item:nth-child(2n+2) {
        margin-right: 0;
    }
}

@media screen and (max-width: 399px) {
   
    .products-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .products-filter {
        margin-bottom: 20px;
        width: 100%;
    }
    .products-filter__container {
        width: 100%;
        overflow: scroll;
        margin-bottom: 16px;
    }
    .products-btns {
        width: 100%;
        margin-top: 20px;
        margin-left: unset;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .products-btns__item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 15px;
        margin-right: 0;
    }
    .products-btns__item:last-child {
        margin-bottom: 0;
    }
    .products-btns__button {
        width: 100%;
        height: 45px;
        margin-bottom: 15px;
        font-size: 20px;
    }
    .products-btns__button:last-child {
        margin-bottom: 0;
    }
    .products-btns__button-img {
        width: 25px;
        height: 25px;
    }
    .products-params {
        margin-bottom: 0;
    }
    .products-params__input {
        width: 276px;
    }
    .products-params__select {
        width: 276px;
    }
    .products-params__select--m {
        width: 100px;
        margin-left: auto;
    }
    .products-params__item {
        margin-bottom: 0;
        margin-right: 20px;
    }
    .products-params__item:last-child {
        margin-right: 0;
    }
    .products-params__item--filters {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .products-params__text--filter {
        width: 110px;
        margin-bottom: 0;
    }
    .products-params__text--count {
        width: 70px;
        margin-right: 20px;
    }
    .products-params__text--price {
        margin-right: 20px;
        margin-bottom: 0px;
    }
    .products-params__input--m-from {
        width: 100px;
        margin-bottom: 0;
    }
    .products-params__input--m-to {
        width: 100px;
        margin-bottom: 0;
    }
    .products-params__input--from {
        margin-right: 10px;
        margin-bottom: 0px;
    }
    .products-params__sub {
        width: 100%;
        height: 60px;
    }
    .products-list {
        width: 100%;
    }
    .products-list-price {
        -webkit-box-ordinal-group: 5;
        -webkit-order: 4;
        -ms-flex-order: 4;
        order: 4;
    }
    .products-list__block:nth-child(1) {
        -webkit-box-ordinal-group: 1;
        -webkit-order: 0;
        -ms-flex-order: 0;
        order: 0;
        width: 100%;
        margin-bottom: 20px;
    }
    .products-list__block:nth-child(3) {
        margin-bottom: 20px;
        width: 100%;
        margin-left: unset;
    }
    .products-list__block:nth-child(4) {
        width: 100%;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
    }
    .products-list__item {
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .products-list__img {
        width: 120px;
        height: 120px;
    }
    .products-list__name {
        font-size: 20px;
    }
    .products-list__fav {
        -webkit-box-ordinal-group: 4;
        -webkit-order: 3;
        -ms-flex-order: 3;
        order: 3;
    }
    .products-list__info {
        width: 100%;
        max-width: 440px;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-bottom: 20px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .products-list__info-item {
        margin-right: 0px;
        margin-bottom: 20px;
    }
    .products-list__info-item:nth-child(1) {
        margin-right: 0px;
        margin-bottom: inherit;
    }
    .products-list__info-item:nth-child(2) {
        margin-right: 0;
    }
    .products-list__info-item:nth-child(3) {
        margin-right: 0px;
    }
    .products-list__info-item:last-child {
        margin-right: 0;
        margin-bottom: 0;
    }
    .products-list__price {
        display: none;
    }
    .products-list__price--mob {
        display: block;
        font-size: 30px;
        -webkit-box-ordinal-group: 1;
        -webkit-order: 0;
        -ms-flex-order: 0;
        order: 0;
        margin-right: 20px;
    }
    .products-list__count,
    .products-list__from,
    .products-list__delivery {
        font-size: 16px;
    }
    .products-list__buy {
        width: 180px;
        height: 45px;
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
    }
    .products-list__stars-img {
        width: 16px;
        height: 16px;
    }
    .products-card-list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .products-card__img {
        width: 160px;
        height: 160px;
    }
    .products-card__name {
        font-size: 18px;
    }
    .products-card__desc {
        font-size: 14px;
    }
    .products-card__stars-img {
        width: 16px;
        height: 16px;
    }
    .products-card__price {
        font-size: 28px;
    }
    .products-card__buy {
        width: 110px;
        height: 35px;
    }
    .products-card__fav-img {
        width: 20px;
        height: 20px;
    }
    .products-card__item {
        width: 180px;
        margin-right: unset;
    }
    .products-card__item:nth-child(2n+2) {
        margin-right: 0;
    }
}

.footer {
    padding: 8px 0px;
    margin-top: auto;
    background-color: #f0f0f0;
    border-top: 1px dotted #c80041;
    margin-top: 24px;
}

.footer .proj-logo {
    margin: 0;
    justify-content: flex-end;
    width: 220px;
}

.footer__wrap {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer__text {
    width: 650px;
    font-style: normal;
    font-weight: 450;
    font-size: 12px;
    line-height: 16px;
    color: #fff;
    margin-right: 65px;
}
.user_key_footer{
    line-height: 1em;
    font-size: 16px;
    color: #010101;
    text-transform: uppercase;
}
.user_key_footer span{
    color: #c80041;
}
.footer_links {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    flex-direction: column;
    height: 56px;
    justify-content: space-evenly;
    width: 220px;
}

.footer_links a {
    color: #010101;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    line-height: 1em;
}

.footer_links i {
    font-size: 16px;
    margin-left: 6px;
}

.footer_links a:hover {
    color: var(--primary);
}

.footer-list {
    font-style: normal;
    font-weight: 450;
    font-size: 12px;
    line-height: 14px;
}

.footer-list__wrap {
    margin-right: 60px;
}

.footer-list__wrap--second {
    margin-right: 50px;
}

.footer-list__title {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #ffffff;
    margin-bottom: 2px;
}

.footer-list__item {
    padding-left: 9px;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 9px;
}

.footer-list__item::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    left: 0;
}

.footer-list__link {
    color: rgba(255, 255, 255, 0.7);
}

.footer-list__link:hover {
    color: rgba(255, 255, 255, 0.7);
}

.footer-socials {
    font-weight: 450;
    font-size: 12px;
    line-height: 14px;
    margin-bottom: 9px;
}

.footer-socials__title {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #ffffff;
    margin-bottom: 4px;
}

.footer-socials__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: #FFFFFF;
}

.footer-socials__item:nth-child(1) {
    margin-bottom: 9px;
}

.footer-socials__link {
    color: rgba(255, 255, 255, 0.7);
    margin-right: 4px;
}

.footer-socials__link:last-child {
    margin-right: 0;
}

.footer-info__wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
    .footer__text {
        width: 460px;
        margin-right: 0;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .footer__text {
        width: 100%;
        margin-bottom: 30px;
        text-align: center;
        font-size: 14px;
        line-height: 18px;
    }
    .footer-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .footer-info__wrap {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .footer-list {
        font-size: 16px;
    }
    .footer-list__item {
        margin-bottom: 6px;
        margin-left: 2px;
        padding: 8px;
    }
    .footer-list__item:last-child {
        margin-bottom: 0;
    }
    .footer-list__wrap {
        margin-right: 30px;
    }
    .footer-list__wrap:last-child {
        margin-right: 0;
    }
    .footer-list__title {
        font-size: 18px;
        margin-bottom: 8px;
    }
    .footer-socials {
        font-size: 16px;
    }
    .footer-socials__title {
        font-size: 18px;
        margin-bottom: 6px;
    }
    .footer-socials__item {
        margin-bottom: 10px;
    }
    .footer-socials__item:last-child {
        margin-bottom: 0;
    }
    .footer-socials__img {
        width: 24px;
        height: 24px;
    }
    .footer-socials__link {
        padding: 5px;
        margin-right: 0;
    }
    .footer-socials__email {
        padding: 5px;
    }
}

@media screen and (min-width: 576px) and (max-width: 767px) {
    .footer__text {
        width: 100%;
        margin-bottom: 30px;
        text-align: center;
        font-size: 14px;
        line-height: 18px;
        margin-right: 0;
    }
    .footer-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .footer-info__wrap {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .footer-list {
        font-size: 16px;
    }
    .footer-list__item {
        margin-bottom: 6px;
        margin-left: 2px;
        padding: 8px;
    }
    .footer-list__item:last-child {
        margin-bottom: 0;
    }
    .footer-list__wrap {
        margin-right: 30px;
    }
    .footer-list__wrap:last-child {
        margin-right: 0;
    }
    .footer-list__title {
        font-size: 18px;
        margin-bottom: 8px;
    }
    .footer-socials {
        font-size: 16px;
    }
    .footer-socials__title {
        font-size: 18px;
        margin-bottom: 6px;
    }
    .footer-socials__item {
        margin-bottom: 10px;
    }
    .footer-socials__item:last-child {
        margin-bottom: 0;
    }
    .footer-socials__img {
        width: 24px;
        height: 24px;
    }
    .footer-socials__link {
        padding: 5px;
        margin-right: 0;
    }
    .footer-socials__email {
        padding: 5px;
    }
}

@media screen and (min-width: 400px) and (max-width: 575px) {
    .footer__text {
        width: 100%;
        margin-bottom: 30px;
        text-align: center;
        font-size: 14px;
        line-height: 18px;
        margin-right: 0;
    }
    .footer-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .footer-info__wrap {
        width: 210px;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin: 0 auto;
    }
    .footer-list {
        font-size: 16px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .footer-list__item {
        margin-bottom: 6px;
        margin-left: 2px;
        padding: 8px;
    }
    .footer-list__item:last-child {
        margin-bottom: 0;
    }
    .footer-list__wrap {
        margin-right: 30px;
        margin-bottom: 15px;
    }
    .footer-list__wrap--second {
        margin-right: 0;
    }
    .footer-list__title {
        font-size: 18px;
        margin-bottom: 8px;
    }
    .footer-socials {
        font-size: 16px;
    }
    .footer-socials__title {
        margin-top: 0px;
    }
    .footer-socials__title {
        font-size: 18px;
        margin-bottom: 6px;
    }
    .footer-socials__item {
        margin-bottom: 10px;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .footer-socials__item:last-child {
        margin-bottom: 0;
    }
    .footer-socials__img {
        width: 30px;
        height: 30px;
    }
    .footer-socials__link {
        padding: 5px;
        margin-right: 0;
    }
    .footer-socials__email {
        padding: 5px;
    }
}

@media screen and (max-width: 399px) {
    .footer__text {
        width: 100%;
        margin-bottom: 30px;
        text-align: center;
        font-size: 14px;
        line-height: 18px;
        margin-right: 0;
    }
    .footer-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .footer-info__wrap {
        width: 210px;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin: 0 auto;
    }
    .footer-list {
        font-size: 16px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .footer-list__item {
        margin-bottom: 6px;
        margin-left: 2px;
        padding: 8px;
    }
    .footer-list__item:last-child {
        margin-bottom: 0;
    }
    .footer-list__wrap {
        margin-right: 30px;
        margin-bottom: 15px;
    }
    .footer-list__wrap--second {
        margin-right: 0;
    }
    .footer-list__title {
        font-size: 18px;
        margin-bottom: 8px;
    }
    .footer-socials {
        font-size: 16px;
    }
    .footer-socials__title {
        margin-top: 20px;
    }
    .footer-socials__title {
        font-size: 18px;
        margin-bottom: 6px;
    }
    .footer-socials__item {
        margin-bottom: 10px;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .footer-socials__item:last-child {
        margin-bottom: 0;
    }
    .footer-socials__img {
        width: 30px;
        height: 30px;
    }
    .footer-socials__link {
        padding: 5px;
        margin-right: 0;
    }
    .footer-socials__email {
        padding: 5px;
    }
}

.reg {
    padding-top: 81px;
}

.reg-bg {
    background-color: #101924;
}

.reg__wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.error_inp {
    animation: error_inp .2s infinite;
}

.good_reg {
    color: #00c887 !important;
    text-align: center!important;
    text-transform: uppercase;
}

.label_notif {
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
}
.label_notif:hover{
    color: var(--primary);
}

.auth__title.error_title {
    text-transform: uppercase;
    font-weight: 400;
    text-align: center;
}

.reg__logo {
    width: 240px;
    height: auto;
    margin-bottom: 30px;
}

.reg__form {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    background: #f0f0f0;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    padding: 24px;
}

.reg__title {
    font-style: normal;
    font-weight: 450;
    font-size: 16px;
    line-height: 19px;
    color: rgba(0, 0, 0, 0.4);
    text-align: center;
    margin-bottom: 24px;
}

.reg__list {
    margin-bottom: 32px;
}

.reg__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 24px;
}

.reg__item:last-child {
    margin-bottom: 0;
}

.reg__pin-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.reg__label {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #fff;
    margin-bottom: 8px;
}

.reg__label-pin {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.reg__label-pin--img {
    margin-left: 8px;
}

.reg__input-pin {
    width: 43px;
    height: 43px;
    margin-right: 8px;
    font-weight: 400;
    font-size: 24px;
    line-height: 28px;
    color: #ffffff;
    text-align: center;
    padding: 0;
}

.reg__input-pin:last-child {
    margin-bottom: 0;
}

.reg__captcha {
    width: 300px;
    height: 71px;
    margin-bottom: 32px;
}

.reg__sub {
    width: 302px;
    height: 53px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background: #c80041;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    font-style: normal;
    font-weight: 450;
    font-size: 18px;
    line-height: 21px;
    color: #fff;
    margin-bottom: 8px;
    border: 0;
}

.reg__acc {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    margin-top: 20px;
}

.reg__acc-text {
    color: rgba(255, 255, 255, 0.4);
    margin-right: 4px;
}

.reg__acc-link {
    color: #c80041;
}

.reg__acc-link:hover {
    color: #c80041;
}

.auth-bg {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-bg main {
    min-height: unset;
    padding: 0;
}

.auth__wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.auth__logo {
    margin: 0;
    position: absolute;
    z-index: 10;
    width: auto;
    height: 85px;
    top: 0;
    right: 0;
}

.auth_div {
    position: relative;
    z-index: 5;
    height: 100%;
    width: 100%;
    padding: 24px;
    background: #fff;
    border: 1px solid #c80041;
}

.auth__form {
    border-radius: 0px;
    padding: 0;
    width: 350px;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.auth__title {
    font-style: normal;
    font-weight: 900;
    font-size: 18px;
    color: #c80041;
    text-align: left;
    margin: 0 0 24px;
    padding: 0;
}

.reg_div .auth__captcha {
    margin-bottom: 68px;
}

.auth__list {
    margin-bottom: 12px;
}

.auth__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 24px;
}

.auth__item:last-child {
    margin-bottom: 0;
}

.auth__pin-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.auth__select {
    width: 100%;
    height: 44px;
    background: #101924;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    transition: all 300ms ease-in;
}

.auth__select-list {
    background: #101924;
    top: 100%;
}

.auth__label {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: #6e6e6e;
    margin-bottom: 12px;
    transition: all 200ms ease;
}

.auth__label-pin {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.auth__label-pin--img {
    margin-left: 8px;
}

.auth__select {
    width: 100%;
    height: 44px;
    background: #101924;
    -webkit-border-radius: 0px;
    border-radius: 0px;
}

.auth__select-list {
    background: #101924;
    top: 100%;
}

.auth__input {
    width: 100%;
    height: 44px;
    border: 1px solid #c80041;
}

.auth__input-pin {
    width: 44px;
    height: 44px;
    margin-right: 8px;
    font-weight: 400;
    font-size: 24px;
    line-height: 28px;
    color: #ffffff;
    text-align: center;
    padding: 0;
}

.auth__input-pin:last-child {
    margin-bottom: 0;
}

.auth__captcha {
    margin-bottom: 24px;
}

.auth__sub {
    width: 100%;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0px;
    font-style: normal;
    font-weight: 450;
    font-size: 18px;
    border: 1px dotted #c80041;
    transition: all 200ms ease;
    background: #c80041;
    color: #fff;
}

.auth__sub:hover {
    letter-spacing: 4px;
}

.auth {
    padding: 0;
}

.auth__acc {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
}

.auth__acc-text {
    color: #6e6e6e;
    text-align: center;
    margin: 0;
    line-height: 1em;
    margin-top: 24px;
}

.auth__acc-link {
    color: #c80041;
}

.auth__acc-link:hover {
    color: #c80041;
}


.product {
    padding-bottom: 100px;
}

.product__seller {
    background: #f0f0f0;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    padding: 12px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-right: 16px;
}

.product__seller-name {
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    color: #ffffff;
    margin-bottom: 16px;
}

.product__seller-img {
    width: 310px;
    height: 310px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    margin-bottom: 16px;
}

.product__seller-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.product__seller-title {
    font-weight: 450;
    font-size: 18px;
    line-height: 21px;
    color: #fff;
}

.product__seller-value {
    font-weight: 450;
    font-size: 14px;
    line-height: 16px;
    color: #999999;
    margin-left: auto;
}

.product__seller-value--good {
    color: #26c666;
}

.product__seller-value--bad {
    color: #c80041;
}

.product__name {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 26px;
}

.product__name-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    color: #fff;
    margin-right: 16px;
}

.product__name-fav {
    width: 19px;
    height: 18px;
    margin-right: 16px;
}

.product__name-fav path {
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.product__name-fav:hover path {
    fill: #c80041;
}

.product__name-rating {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.product__name-point {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.product__name-star--yellow path {
    fill: #ffac38;
    fill-opacity: 1;
}

.product__info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 60px;
}

.product__info-img {
    width: 420px;
    height: 420px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    margin-right: 20px;
}

.product__info-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    color: #fff;
    margin-bottom: 20px;
}

.product__info-list {
    width: 340px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-weight: 450;
    font-size: 18px;
    line-height: 21px;
    margin-bottom: 16px;
}

.product__info-item {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-bottom: 16px;
}

.product__info-item:nth-child(1n+1) {
    margin-right: auto;
}

.product__info-item:nth-last-child(2n - 2) {
    margin-bottom: 0;
}

.product__info-name {
    color: #ffffff;
    margin-bottom: 8px;
}

.product__info-value {
    color: rgba(0, 0, 0, 0.4);
}

.product__info-money {
    background: #f0f0f0;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    padding: 16px;
}

.product__info-prices {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
}

.product__info-prices-item {
    margin-right: 10px;
}

.product__info-prices-item:first-child {
    margin-right: 16px;
}

.product__info-prices-item:last-child {
    margin-right: 0;
}

.product__info-prices-price {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 500;
    font-size: 36px;
    line-height: 42px;
    color: #ffffff;
}

.product__info-prices-price--btc,
.product__info-prices-price--m {
    font-weight: 450;
    font-size: 18px;
    line-height: 21px;
}

.product__info-prices-price--btc {
    color: #f7931a;
}

.product__info-prices-price--m {
    color: #ff6600;
}

.product__info-prices-img {
    width: 24px;
    height: 24px;
    margin-right: 6px;
}

.product__info-delivery {
    margin-bottom: 10px;
}

.product__info-delivery-item {
    margin-bottom: 10px;
}

.product__info-delivery-item:last-child {
    margin-bottom: 0;
}

.product__info-delivery-count {
    padding: 10px;
    font-size: 18px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: 0;
    background: #101924;
    padding-left: 16px;
    outline: none;
}

.product__info-delivery-select {
    padding: 10px;
    font-size: 18px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: 0;
    background: #101924;
    padding-left: 16px;
    outline: none;
}

.product__info-btns {
    font-weight: 450;
    font-size: 18px;
    line-height: 21px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.product__info-btns-btn {
    margin-right: 5px;
}

.product__info-btns-btn:last-child {
    margin-right: 0;
}

.product__info-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #c80041;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    border: 0;
}

.product__info-btn--buy {
    width: 275px;
    height: 54px;
    color: #fff;
}

.product__info-btn--fav {
    width: 50px;
    height: 54px;
}

.product__info-btn--fav:hover .product__info-btn-fav path {
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    fill: #c80041;
}

.product__desc {
    margin-bottom: 40px;
}

.product__desc-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 16px;
}

.product__desc-text {
    width: 501px;
    font-weight: 450;
    font-size: 18px;
    line-height: 21px;
    color: rgba(0, 0, 0, 0.4);
}

.product__reviews-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    color: #fff;
    margin-bottom: 16px;
}

.product__reviews-rating {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 16px;
}

.product__reviews-rate {
    font-weight: 450;
    font-size: 18px;
    line-height: 21px;
    color: #fff;
    margin-right: 8px;
}

.product__reviews-stars {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
}

.product__reviews-star {
    margin-right: 4px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.product__reviews-star:last-child {
    margin-right: 0;
}

.product__reviews-star-img {
    width: 13px;
    height: 13px;
}

.prods__table,
.blocked__table {
    overflow-x: scroll;
    margin-top: 16px;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    padding: 16px;
    border-radius: 12px;
    background-color: #141c26;
}

.prods__table-headers,
.blocked__table-headers {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 12px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.prods__table-header,
.blocked__table-header {
    font-size: 16px;
    font-weight: 600;
    margin-right: 5px;
}

.prods__table-header:last-child,
.blocked__table-header:last-child {
    margin-right: 0;
}

.prods__table-data,
.blocked__table-data {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    overflow-y: scroll;
    margin-top: 16px;
    max-height: 530px;
}

.prods__table-data__item,
.blocked__table-data__item {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 0px;
    margin-bottom: 8px;
    background-color: #101924;
}

.prods__table-data__item:last-child,
.blocked__table-data__item:last-child {
    margin-bottom: 0;
}

.product__reviews-star-img--yellow path {
    fill: #ffac38;
    fill-opacity: 1;
}

.product__reviews-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 16px;
}

.product__reviews-item:last-child {
    margin-bottom: 0;
}

.product__reviews-img {
    width: 32px;
    height: 32px;
    margin-right: 10px;
}

.product__review {
    width: 459px;
    background: #f0f0f0;
    -webkit-border-radius: 0px 4px 4px 4px;
    border-radius: 0px 4px 4px 4px;
    padding: 8px;
}

.product__review-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
}

.product__review-name {
    font-weight: 450;
    font-size: 18px;
    line-height: 21px;
    color: #fff;
    margin-right: 8px;
}

.product__review-rating {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.product__review-rate {
    font-weight: 450;
    font-size: 18px;
    line-height: 21px;
    color: #fff;
    margin-right: 8px;
}

.product__review-stars {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
}

.product__review-star {
    margin-right: 4px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.product__review-star:last-child {
    margin-right: 0;
}

.product__review-star-img {
    width: 13px;
    height: 13px;
}

.product__review-star-img--yellow path {
    fill: #ffac38;
    fill-opacity: 1;
}

.product__review-text {
    font-weight: 450;
    font-size: 18px;
    line-height: 21px;
    color: rgba(0, 0, 0, 0.4);
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
    .product__wrap {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .product__info {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .product__info-img {
        margin-bottom: 30px;
    }
    .product__info-list {
        width: 500px;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .product {
        padding-bottom: 80px;
    }
    .product__wrap {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .product__seller {
        margin-right: 10px;
    }
    .product__seller-img {
        width: 290px;
        height: 290px;
    }
    .product__info {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .product__info-btn--buy {
        width: 300px;
    }
    .product__info-img {
        width: 360px;
        height: 360px;
        margin-bottom: 30px;
    }
    .product__info-list {
        width: 380px;
    }
    .product__desc-text {
        width: 400px;
    }
    .product__review {
        width: 370px;
    }
}

@media screen and (min-width: 576px) and (max-width: 767px) {
    .product {
        padding-bottom: 80px;
    }
    .product__wrap {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .product__seller {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        margin-bottom: 30px;
    }
    .product__seller-about {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .product__seller-img {
        width: 290px;
        height: 290px;
    }
    .product__info {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .product__info-btn--buy {
        width: 300px;
    }
    .product__info-img {
        width: 360px;
        height: 360px;
        margin-bottom: 30px;
    }
    .product__info-list {
        width: 500px;
    }
    .product__info-money {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
    }
    .product__desc-text {
        width: 500px;
    }
    .product__review {
        width: 500px;
    }
}

@media screen and (min-width: 400px) and (max-width: 575px) {
    .product {
        padding-bottom: 80px;
    }
    .product__wrap {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .product__seller {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        margin-bottom: 30px;
    }
    .product__seller-about {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .product__seller-img {
        width: 290px;
        height: 290px;
    }
    .product__info {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .product__info-btn--buy {
        width: 300px;
    }
    .product__info-img {
        width: 360px;
        height: 360px;
        margin-bottom: 30px;
    }
    .product__info-list {
        width: 380px;
    }
    .product__info-money {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
    }
    .product__desc-text {
        width: 380px;
    }
    .product__review {
        width: 380px;
    }
}

@media screen and (max-width: 399px) {
    .product {
        padding-bottom: 80px;
    }
    .product__wrap {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .product__seller {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        margin-bottom: 30px;
    }
    .product__seller-about {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .product__seller-img {
        width: 270px;
        height: 270px;
    }
    .product__name-title {
        font-size: 20px;
        line-height: 20px;
    }
    .product__info {
        margin-bottom: 20px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .product__info-title {
        font-size: 20px;
        line-height: 20px;
    }
    .product__info-btn--buy {
        width: 200px;
        height: 40px;
    }
    .product__info-btn--fav {
        height: 40px;
    }
    .product__info-img {
        width: 280px;
        height: 280px;
        margin-bottom: 15px;
    }
    .product__info-name {
        margin-bottom: 4px;
    }
    .product__info-list {
        font-size: 14px;
        width: 280px;
    }
    .product__info-money {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
    }
    .product__info-prices-price {
        font-size: 30px;
        line-height: 30px;
    }
    .product__info-prices-price--btc,
    .product__info-prices-price--m {
        font-size: 16px;
    }
    .product__desc {
        margin-bottom: 20px;
    }
    .product__desc-title {
        font-size: 20px;
    }
    .product__desc-text {
        width: 280px;
        font-size: 16px;
    }
    .product__reviews-title {
        font-size: 20px;
        line-height: 20px;
        margin-bottom: 6px;
    }
    .product__review {
        width: 280px;
    }
    .product__review-img {
        width: 26px;
        height: 26px;
    }
    .product__review-name {
        font-size: 18px;
    }
    .product__review-text {
        font-size: 16px;
    }
}

.profile-menu {
    width: 250px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    background: #f0f0f0;
    -webkit-border-radius: 0px;
    border-radius: 0px;
}

.profile-menu__title {
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: #fff;
    margin-bottom: 10px;
}

.profile-menu__item {
    margin-bottom: 8px;
}

.profile-menu__item:last-child {
    margin-bottom: 0;
}

.profile-menu__link {
    font-style: normal;
    font-weight: 450;
    white-space: nowrap;
    font-size: 16px;
    line-height: 16px;
    color: #c80041;
    position: relative;
}

.profile-menu__link--active::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: unset;
    border-bottom: 2px dotted #c80041;
    bottom: 0;
}

.profile-menu__link:not(.profile-menu__link--active):hover {
    transform: scale(1.2);
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
 
    .profile-menu__title {
        font-size: 18px;
        margin-bottom: 2px;
    }
    .profile-menu__item {
        margin-bottom: 2px;
    }
    .profile-menu__link {
        font-size: 14px;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
   
    .profile-menu__menu {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
    .profile-menu__item {
        margin-right: 10px;
    }
    .profile-menu__item:last-child {
        margin-right: 0;
    }
    .profile-menu__title {
        font-size: 22px;
        margin-bottom: 10px;
    }
    .profile-menu__item {
        margin-bottom: 2px;
    }
    .profile-menu__link {
        font-size: 18px;
    }
}

@media screen and (min-width: 576px) and (max-width: 767px) {
 
    .profile-menu__menu {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
    .profile-menu__item {
        margin-right: 10px;
    }
    .profile-menu__item:last-child {
        margin-right: 0;
    }
    .profile-menu__title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .profile-menu__item {
        margin-bottom: 2px;
    }
    .profile-menu__link {
        font-size: 16px;
    }
}

@media screen and (min-width: 400px) and (max-width: 575px) {

    .profile-menu__menu {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .profile-menu__item {
        margin-right: 10px;
        padding: 8px;
    }
    .profile-menu__item:last-child {
        margin-right: 0;
    }
    .profile-menu__title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .profile-menu__item {
        margin-bottom: 2px;
    }
    .profile-menu__link {
        font-size: 16px;
    }
}

@media screen and (max-width: 399px) {
  
    .profile-menu__menu {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .profile-menu__item {
        margin-right: 0px;
        padding: 6px;
    }
    .profile-menu__item:last-child {
        margin-right: 0;
    }
    .profile-menu__title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .profile-menu__item {
        margin-bottom: 0px;
    }
    .profile-menu__link {
        font-size: 16px;
    }
}

.favorites {
    padding-bottom: 100px;
}

.favorites-main {
    min-height: 80vh;
}

.favorites-list__block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.favorites-list__block-info {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.favorites-list__block-name {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-right: 10px;
}

.favorites-list__block-buy {
    margin-left: auto;
}

.favorites-list__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px;
    background: #f0f0f0;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    margin-bottom: 24px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.favorites-list__item:last-child {
    margin-bottom: 0;
}

.favorites-list__item:hover {
    -webkit-box-shadow: 0px 0px 7px 7px rgba(110, 110, 110, 0.219);
    box-shadow: 0px 0px 7px 7px rgba(110, 110, 110, 0.219);
}

.favorites-list__img {
    width: 140px;
    height: 140px;
    margin-right: 16px;
}

.favorites-list__name {
    font-style: normal;
    font-weight: 450;
    font-size: 18px;
    line-height: 21px;
    margin-bottom: 5px;
}

.favorites-list__type {
    font-style: normal;
    font-weight: 450;
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 5px;
}

.favorites-list__price {
    font-style: normal;
    font-weight: 500;
    font-size: 30px;
    line-height: 28px;
    margin-right: 0px;
    margin-left: auto;
}

.favorites-list__price--mob {
    display: none;
}

.favorites-list__info {
    width: 420px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.favorites-list__info-item:nth-child(1) {
    margin-right: 60px;
    margin-bottom: 10px;
}

.favorites-list__info-item:nth-child(3) {
    margin-right: 0px;
}

.favorites-list__info-title {
    font-style: normal;
    font-weight: 450;
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 5px;
}

.favorites-list__info-text {
    font-style: normal;
    font-weight: 450;
    font-size: 14px;
    line-height: 21px;
    color: rgba(0, 0, 0, 0.4);
    margin-right: 8px;
}

.favorites-list__fav {
    background-color: transparent;
    border: 0;
}

.favorites-list__fav-img {
    width: 30px;
    height: 30px;
}

.favorites-list__fav-img path {
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.favorites-list__fav-img:hover {
    fill: red;
}

.favorites-list__fav-img:hover path {
    stroke: red;
    fill: #c80041;
}

.favorites-list__buy {
    width: 170px;
    height: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background: #c80041;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    font-style: normal;
    font-weight: 450;
    font-size: 18px;
    line-height: 21px;
    color: #fff;
    border: 0;
    margin-right: 6px;
}

.favorites-list__stars {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 10px;
}

.favorites-list__stars-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.to_trans {
    width: 100%;
    text-align: center;
    font-size: 18px;
    padding: 30px 0 6px;
}

.trans_block[no_tr] {}

.favorites-list__stars-img {
    vertical-align: unset;
}

.favorites-list__stars-img--yellow path {
    fill: #ffac38;
    fill-opacity: 1;
}

#add_country {
    height: 84px;
    display: grid;
    align-items: end;
}

#add_country .country_select {
    height: 43px;
}

#add_country .select-pure__select.select-pure__select--multiple {
    border-radius: 0px;
    background-color: #fff;
    min-height: 43px;
}

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

.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
}

.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: 43px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    border-radius: 0px;
    background: #fff;
    gap: 8px;
    padding: 7px 8px 7px;
    transition: all 200ms ease;
}

.listbox_wrap .dual-listbox__available {
    border: 1px dotted #6e6e6e;
}

.listbox_wrap .dual-listbox__selected {
    border: 1px solid #d3d3d3;
}

.listbox_wrap .dual-listbox__available>li,
.listbox_wrap .dual-listbox__selected>li {
    border: 0;
    border: none !important;
    background: #c80041;
    border-radius: 0px;
    font-size: 14px;
    font-weight: 400;
    padding: 4px 8px;
    color: #fff;
    text-transform: uppercase;
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
    .favorites-list {
        width: 100%;
    }
    .favorites-list-price {
        -webkit-box-ordinal-group: 5;
        -webkit-order: 4;
        -ms-flex-order: 4;
        order: 4;
    }
    .favorites-list__block:nth-child(1) {
        -webkit-box-ordinal-group: 1;
        -webkit-order: 0;
        -ms-flex-order: 0;
        order: 0;
        width: 100%;
        margin-bottom: 20px;
    }
    .favorites-list__block:nth-child(3) {
        margin-bottom: 20px;
        width: 100%;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
    }
    .favorites-list__block:nth-child(4) {
        width: 100%;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
    }
    .favorites-list__block-info {
        width: 100%;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .favorites-list__block-buy {
        margin-left: unset;
    }
    .favorites-list__item {
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .favorites-list__img {
        width: 140px;
        height: 140px;
    }
    .favorites-list__name {
        font-size: 26px;
    }
    .favorites-list__info {
        width: 100%;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        margin-bottom: 20px;
    }
    .favorites-list__info-item {
        margin-right: 20px;
        margin-bottom: 0;
    }
    .favorites-list__info-item:nth-child(1) {
        margin-right: 20px;
        margin-bottom: 0;
    }
    .favorites-list__info-item:nth-child(3) {
        margin-right: 20px;
    }
    .favorites-list__info-item:last-child {
        margin-right: 0;
    }
    .favorites-list__price {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
        display: none;
    }
    .favorites-list__price--mob {
        display: block;
        font-size: 36px;
        -webkit-box-ordinal-group: 1;
        -webkit-order: 0;
        -ms-flex-order: 0;
        order: 0;
        margin-right: 10px;
    }
    .favorites-list__count,
    .favorites-list__from,
    .favorites-list__delivery {
        font-size: 18px;
    }
    .favorites-list__buy {
        width: 200px;
        height: 50px;
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
    }
    .favorites-list__fav {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
    }
    .favorites-list__stars-img {
        width: 20px;
        height: 20px;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .favorites-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .favorites-list {
        width: 100%;
    }
    .favorites-list-price {
        -webkit-box-ordinal-group: 5;
        -webkit-order: 4;
        -ms-flex-order: 4;
        order: 4;
    }
    .favorites-list__block:nth-child(1) {
        -webkit-box-ordinal-group: 1;
        -webkit-order: 0;
        -ms-flex-order: 0;
        order: 0;
        width: 100%;
        margin-bottom: 20px;
    }
    .favorites-list__block:nth-child(3) {
        margin-bottom: 20px;
        width: 100%;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
    }
    .favorites-list__block:nth-child(4) {
        width: 100%;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
    }
    .favorites-list__block-buy {
        margin-left: unset;
    }
    .favorites-list__item {
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .favorites-list__img {
        width: 140px;
        height: 140px;
    }
    .favorites-list__name {
        font-size: 26px;
    }
    .favorites-list__info {
        width: 100%;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        margin-bottom: 20px;
    }
    .favorites-list__info-item {
        margin-right: 20px;
        margin-bottom: 0;
    }
    .favorites-list__info-item:nth-child(1) {
        margin-right: 20px;
        margin-bottom: 0;
    }
    .favorites-list__info-item:nth-child(3) {
        margin-right: 20px;
    }
    .favorites-list__info-item:last-child {
        margin-right: 0;
    }
    .favorites-list__price {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
        display: none;
        margin-right: 20px;
    }
    .favorites-list__price--mob {
        display: block;
        font-size: 36px;
        -webkit-box-ordinal-group: 1;
        -webkit-order: 0;
        -ms-flex-order: 0;
        order: 0;
    }
    .favorites-list__count,
    .favorites-list__from,
    .favorites-list__delivery {
        font-size: 18px;
    }
    .favorites-list__buy {
        width: 200px;
        height: 50px;
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
    }
    .favorites-list__fav {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
    }
    .favorites-list__stars-img {
        width: 20px;
        height: 20px;
    }
}

@media screen and (min-width: 576px) and (max-width: 767px) {
    .favorites-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .favorites-list {
        width: 100%;
    }
    .favorites-list-price {
        -webkit-box-ordinal-group: 5;
        -webkit-order: 4;
        -ms-flex-order: 4;
        order: 4;
    }
    .favorites-list__block:nth-child(1) {
        -webkit-box-ordinal-group: 1;
        -webkit-order: 0;
        -ms-flex-order: 0;
        order: 0;
        width: 100%;
        margin-bottom: 20px;
    }
    .favorites-list__block:nth-child(3) {
        margin-bottom: 20px;
        width: 100%;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
    }
    .favorites-list__block:nth-child(4) {
        width: 100%;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
    }
    .favorites-list__block-buy {
        margin-left: unset;
    }
    .favorites-list__item {
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .favorites-list__img {
        width: 140px;
        height: 140px;
    }
    .favorites-list__name {
        font-size: 26px;
    }
    .favorites-list__price {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
        display: none;
    }
    .favorites-list__price--mob {
        display: block;
        font-size: 36px;
        -webkit-box-ordinal-group: 1;
        -webkit-order: 0;
        -ms-flex-order: 0;
        order: 0;
        margin-right: 20px;
    }
    .favorites-list__fav {
        -webkit-box-ordinal-group: 4;
        -webkit-order: 3;
        -ms-flex-order: 3;
        order: 3;
    }
    .favorites-list__count,
    .favorites-list__from,
    .favorites-list__delivery {
        font-size: 18px;
    }
    .favorites-list__buy {
        width: 200px;
        height: 50px;
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
    }
    .favorites-list__info {
        width: 440px;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-bottom: 20px;
    }
    .favorites-list__info-item {
        margin-right: 20px;
        margin-bottom: 0;
    }
    .favorites-list__info-item:nth-child(1) {
        margin-right: 70px;
        margin-bottom: 0;
    }
    .favorites-list__info-item:nth-child(2) {
        margin-right: 0;
    }
    .favorites-list__info-item:nth-child(3) {
        margin-right: 20px;
    }
    .favorites-list__info-item:last-child {
        margin-right: 0;
    }
    .favorites-list__stars-img {
        width: 20px;
        height: 20px;
    }
}

@media screen and (min-width: 400px) and (max-width: 575px) {
    .favorites-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .favorites-list {
        width: 100%;
    }
    .favorites-list-price {
        -webkit-box-ordinal-group: 5;
        -webkit-order: 4;
        -ms-flex-order: 4;
        order: 4;
    }
    .favorites-list__block:nth-child(1) {
        -webkit-box-ordinal-group: 1;
        -webkit-order: 0;
        -ms-flex-order: 0;
        order: 0;
        width: 100%;
        margin-bottom: 20px;
    }
    .favorites-list__block:nth-child(3) {
        width: 100%;
        margin-bottom: 20px;
        margin-left: unset;
    }
    .favorites-list__block:nth-child(4) {
        width: 100%;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
    }
    .favorites-list__item {
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .favorites-list__img {
        width: 120px;
        height: 120px;
    }
    .favorites-list__name {
        font-size: 20px;
    }
    .favorites-list__fav {
        -webkit-box-ordinal-group: 4;
        -webkit-order: 3;
        -ms-flex-order: 3;
        order: 3;
    }
    .favorites-list__info {
        width: 100%;
        max-width: 440px;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-bottom: 20px;
    }
    .favorites-list__info-item {
        margin-right: 20px;
        margin-bottom: 0;
    }
    .favorites-list__info-item:nth-child(1) {
        margin-right: 70px;
        margin-bottom: 0;
    }
    .favorites-list__info-item:nth-child(2) {
        margin-right: 0;
    }
    .favorites-list__info-item:nth-child(3) {
        margin-right: 20px;
    }
    .favorites-list__info-item:last-child {
        margin-right: 0;
    }
    .favorites-list__price {
        display: none;
    }
    .favorites-list__price--mob {
        display: block;
        font-size: 30px;
        -webkit-box-ordinal-group: 1;
        -webkit-order: 0;
        -ms-flex-order: 0;
        order: 0;
        margin-right: 20px;
    }
    .favorites-list__count,
    .favorites-list__from,
    .favorites-list__delivery {
        font-size: 16px;
    }
    .favorites-list__buy {
        width: 180px;
        height: 45px;
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
    }
    .favorites-list__stars-img {
        width: 16px;
        height: 16px;
    }
}

@media screen and (max-width: 399px) {
    .favorites-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .favorites-list {
        width: 100%;
    }
    .favorites-list-price {
        -webkit-box-ordinal-group: 5;
        -webkit-order: 4;
        -ms-flex-order: 4;
        order: 4;
    }
    .favorites-list__block:nth-child(1) {
        -webkit-box-ordinal-group: 1;
        -webkit-order: 0;
        -ms-flex-order: 0;
        order: 0;
        width: 100%;
        margin-bottom: 20px;
    }
    .favorites-list__block:nth-child(3) {
        margin-bottom: 20px;
        width: 100%;
        margin-left: unset;
    }
    .favorites-list__block:nth-child(4) {
        width: 100%;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
    }
    .favorites-list__item {
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .favorites-list__img {
        width: 120px;
        height: 120px;
    }
    .favorites-list__name {
        font-size: 20px;
    }
    .favorites-list__fav {
        -webkit-box-ordinal-group: 4;
        -webkit-order: 3;
        -ms-flex-order: 3;
        order: 3;
    }
    .favorites-list__info {
        width: 100%;
        max-width: 440px;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-bottom: 20px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .favorites-list__info-item {
        margin-right: 0px;
        margin-bottom: 20px;
    }
    .favorites-list__info-item:nth-child(1) {
        margin-right: 0px;
        margin-bottom: inherit;
    }
    .favorites-list__info-item:nth-child(2) {
        margin-right: 0;
    }
    .favorites-list__info-item:nth-child(3) {
        margin-right: 0px;
    }
    .favorites-list__info-item:last-child {
        margin-right: 0;
        margin-bottom: 0;
    }
    .favorites-list__price {
        display: none;
    }
    .favorites-list__price--mob {
        display: block;
        font-size: 30px;
        -webkit-box-ordinal-group: 1;
        -webkit-order: 0;
        -ms-flex-order: 0;
        order: 0;
        margin-right: 20px;
    }
    .favorites-list__count,
    .favorites-list__from,
    .favorites-list__delivery {
        font-size: 16px;
    }
    .favorites-list__buy {
        width: 180px;
        height: 45px;
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
    }
    .favorites-list__stars-img {
        width: 16px;
        height: 16px;
    }
}

.chat {
    padding-bottom: 50px;
}

.chat-window {
    flex: 1;
}

.chat-msgs {
    width: 100%;
    max-height: calc(100vh - 580px);
    overflow-y: scroll;
}

.chat-msgs>li:last-child {
    margin-bottom: 24px;
}

.chat-msgs::-webkit-scrollbar,
.chat-fields textarea::-webkit-scrollbar {
    display: none;
}

.chat-msgs__msg {
    padding: 12px;
    position: relative;
    min-width: 260px;
}

.chat-msgs__msg::before,
.chat-msgs__msg::after {
    content: '';
    position: absolute;
    width: 19px;
    height: 19px;
    background: #fff;
}

.chat-msgs__item--my .chat-msgs__msg::before {
    top: -1px;
    left: -1px;
    background-color: white;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.chat-msgs__item--my .chat-msgs__msg::after {
    bottom: -1px;
    right: -1px;
    background-color: white;
    clip-path: polygon(100% 100%, 100% 0, 0 100%);
}

.chat-msgs__item--inc .chat-msgs__msg::before {
    top: -1px;
    right: -1px;
    background-color: white;
    clip-path: polygon(100% 0, 100% 100%, 0 0);
}

.chat-msgs__item--inc .chat-msgs__msg::after {
    bottom: -1px;
    left: -1px;
    background-color: white;
    clip-path: polygon(0 100%, 0 0, 100% 100%);
}

.chat-msgs__item {
    width: 501px;
    margin-bottom: 24px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.chat-msgs__item--inc {
    font-weight: 450;
    font-size: 18px;
    line-height: 21px;
    color: rgba(0, 0, 0, 0.4);
}

.chat-msgs__item--my {
    margin-left: auto;
    color: rgba(255, 255, 255, 0.6);
    justify-content: flex-end;
}

.chat-msgs__item--inc .chat-msgs__msg {
    background: #f0f0f0;
    border-radius: 0;
}

.chat-msgs__item--my .chat-msgs__msg {
    background: #c80041;
    border-radius: 0;
}

.chat-msgs__item--my .chat-msgs__text {
    color: #ffffff;
    margin-bottom: 6px;
    word-break: break-all;
    text-align: right;
}

.chat-msgs__item--my .chat-msgs__date,
.chat-msgs__item--my .chat-msgs__status {
    color: rgba(255, 255, 255, 0.75);
}

.chat-msgs__item:last-child {
    margin-bottom: 0;
}

.chat-msgs__img {
    width: 32px;
    height: 32px;
    -webkit-border-radius: 0;
    border-radius: 0;
    margin-right: 10px;
}

.chat-msgs__header {
    margin-bottom: 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: space-between;
}

.chat-msgs__footer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.chat-msgs__footer>p {
    margin-left: auto;
}

.chat-msgs__name {
    font-style: normal;
    font-weight: 450;
    font-size: 18px;
    line-height: 21px;
    margin-right: 10px;
    color: #0040c8;
}

.chat-msgs__rank {
    font-weight: 450;
    font-size: 12px;
    line-height: 71.8%;
    margin-right: auto;
    color: #999999;
}

.chat-msgs__date {
    font-weight: 450;
    font-size: 12px;
    line-height: 14px;
    color: #6e6e6e;
}

.chat-msgs__text {
    font-weight: 450;
    font-size: 18px;
    line-height: 21px;
    word-break: break-all;
    color: #010101;
}

.chat-msgs__status {
    font-weight: 450;
    font-size: 12px;
    line-height: 14px;
    margin-left: auto;
}

.chat-fields__msg {
    width: 100%;
    height: 69px;
    background: #f0f0f0;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    padding-left: 24px;
    font-weight: 450;
    font-size: 18px;
    line-height: 21px;
    color: rgba(0, 0, 0, 0.1);
    border: 0;
}

textarea:focus,
textarea:focus-visible {
    outline: none;
}

.chat-fields__msg::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.1);
}

.chat-fields__msg:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.1);
}

.chat-fields__msg::-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.1);
}

.chat-fields__msg::placeholder {
    color: rgba(0, 0, 0, 0.1);
}

.chat-fields textarea {
    width: 100%;
    height: 6em;
    background: #f0f0f0;
    border-radius: 0px;
    padding: 12px;
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    color: #010101;
    border: 0;
    resize: none;
}

.button_st1 {
    font-size: 18px;
    font-weight: 600;
    color: #c80041;
    border: 2px solid #c80041;
    padding: 6px 30px;
    border-radius: 0px;
    background-color: transparent;
    display: block;
    margin: 24px auto 0;
    cursor: pointer;
    transition: all 200ms ease-in;
}

.button_st1:hover {
    color: #fff;
    background-color: #c80041;
}

.chat-fields__send {
    display: none;
}

.checker_div {
    margin-top: 24px;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.checker_div>div>p {
    font-size: 18px;
    font-weight: 600;
    color: #6e6e6e;
    margin-bottom: 16px;
    line-height: 1em;
}

.checker_div>div>div {
    background: #f0f0f0;
    border-radius: 0px;
    padding: 16px;
    flex-direction: column;
    height: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    min-width: 250px;
    width: 100%;
    color: #fff;
}

.price_checker>div {
    align-items: center;
}

.price_checker>div>p:first-child {
    font-size: 22px;
    font-weight: 600;
    color: #c80041;
}

.price_checker>div>p:last-child {
    color: #6e6e6e;
    font-size: 18px;
}

.examples_ span {
    font-size: 14px;
    font-weight: 400;
    color: #010101;
}

.price_checker,
.examples_ {
    align-self: stretch;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.panel_checker {
    width: 100%;
}

.panel_checker textarea {
    width: 100%;
    border: none;
    height: 227px;
    font-size: 14px;
    font-weight: 400;
    padding: 16px;
    border-radius: 0px;
    resize: none;
    color: #010101;
    background: #f0f0f0;
}

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

.add_bin_conf {
    color: #c80041;
    font-size: 24px;
    cursor: pointer;
}

.flt_list {
    background: #fff;
    border-radius: 0px;
    border: 1px dotted #6e6e6e;
    box-shadow: unset;
    box-sizing: border-box;
    color: #010101;
    cursor: pointer;
    display: flex;
    font-size: 16px;
    font-weight: 500;
    justify-content: left;
    height: 44px;
    padding: 8px 10px;
    position: relative;
    transition: 0.2s;
    width: 100%;
    resize: none;
}

.flt_list:focus {
    height: 132px;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .chat-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .chat-window {
        width: 100%;
    }
}

@media screen and (min-width: 576px) and (max-width: 767px) {
    .chat-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .chat-window {
        width: 100%;
    }
}

@media screen and (min-width: 400px) and (max-width: 575px) {
    .chat-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .chat-window {
        width: 100%;
    }
    .chat-msgs__item {
        width: 100%;
    }
    .chat-msgs__text {
        font-size: 16px;
    }
}

@media screen and (max-width: 399px) {
    .chat-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .chat-window {
        width: 100%;
    }
    .chat-msgs__item {
        width: 100%;
    }
    .chat-msgs__text {
        font-size: 16px;
    }
}



.wallet-wrap,
.favorites-wrap,
.chat-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.wallet-container,
.faq_wind,
.purchases {
    width: 100%;
}
#trans_table_>div{
    overflow-x: auto;

}
.cntrl_pages {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    gap: 8px;
}

.cntrl_pages>p {
    min-width: 60px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.cntrl_pages>p span{
    padding: 0 4px;
    cursor: pointer;
    color: #c80041;
    transition: all 300ms ease;
    font-weight: 500;
    border: 1px dotted #c80041;
    min-width: 28px;
    height: 100%;
    border-radius: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cntrl_pages>div[dots] {
    font-size: 8px;
    color: #c80041;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.cntrl_pages>p[active] span {
    background: #c80041;
    color: #fff;
}

.cntrl_pages>p:not([active]) span:hover {
    color: #fff;
    background-color: #c80041;
}

.wallet-window,
.faq_wind>div {
    background: #f0f0f0;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    padding: 24px;
    margin-bottom: 24px;
}

.wallet-window>p:first-child,
.faq_wind>div>p:first-child,
.withdrawal_form>p:first-child,
.wallet-out__item>p {
    font-weight: 600;
    font-size: 20px;
    color: #010101;
    line-height: 1em;
}

.withdrawal_form label.profile__form-label {
    font-size: 18px;
    font-weight: 700;
    color: #6e6e6e;
    margin-top: 0;
}

.checker_result {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    border-radius: 0px;
    padding: 16px;
    background: #f0f0f0;
    margin-top: 56px;
}

.checker_result h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #010101;
}

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

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

.faq_wind>div>p:first-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
}

.faq_wind>div>p:first-child i {
    font-size: 26px;
    color: #c80041;
    cursor: pointer;
    font-weight: 700;
}

.faq_wind>div>p:last-child {
    font-size: 16px;
    color: #6e6e6e;
    font-weight: 500;
    margin-top: 10px;
}

.wallet-window>p:last-child {
    font-size: 18px;
    color: #c80041;
    font-weight: 700;
    margin-top: 10px;
}

.curr_block {
    display: flex;
    flex-direction: row;
    height: 70px;
    align-items: center;
    width: 220px;
    background: #f0f8ff;
    border-radius: 0px;
    -webkit-box-shadow: 0 4px 9px 0 rgb(103 106 110 / 10%);
    box-shadow: 0 4px 9px 0 rgb(103 106 110 / 10%);
    cursor: pointer;
    transition: all 300ms ease-in;
}

.curr_block:hover {
    transform: translateY(-5px);
}

.curr_block .img_div {
    width: 96px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.curr_block .img_div img {
    height: auto;
}

.info_method {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info_method>p {
    color: black;
    font-size: 14px;
    font-weight: 700;
}

.info_method>span {
    font-size: 18px;
    line-height: 18px;
    color: #878787;
}

.w_48 {
    width: 48px;
}

.wallet-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 40px;
}

.wallet-list__item {
    margin-right: 64px;
}

.wallet-list__item:last-child {
    margin-right: 0;
}

.wallet-list__header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 16px;
}

.wallet-list__img {
    width: 48px;
    height: 48px;
    margin-right: 16px;
}

.wallet-list__count {
    font-style: normal;
    font-weight: 450;
    font-size: 36px;
    line-height: 42px;
    color: #ff6600;
}

.wallet-list__money {
    font-style: normal;
    font-weight: 450;
    font-size: 18px;
    line-height: 21px;
    color: rgba(0, 0, 0, 0.4);
}

.wallet-btns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.wallet-btns__btn {
    margin-right: 16px;
}

.wallet-btns__btn:last-child {
    margin-right: 0;
}

.wallet-btns__button {
    width: 240px;
    height: 53px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #c80041;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    font-style: normal;
    font-weight: 450;
    font-size: 18px;
    line-height: 21px;
    color: #ffffff;
    border: 0;
}

.wallet-btns__button--link:hover {
    color: #ffffff;
}

.wallet-balance__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    background: #f0f0f0;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    padding: 24px;
    margin-bottom: 24px;
}

.wallet-balance__item:last-child {
    margin-bottom: 0;
}

.wallet-balance__adress {
    margin-right: auto;
}

.wallet-balance__title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #ffffff;
    margin-bottom: 10px;
}

.wallet-balance__title-img {
    margin-right: 8px;
}

.wallet-balance__link-wrap {
    background: #101924;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    padding: 12px 16px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.wallet-balance__copy {
    width: 68px;
    height: 33px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-style: normal;
    font-weight: 450;
    font-size: 18px;
    line-height: 21px;
    color: #ffffff;
    background: #c80041;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    border: 0;
}

.wallet-balance__copy-adress {
    width: 461px;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 19px;
    color: rgba(0, 0, 0, 0.4);
    border: 0;
    background-color: transparent;
    word-break: break-all;
    margin-right: 50px;
}

.wallet-balance__qrcode {
    width: 96px;
    height: 96px;
}

.wallet-out__item {
    background: #f0f0f0;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    padding: 24px;
    margin-bottom: 24px;
}

.wallet-out__item:last-child {
    margin-bottom: 0;
}

.wallet-out__adress {
    margin-bottom: 16px;
}

.wallet-out__title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #ffffff;
    margin-bottom: 8px;
}

.wallet-out__title-img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.wallet-out__input {
    width: 494px;
    height: 43px;
    background: #101924;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    padding-left: 16px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: rgba(0, 0, 0, 0.4);
    border: 0;
}

.wallet-out__input::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.wallet-out__input:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.wallet-out__input::-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.wallet-out__input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.wallet-out__sum-wrap {
    margin-bottom: 16px;
}

.wallet-out__sum-title {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #ffffff;
    margin-bottom: 8px;
}

.wallet-out__sum-btc {
    width: 158px;
    margin-right: 8px;
}

.wallet-out__sum-money {
    width: 89px;
}

.wallet-out__pin {
    margin-bottom: 16px;
}

.wallet-out__pin-m {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.wallet-out__pin-title {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #fff;
    margin-bottom: 8px;
}

.wallet-out__pin-input-btc {
    width: 302px;
}

.wallet-out__pin-input--m {
    width: 43px;
    height: 43px;
    margin-right: 8px;
    padding-left: 0;
    text-align: center;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 28px;
    color: #fff;
}

.wallet-out__pin-input--m:focus {
    border: 2px solid #c80041;
}

.wallet-out__pin-input--m:last-child {
    margin-right: 0;
}

.wallet-out__sub {
    width: 101px;
    height: 33px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #c80041;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    font-style: normal;
    font-weight: 450;
    font-size: 18px;
    line-height: 21px;
    color: #ffffff;
    border: 0;
}

.purchases_section {
    background: #f0f0f0;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    padding: 24px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    overflow-x: auto;
}

.n_push {
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    margin-top: 20vh;
}

.purchases_section h3 {
    color: #585858;
    font-size: 22px;
    font-weight: 700;
}

.purchases_section>i {
    margin-left: auto;
    font-size: 26px;
    color: #585858;
    cursor: pointer;
}

.purchases_section table {
    width: 100%;
    overflow-x: auto;
    margin-top: 15px;
}

.purchases_section table tr:first-child,
.purchases_section table tr.purchases_tr.data_:not(:last-child) {
    border-bottom: 1px solid #585858;
}

.purchases_section table tr.purchases_tr:not(.data_) {
    border-bottom: 1px solid #58585829;
}

.purchases_section table th {
    padding: 6px 0;
    font-size: 14px;
    font-weight: 400;
}

.purchases_section table tr:first-child th {
    font-weight: 600;
    font-size: 18px;
}

.purchases_section th[at="country_code"] {
    width: 90px;
    text-align: center;
}

.purchases th[at="data"] {
    color: #c80041;
    font-weight: 600;
}

.purchases th[at="data"]>span {
    word-break: break-word;
    margin-left: 5px;
    cursor: pointer;
}

.wallet-change {
    background: #f0f0f0;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    padding: 24px;
}

.wallet-change__from,
.wallet-change__switch,
.wallet-change__where,
.wallet-change__pin {
    margin-bottom: 16px;
}

.wallet-change__from-title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 8px;
}

.wallet-change__from-title-img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.wallet-change__from-sum {
    width: 640px;
}

.wallet-change__input {
    height: 43px;
    background: #101924;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    padding-left: 16px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: rgba(0, 0, 0, 0.1);
    border: 0;
}

.wallet-change__input::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.1);
}

.wallet-change__input:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.1);
}

.wallet-change__input::-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.1);
}

.wallet-change__input::placeholder {
    color: rgba(0, 0, 0, 0.1);
}

.wallet-change__switch {
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #101924;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    border: 0;
}

.wallet-change__where-title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 8px;
}

.wallet-change__where-title-img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.wallet-change__where-sum {
    width: 640px;
}

.wallet-change__pin-title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 8px;
}

.wallet-change__pin-pin {
    width: 302px;
}

.wallet-change__course {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: rgba(0, 0, 0, 0.4);
    margin-bottom: 16px;
}

.wallet-change__sub {
    width: 113px;
    height: 33px;
    background: #c80041;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    font-style: normal;
    font-weight: 450;
    font-size: 18px;
    line-height: 21px;
    color: #ffffff;
    border: 0;
}

.trans_block {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 10px;
    padding: 20px 0;
}

.trans_block>div {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
    padding-bottom: 12px;
}

.trans_block>div>p {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

.base_list.trans_block>div>p {
    width: 12%;
}

.base_list.trans_block>div>p:nth-child(9),
.base_list.trans_block>div>p:nth-child(10) {
    width: 6%;
}

.base_list.trans_block>div>p:nth-child(6),
.base_list.trans_block>div>p:nth-child(7) {
    width: 7%;
}

.base_list.trans_block>div {
    flex-wrap: wrap;
}

span[w_addr] {
    color: #6e6e6e;
    font-size: 10px;
}

.pending_addition {
    color: #6e6e6e;
    font-weight: 400;
    font-size: 14px;
}

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

.list_pr span:first-child b {
    color: #c80041;
}

.list_pr b {
    font-weight: 600;
    color: #0040c8;
}

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

.top_trans {
    font-size: 18px;
    font-weight: 700;
    color: #6e6e6e;
}

.import_from small {
    color: #c80041;
}

tr[data-col='1'] {
    color: #00c887;
}

tr[data-col='2'] {
    color: #c80041;
}

span.card_result {
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
}

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

.answer_base span[data-info='name'] {
    color: #0040c8;
}

tr[data-col='3'] {
    color: #0040c8;
}

.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;
}

.errors__db p span {
    color: #c80041;
}

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

.bin_pr_conf {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    padding-right: 28px;
}

.bin_pr_conf input {}

#save_auto_p {
    height: 43px;
    padding: 0;
    width: 100px;
    margin: 0 auto;
    display: block;
}

.bin_pr_conf i {
    cursor: pointer;
    font-size: 18px;
    transition: all 200ms ease;
}
.send_button{
    margin-bottom: 24px;
}
#add_bin_pr {
    color: #c80041;
    font-size: 18px;
    cursor: pointer;
    transition: all 200ms ease;
    position: absolute;
    right: 23px;
    top: 1px;
}

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

.product_tr.valid_cc>th:first-child {
    position: relative;
}

.product_tr.valid_cc>th[at="card"]:first-child {
    min-width: 190px;
}

.product_tr.valid_cc>th:first-child::before {
    font-family: "Font Awesome 5 Pro";
    content: "\f336";
    color: #00c887;
    left: 0px;
    position: absolute;
    font-size: 16px;
    top: calc(50% - 13px);
    z-index: 50;
}
.user_id{
    text-transform: uppercase;
    line-height: 21px;
}
.user_id span:last-child{
    color: #c80041;
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
    .wallet-window {
        padding: 16px;
    }
    .wallet-list {
        margin-bottom: 30px;
    }
    .wallet-list__item {
        margin-right: 40px;
    }
    .wallet-list__header {
        margin-bottom: 10px;
    }
    .wallet-list__img {
        width: 34px;
        height: 34px;
        margin-right: 10px;
    }
    .wallet-list__count {
        font-size: 32px;
    }
    .wallet-list__money {
        font-size: 16px;
    }
    .wallet-btns__btn {
        margin-right: 10px;
    }
    .wallet-btns__button {
        width: 220px;
        height: 50px;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .wallet-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .wallet-window {
        padding: 16px;
    }
    .wallet-list {
        margin-bottom: 30px;
    }
    .wallet-list__item {
        margin-right: 40px;
    }
    .wallet-list__header {
        margin-bottom: 10px;
    }
    .wallet-list__img {
        width: 34px;
        height: 34px;
        margin-right: 10px;
    }
    .wallet-list__count {
        font-size: 32px;
    }
    .wallet-list__money {
        font-size: 16px;
    }
    .wallet-btns__btn {
        margin-right: 10px;
    }
    .wallet-btns__button {
        width: 220px;
        height: 50px;
    }
}

@media screen and (min-width: 576px) and (max-width: 767px) {
    .wallet-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .wallet-window {
        padding: 16px;
    }
    .wallet-list {
        margin-bottom: 30px;
    }
    .wallet-list__item {
        margin-right: 40px;
    }
    .wallet-list__header {
        margin-bottom: 10px;
    }
    .wallet-list__img {
        width: 34px;
        height: 34px;
        margin-right: 10px;
    }
    .wallet-list__count {
        font-size: 32px;
    }
    .wallet-list__money {
        font-size: 16px;
    }
    .wallet-btns__btn {
        margin-right: 10px;
    }
    .wallet-btns__button {
        width: 160px;
        height: 50px;
    }
    .wallet-balance__copy-adress {
        width: 220px;
        font-size: 14px;
    }
    .wallet-balance__qrcode {
        margin-top: auto;
        width: 80px;
        height: 80px;
    }
  
    .wallet-change__from-sum {
        width: 480px;
    }
    .wallet-change__where-sum {
        width: 480px;
    }
}

@media screen and (min-width: 400px) and (max-width: 575px) {
    .wallet-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .wallet-window {
        padding: 16px;
    }
    .wallet-list {
        margin-bottom: 30px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .wallet-list__item {
        margin-right: 0px;
    }
    .wallet-list__header {
        margin-bottom: 10px;
    }
    .wallet-list__img {
        width: 34px;
        height: 34px;
        margin-right: 10px;
    }
    .wallet-list__count {
        font-size: 26px;
    }
    .wallet-list__money {
        font-size: 16px;
    }
    .wallet-btns {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .wallet-btns__btn {
        margin-right: 0px;
        margin-bottom: 10px;
    }
    .wallet-btns__btn:last-child {
        margin-bottom: 0;
    }
    .wallet-btns__button {
        width: 160px;
        height: 50px;
    }
    .wallet-balance__item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .wallet-balance__link-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 10px 3px;
    }
    .wallet-balance__copy {
        font-size: 16px;
        width: 90px;
        height: 40px;
    }
    .wallet-balance__copy-adress {
        width: 320px;
        font-size: 14px;
        margin-right: 0px;
        margin-bottom: 15px;
    }
    .wallet-balance__qrcode {
        margin-top: 15px;
        width: 90px;
        height: 90px;
    }
 
    .wallet-out__pin-input-btc {
        width: 200px;
    }
    .wallet-out__input-adress {
        width: 320px;
    }
    .wallet-change__pin-pin {
        width: 200px;
    }
    .wallet-change__from-sum {
        width: 320px;
    }
    .wallet-change__where-sum {
        width: 320px;
    }
}

@media screen and (max-width: 399px) {
    .wallet-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .wallet-window {
        padding: 16px;
    }
    .wallet-list {
        margin-bottom: 30px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .wallet-list__item {
        margin-right: 0px;
    }
    .wallet-list__header {
        margin-bottom: 10px;
    }
    .wallet-list__img {
        width: 34px;
        height: 34px;
        margin-right: 10px;
    }
    .wallet-list__count {
        font-size: 26px;
    }
    .wallet-list__money {
        font-size: 16px;
    }
    .wallet-btns {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .wallet-btns__btn {
        margin-right: 0px;
        margin-bottom: 10px;
    }
    .wallet-btns__btn:last-child {
        margin-bottom: 0;
    }
    .wallet-btns__button {
        width: 160px;
        height: 50px;
    }
    .wallet-balance__item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .wallet-balance__link-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 10px 10px;
    }
    .wallet-balance__copy {
        font-size: 16px;
        width: 90px;
        height: 40px;
    }
    .wallet-balance__copy-adress {
        width: 250px;
        font-size: 14px;
        margin-right: 0px;
        margin-bottom: 15px;
    }
    .wallet-balance__qrcode {
        margin-top: 15px;
        width: 90px;
        height: 90px;
    }

    .wallet-out__pin-input--m {
        width: 40px;
        height: 40px;
    }
    .wallet-out__pin-input-btc {
        width: 200px;
    }
    .wallet-out__input-adress {
        width: 280px;
    }
    .wallet-change {
        padding: 14px;
    }
    .wallet-change__pin-pin {
        width: 200px;
    }
    .wallet-change__from-sum {
        width: 280px;
    }
    .wallet-change__where-sum {
        width: 280px;
    }
}


/* свойства модального окна по умолчанию */

.cust-modal {
    position: fixed;
    /* фиксированное положение */
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    /* цвет фона */
    z-index: 1050;
    opacity: 0;
    /* по умолчанию модальное окно прозрачно */
    -webkit-transition: opacity 200ms ease-in;
    -o-transition: opacity 200ms ease-in;
    transition: opacity 200ms ease-in;
    /* анимация перехода */
    pointer-events: none;
    /* элемент невидим для событий мыши */
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-shadow: 0px 0px 250px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 250px rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 0px;
    border-radius: 0px;
}

.cust-close {
    font-size: 30px;
    position: absolute;
    right: 26px;
    top: -5px;
    color: #fff;
}

.cust-modal:target {
    opacity: 1;
    pointer-events: auto;
    overflow-y: auto;
}

.cust-modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
}

.cust-modal-dialog {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 30px auto;
}

.cust-modal-content {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 0.3rem;
    border-radius: 0.3rem;
    outline: 0;
}

.cust-modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}


/* свойства для заголовка модального окна */

.cust-modal-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid #eceeef;
}

.cust-modal-title {
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 1.25rem;
    font-weight: 500;
}


/* свойства для кнопки "Закрыть" */

.close {
    float: right;
    font-family: sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-shadow: 0 1px 0 #fff;
    opacity: 0.5;
    text-decoration: none;
}

.close:focus,
.close:hover {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    opacity: 0.75;
}

.cust-modal-body {
    position: relative;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 15px;
    overflow: auto;
}

.cust-modal__warn {
    padding: 20px;
}

.cust-modal__warn-title {
    font-size: 28px;
    text-align: center;
    margin-bottom: 10px;
}

.cust-modal__warn-text {
    margin-bottom: 10px;
}

.cust-modal__warn-link {
    width: 150px;
    height: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #c80041;
    color: #fff;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    margin: 0 auto;
}

.cust-modal__warn-link:hover {
    color: #fff;
}

@media screen and (min-width: 576px) and (max-width: 767px) {
    .cust-modal__warn-title {
        font-size: 24px;
    }
    .cust-modal__warn-text {
        font-size: 14px;
        text-align: center;
    }
}

@media screen and (min-width: 400px) and (max-width: 575px) {
    .cust-modal__warn-title {
        font-size: 24px;
    }
    .cust-modal__warn-text {
        font-size: 14px;
        text-align: center;
    }
}

@media screen and (max-width: 399px) {
    .cust-modal__warn-title {
        font-size: 20px;
    }
    .cust-modal__warn-text {
        font-size: 14px;
        text-align: center;
    }
}

.more_info {
    display: none;
}

.cust-modal__buy-content {
    padding: 24px;
}

.cust-modal__buy-title {
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 8px;
    text-align: center;
}

.cust-modal__buy-text {
    font-style: normal;
    font-weight: 450;
    font-size: 16px;
    line-height: 19px;
    color: rgba(0, 0, 0, 0.4);
    margin-bottom: 24px;
    text-align: center;
}

.cust-modal__buy-list {
    margin-bottom: 24px;
}

.cust-modal__buy-item {
    margin-bottom: 24px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.cust-modal__buy-item:last-child {
    margin-bottom: 0;
}

.cust-modal__buy-label {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 8px;
}

.cust-modal__buy-input {
    width: 302px;
    height: 43px;
    background: #101924;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    padding-left: 16px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: rgba(0, 0, 0, 0.4);
    border: 0;
}

.cust-modal__buy-input::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.cust-modal__buy-input:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.cust-modal__buy-input::-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.cust-modal__buy-input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.cust-modal__buy-sub {
    width: 302px;
    height: 56px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-style: normal;
    font-weight: 450;
    font-size: 18px;
    line-height: 21px;
    margin-bottom: 16px;
    border: 0;
}

.cust-modal__buy-sub:last-child {
    margin-bottom: 0;
}

.cust-modal__buy-sub-icon {
    margin-right: 6px;
}

.cust-modal__buy-sub--btc {
    color: #F7931A;
    background: rgba(247, 147, 26, 0.1);
}

.cust-modal__buy-sub--m {
    background: rgba(255, 102, 0, 0.1);
    color: #FF6600;
}

.cust-modal__buy-sub-price {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 10px;
}

.header-burger__logo {
    width: 132px;
    height: auto;
    display: block;
    margin: 70px auto 30px;
    z-index: 90;
    position: relative;
}

@media screen and (min-width: 576px) and (max-width: 767px) {
    .cust-modal__buy-content {
        padding: 12px;
    }
    .cust-modal__buy-title {
        font-size: 22px;
        margin-bottom: 4px;
    }
    .cust-modal__buy-text {
        margin-bottom: 12px;
    }
    .cust-modal__buy-label {
        font-size: 14px;
        margin-bottom: 4px;
    }
    .cust-modal__buy-input {
        height: 40px;
    }
    .cust-modal__buy-list {
        margin-bottom: 12px;
    }
    .cust-modal__buy-item {
        margin-bottom: 12px;
    }
    .cust-modal__buy-sub {
        height: 40px;
        font-size: 16px;
    }
    .cust-modal__buy-sub-price {
        font-size: 16px;
    }
}

@media screen and (min-width: 400px) and (max-width: 575px) {
    .cust-modal__buy-content {
        padding: 12px;
    }
    .cust-modal__buy-title {
        font-size: 22px;
        margin-bottom: 4px;
    }
    .cust-modal__buy-text {
        margin-bottom: 12px;
    }
    .cust-modal__buy-label {
        font-size: 14px;
        margin-bottom: 4px;
    }
    .cust-modal__buy-input {
        height: 40px;
    }
    .cust-modal__buy-list {
        margin-bottom: 12px;
    }
    .cust-modal__buy-item {
        margin-bottom: 12px;
    }
    .cust-modal__buy-sub {
        height: 40px;
        font-size: 16px;
    }
    .cust-modal__buy-sub-price {
        font-size: 16px;
    }
}

@media screen and (max-width: 399px) {
    .cust-modal__buy-content {
        padding: 12px;
    }
    .cust-modal__buy-title {
        font-size: 22px;
        margin-bottom: 4px;
    }
    .cust-modal__buy-text {
        margin-bottom: 12px;
    }
    .cust-modal__buy-label {
        font-size: 14px;
        margin-bottom: 4px;
    }
    .cust-modal__buy-input {
        width: 280px;
        height: 40px;
    }
    .cust-modal__buy-list {
        margin-bottom: 12px;
    }
    .cust-modal__buy-item {
        margin-bottom: 12px;
    }
    .cust-modal__buy-sub {
        width: 280px;
        height: 40px;
        font-size: 16px;
    }
    .cust-modal__buy-sub-price {
        font-size: 16px;
    }
}

.cust-modal__suc-content {
    width: 350px;
    padding: 24px;
}

.cust-modal__suc-img {
    width: 65px;
    height: 65px;
    margin: 0 auto 16px;
}

.cust-modal__suc-title {
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 8px;
    text-align: center;
}

.cust-modal__suc-text {
    font-style: normal;
    font-weight: 450;
    font-size: 16px;
    line-height: 19px;
    color: rgba(0, 0, 0, 0.4);
    margin-bottom: 16px;
    text-align: center;
}

.cust-modal__suc-link {
    text-align: center;
    font-style: normal;
    font-weight: 450;
    font-size: 16px;
    line-height: 19px;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    color: #c80041;
}

.cust-modal__suc-desc {
    width: 274px;
    font-style: normal;
    font-weight: 450;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: rgba(0, 0, 0, 0.4);
    margin: 0 auto 16px;
}

.cust-modal__suc-download {
    width: 302px;
    height: 53px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background: #c80041;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    font-style: normal;
    font-weight: 450;
    font-size: 18px;
    line-height: 21px;
    color: #ffffff;
}

.cust-modal__suc-download:hover {
    color: #ffffff;
}

@media screen and (min-width: 576px) and (max-width: 767px) {
    .cust-modal__suc-content {
        width: 300px;
        padding: 18px;
    }
    .cust-modal__suc-img {
        width: 55px;
        height: 55px;
        margin-bottom: 10px;
    }
    .cust-modal__suc-title {
        font-size: 20px;
        margin-bottom: 0px;
    }
    .cust-modal__suc-text {
        margin-bottom: 6px;
    }
    .cust-modal__suc-desc {
        font-size: 14px;
    }
    .cust-modal__suc-download {
        width: 260px;
        height: 40px;
    }
}

@media screen and (min-width: 400px) and (max-width: 575px) {
    .cust-modal__suc-content {
        width: 300px;
        padding: 18px;
    }
    .cust-modal__suc-img {
        width: 55px;
        height: 55px;
        margin-bottom: 10px;
    }
    .cust-modal__suc-title {
        font-size: 20px;
        margin-bottom: 0px;
    }
    .cust-modal__suc-text {
        margin-bottom: 6px;
    }
    .cust-modal__suc-desc {
        font-size: 14px;
    }
    .cust-modal__suc-download {
        width: 260px;
        height: 40px;
    }
}

@media screen and (max-width: 399px) {
    .cust-modal__suc-content {
        width: 300px;
        padding: 18px;
    }
    .cust-modal__suc-img {
        width: 55px;
        height: 55px;
        margin-bottom: 10px;
    }
    .cust-modal__suc-title {
        font-size: 20px;
        margin-bottom: 0px;
    }
    .cust-modal__suc-text {
        margin-bottom: 6px;
    }
    .cust-modal__suc-desc {
        font-size: 14px;
    }
    .cust-modal__suc-download {
        width: 260px;
        height: 40px;
    }
}


/*# sourceMappingURL=style.css.map */

.profile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.profile__avatar {
    width: 106px;
    object-fit: cover;
    height: 106px;
    border-radius: 50%;
}

.profile__content {
    flex: 1;
}

.profile__form {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 24px;
    border-radius: 0px;
    background-color: #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.withdrawal_form {
    gap: 0;
    padding: 0;
}

.cr_name[data-curr='eth'] img {
    background: #c80041;
    border-radius: 50%;
}

.col-withdrawal {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-wrap: nowrap;
}

.profile__form-submit.send_withdrawal {
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 100px;
    margin: 0;
}

.profile__form-theme {
    margin-top: 24px;
}

.profile__form-alert {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    flex: 1;
    align-items: center;
}

.profile__form-alert__text {
    color: #6e6e6e;
    font-size: 14px;
    font-weight: 500;
    margin-left: 8px;
}

.profile__form-container {
    margin-right: 24px;
}

.profile__form-container:last-child {
    margin-right: 0;
}

.profile__form-header {
    font-size: 20px;
    font-weight: 700;
}

.profile__form-subhead {
    font-size: 16px;
    color: #6e6e6e;
    margin-top: 4px;
    font-weight: 500;
}

.profile__form-label {
    margin-top: 12px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.profile__form-file {
    width: 100%;
    font-size: 14px;
    transition: all 400ms ease;
    color: #6e6e6e;
    padding: 12px 12px;
    border-radius: 0px;
    background-color: #101924;
}

.profile__form-file__input {
    width: 0;
    height: 0;
}

.profile__form-radios {
    margin-top: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.profile__form-radio {
    margin-right: 16px;
}

.profile__form-radio:last-child {
    margin-right: 0;
}

.profile__form-radio__unchecked label {
    color: #6e6e6e;
}

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

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

.import_from label .delete_price:hover,
.bin_pr_conf i:hover {
    opacity: .7;
}

.import_buttons button {
    font-size: 16px;
    font-weight: 600;
    padding: 8px 10px;
    border-radius: 0px;
    border: 2px solid #c80041;
    min-width: 140px;
    transition: all 200ms ease-in;
    text-transform: uppercase;
}

.import_buttons button.send_base:hover,
.import_buttons button.upd_price:hover,
.import_buttons button.send_withdrawal:hover {
    background-color: transparent;
    color: #c80041;
}

.import_buttons button.upload_base:hover {
    background-color: #c80041;
    color: #fff;
}

.send_base,
.send_withdrawal {
    background: #c80041;
    color: #fff;
    margin-left: auto;
    display: block;
}

.upd_price {
    color: #fff;
    background-color: #c80041;
}

.upload_base {
    background: transparent;
    color: #c80041;
}

.addition_tbl table {
    width: 100%;
    margin: 20px 0 0;
}

.addition_tbl th,
.addition_tbl td {
    width: 33.3%;
    padding: 8px 0;
    line-height: 1em;
    vertical-align: middle;
}

.swal2-html-container {
    color: #6e6e6e!important;
}

.prices_level .col-sm-2 label.profile__form-label {
    padding-right: 16px;
}

.prices_level .col-sm-2 label.profile__form-label div {
    overflow: hidden;
    white-space: nowrap;
}

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

.price_range input {
    background: #fff;
    border-radius: 0px;
    border: 1px dotted #6e6e6e;
    color: #010101;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    height: 44px;
    padding: 8px 10px;
    transition: 0.2s;
    width: 100%;
}

.clear_file {
    color: #c80041;
    font-size: 22px;
    line-height: 40px;
    vertical-align: bottom;
    cursor: pointer;
    margin-left: 16px;
    transition: all 200ms ease;
}

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

.wallet-window>p.not_access {
    margin: auto;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    padding: 102px 0 101px;
    font-size: 18px;
}

.profile__form-inputs {
    margin-top: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.profile__form-inputs li {
    width: 47%;
}

.profile__form-inputs li:nth-child(2),
.profile__form-inputs li:nth-child(4) {
    margin-left: 24px;
}

.profile__form-input {
    width: 100%;
    border: none;
    font-size: 14px;
    padding: 11px 8px;
    border-radius: 0px;
    background: #fff;
    color: #010101;
    transition: all 200ms ease;
}

.profile__form-submit {
    height: 52px;
    width: 100%;
    margin-top: 24px;
    text-align: center;
    padding: 12px;
    color: #fff;
    border-radius: 0px;
    border: 2px dotted #c80041;
    background-color: #c80041;
    transition: all 200ms ease-in;
    text-transform: uppercase;
}

.profile__form-submit:hover {
    background-color: transparent;
    color: #c80041;
}

.profile__forms {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 0;
}

.profile__user {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.profile__name {
    font-size: 32px;
}

.profile__name-container {
    margin-left: 32px;
}

.profile__settings {
    border: none;
    margin-top: 12px;
    font-size: 14px;
    color: #101924;
    padding: 8px 16px;
    border-radius: 0px;
    background-color: #c80041;
    pointer-events: none;
}

.profile__settings:hover {
    -webkit-box-shadow: 0px 8px 48px 1px rgba(82, 115, 251, 0.25);
    box-shadow: 0px 8px 48px 1px rgba(82, 115, 251, 0.25);
}

.purchases_tr.data_ .badge {
    background: black;
    color: #fff;
    font-size: 12px;
    padding: 4px 6px;
    font-weight: 600;
}

.purchases_tr.data_ .badge.valid_ {
    background-color: #00c887;
}

.purchases_tr.data_ .badge.invalid_ {
    background-color: #ff4646;
}

.purchases_tr.data_ div[checker] {}

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

.badge_[t='sale'] {
    color: #00c887;
}

.badge_[t='pending'] {
    color: #0040c8;
}

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

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

.ctg_base {
    font-style: normal;
    font-weight: 450;
    font-size: 18px;
    line-height: 18px;
    color: rgba(0, 0, 0, 0.4);
    transition: all 100ms ease;
    position: relative;
}

.ctg_base.active {
    color: #c80041;
}

.ctg_base.active::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #c80041;
    bottom: 0;
}

button.check_cc {
    color: #fff;
    background-color: #c80041;
    transition: all 200ms ease;
    cursor: pointer;
}

button.check_cc:hover {
    color: #c80041;
    background-color: transparent;
}

.details_cc {
    gap: 8px;
    column-gap: 0;
}

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

.details_cc p span:hover {
    color: #6e6e6e;
}

.details_cc p span.cop_ {
    color: #0040c8;
}

.product_tr.selected_ {
    background: #fff;
}

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

@media screen and (max-width: 996px) {
    .profile {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .profile__content {
        margin-left: 0;
    }
    .profile__form-avatar {
        width: 50%;
    }
    .profile__form-container {
        margin-right: 0;
    }

    .profile__form-theme {
        width: 50%;
        margin-top: 0;
        margin-left: 24px;
    }
    .profile__form-password {
        width: 100%;
        margin-top: 24px;
    }
    .profile__forms {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .products-params__item.main_li,.products-params__item.item_50 {
        width: 100%;
        margin-top: 0;
    }
    .search_cont {
        display: flex;
        align-items: center;
    }
}

@media screen and (max-width: 768px) {
    .profile__form-avatar {
        width: 100%;
    }
    .profile__form-container {
        margin-right: 0;
    }

    .profile__form-theme {
        width: 100%;
        margin-top: 24px;
        margin-left: 0;
    }
    .profile__form-password {
        width: 100%;
        margin-top: 24px;
    }
}

@media screen and (max-width: 460px) {
    .profile__form-inputs li {
        width: 100%;
        margin-left: 0 !important;
    }
}

.profile-menu {
    width: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    background: #ffffff;
    border-radius: 0px;
    padding: 0;
    margin-bottom: 24px;
}

.profile-menu .profile-menu__menu {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.profile-menu .profile-menu__menu .profile-menu__item {
    margin: 0;
    background: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    flex: 1;
}

.profile-menu__title {
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: #010101;
    margin-bottom: 10px;
}

.profile-menu__item {
    margin-bottom: 8px;
}

.profile-menu__item:last-child {
    margin-bottom: 0;
}

.profile-menu__link {
    font-style: normal;
    font-weight: 450;
    font-size: 16px;
    line-height: 16px;
    color: #c80041;
    position: relative;
    transition: all 150ms ease-in;
}

.profile-menu__link--active::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #c800418c;
    bottom: 0;
}

.import_txt.chat-fields textarea {
    background-color: #fff;
    border-radius: 0px;
    font-size: 12px;
    padding: 8px;
    height: 300px;
    overflow: auto;
    color: #010101;
    line-height: 1.2em;
    box-shadow: unset;
}

.products-list__item .show_count[empty_res],
.cntrl_pages>p[empty_res] {
    color: #6e6e6e;
    border-color: #6e6e6e;
    pointer-events: none;
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  
    .profile-menu__title {
        font-size: 18px;
        margin-bottom: 2px;
    }
    .profile-menu__item {
        margin-bottom: 2px;
    }
   
}

@media screen and (min-width: 768px) and (max-width: 991px) {
   
    .profile-menu__menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .profile-menu__item {
        margin-right: 10px;
    }
    .profile-menu__item:last-child {
        margin-right: 0;
    }
    .profile-menu__title {
        font-size: 22px;
        margin-bottom: 10px;
    }
    .profile-menu__item {
        margin-bottom: 2px;
    }
    .profile-menu__link {
        font-size: 18px;
    }
}

@media screen and (min-width: 576px) and (max-width: 767px) {
 
    .profile-menu__menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .profile-menu__item {
        margin-right: 10px;
    }
    .profile-menu__item:last-child {
        margin-right: 0;
    }
    .profile-menu__title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .profile-menu__item {
        margin-bottom: 2px;
    }
    .profile-menu__link {
        font-size: 16px;
    }
}

@media screen and (min-width: 400px) and (max-width: 575px) {
  
    .profile-menu__menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .profile-menu__item {
        margin-right: 10px;
        padding: 8px;
    }
    .profile-menu__item:last-child {
        margin-right: 0;
    }
    .profile-menu__title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .profile-menu__item {
        margin-bottom: 2px;
    }
    .profile-menu__link {
        font-size: 16px;
    }
}

.prods__alert-icon,
.blocked__alert-icon {
    width: 24px;
    height: 24px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

@media screen and (max-width: 399px) {
   
    .profile-menu__menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .profile-menu__item {
        margin-right: 0px;
        padding: 6px;
    }
    .profile-menu__item:last-child {
        margin-right: 0;
    }
    .profile-menu__title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .profile-menu__item {
        margin-bottom: 0px;
    }
    .profile-menu__link {
        font-size: 16px;
    }
}

body.darkness {}

.select-wrapper {
    margin: auto;
    max-width: 600px;
    width: calc(100% - 40px);
}

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

.select-pure__options {
    border-radius: 0px;
    border: 1px dotted #6e6e6e;
    box-shadow: 6px 5px 4px 2px #e3e3e3;
    box-sizing: border-box;
    color: #363b3e;
    display: none;
    left: 0;
    max-height: 229px;
    overflow-y: auto;
    position: absolute;
    top: calc(100% + 1px)!important;
    z-index: 5;
    border-top: unset;
    left: -1px;
    right: -1px;
}

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

.select-pure__option {
    background: #f0f0f0;
    border-bottom: 1px solid #dbdbdb;
    box-sizing: border-box;
    line-height: 25px;
    padding: 10px;
    color: #010101;
    transition: all 200ms ease-in;
}

.select-pure__option:hover {
    color: var(--primary);
}

.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: #fff;
    border-radius: 0px;
    color: #c80041;
    cursor: initial;
    display: inline-block;
    margin: 0;
    padding: 3px 7px;
}

.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;
}

.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: #6e6e6e;
}

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

.purchases {
    width: 100%;
}

.purchases .products-filter,
.purchases .products-list__item {
    padding: 24px;
}

.c_tbl {
    width: 100%;
    color: #010101;
    margin: 20px 0 24px;
    min-width: 600px;
}

.c_tbl th,
.c_tbl td {
    padding: 8px 0;
    line-height: 1em;
    vertical-align: middle;
}

.c_tbl thead tr,
.addition_tbl thead tr {
    border-bottom: 1px dotted #6e6e6e;
    border-top: 1px dotted #6e6e6e;
}

.c_tbl tbody>tr:not(:last-child):not([bord]),
.addition_tbl tbody>tr:not(:last-child) {
    border-bottom: 1px solid #dbdbdb;
}

.c_tbl[data-table='databases'] td[t='name'] {
    text-transform: uppercase;
    color: #c80041;
}

.c_tbl[data-table='databases'] td[t='date'] {
    color: #6e6e6e;
}

.c_tbl[data-table='databases'] td[t='cards'],
.c_tbl[data-table='databases'] td[t='sale'],
.c_tbl[data-table='databases'] td[t='sold'] {
    font-weight: 700;
}

.c_tbl[data-table='databases'] td[t='prof'] {
    color: #00c887;
    font-weight: 700;
}

.c_tbl[data-table='databases'] td[t='proc'] {
    color: #0040c8;
}

.c_tbl[data-table='databases'] td[t='act'] {
    text-transform: uppercase;
    width: 200px;
}

.c_tbl[data-table='databases'] td[t='act'] div {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0px;
    column-gap: 20px;
}

.show_base_info {
    color: #0040c8;
    font-size: 15px;
    transition: all 150ms ease-in;
    cursor: pointer;
}

.show_base_info:hover {
    transform: scale(1.2);
}

.more_info.open_ {
    display: table-row;
}

.no_border {
    border-color: transparent!important;
}

.c_tbl[data-table='transactions'] th,
.c_tbl[data-table='transactions'] td {
    width: 33.3%;
}

.t_trans {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 800;
}

.products-params p.products_param_label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    margin-left: 4px;
}

.header-btns__item .fa-shopping-cart {
    font-size: 18px;
    margin-bottom: 2px;
}

.shadow_inp {
    box-shadow: #e5e5e5 6px 4px 2px 2px;
}

.products-filter,
.products-list__item,
.checker_div>div>div,
.panel_checker textarea,
.orders__table,
.profile-menu .profile-menu__menu .profile-menu__item,
.wallet-window,
.faq_wind>div,
.wallet-out__item,
.checker_result,
.profile__form,
.chat-fields textarea {
    box-shadow: 6px 5px 4px 2px #e3e3e3;
}

form.withdrawal_form {
    box-shadow: unset;
}

th[no_elems] {
    color: #6e6e6e;
    text-align: center;
    text-transform: uppercase;
    font-weight: 200;
    padding-top: 32px;
}
.header-burger__wrap .header-btns{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    column-gap: 36px;
    margin-bottom: 28px;

}

@media (max-width: 1000px) {
    .pr_cart th[at] {
        min-width: 120px;
    }
    .cart_table {
        overflow-x: auto;
    }
    .panel_cart {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }
    .total_price {
        align-items: center;
    }

}

@media (max-width: 991px) {
    .products-filter__container {
        overflow: visible;
    }
    .header-burger__btns {
        justify-content: center;
        gap: 36px;
    }
   
    .header-wrap {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        flex-direction: row;
        flex-wrap: nowrap;
    }
    .products-params__item {
        margin-right: 0;
        width: 48%;
    }
    .header-burger__menu-btn {
        position: relative;
        top: 0;
        left: 0;
    }
    .header-burger__menu {
        margin-right: auto;
    }
    .products-filter__categories-params.products-params {
        display: flex;
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: space-between;
    }
    .products-filter {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
    }
    .counts_page_len {
        justify-content: center;
        margin-bottom: 0;
        gap: 10px;
    }
    .counts_page_len div {
        margin-bottom: 0;
        text-align: center;
    }
    .products-params__sub {
        height: 32px;
        width: 136px;
        order: 5;
    }
    .search_cont {
        margin-left: auto;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
    }
    .clear {
        margin: 0;
        margin-bottom: 14px;
    }
 
    .auth__title {
        text-align: center;
    }
  
    .header-main-menu{
        display: none;
    }
    .r-menu{
        width: 100%;
    }
    .header-user__menu-wrap {
        top: 41px
    }
    .footer_links{
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
    }
    main{
        min-height: calc(100vh - 160px);
    }
    .products-params__item.main_li>div{
        width: 100%;

    }
    .search_cont, .counts_page_len{
        display: flex;
        flex-direction: row;
        justify-content: space-around;
    }
    .user_key_footer{
        text-align: center;
        width: 100%;
        padding: 20px 0;
    }
    .footer_{
        gap: 0px;
    }
}

@media (max-width: 767px) {
    .cust-select__text-selected {
        font-size: 14px;
    }
    .cust-select__arrow {
        width: 20px;
        height: 20px;
        right: 4px;
    }
    .buttons_cart{
        order: 5;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .total_price {
        width: auto;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .counts_page_len {
        width: 100%!important;
        margin: auto;
        margin-bottom: 10px;
    }
    .search_cont {
        width: 100%!important;
        margin: auto;
        align-items: center;
        flex-wrap: nowrap;
        gap: 16px;
    }
    .clear {
        margin: 0;
    }
    .products-params__item {
        width: 100%;
    }
    .auth {
        padding: 40px 0;
    }
    main .dual-listbox__buttons{
        display: flex;
        flex-direction: column!important;
        flex-wrap: wrap;
        gap: 16px;
    }
    .dual-listbox .dual-listbox__button{
        width: 140px;
    }
    .import_buttons .row .col-sm-6{
        display: flex;
        justify-content: center;
        flex-wrap: nowrap;
    }
    .send_base, .send_withdrawal{
        margin: 0;
    }
    .import_buttons .row{
        gap: 16px;
    }
}