@import url('https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Onest", sans-serif;
    color:#141414;
    background-color: #F6F7FB;
    font-size: 15px;
} 

a {
    text-decoration: none;
}

a:hover {
    transition: all 0.3s ease;
}

.btn-blue { 
    background-color: #D9F0FF;
    color:#0B5DD7;
    display: flex;
    border-radius: 8px;
    height: 32px;
    padding:0 5px;
    vertical-align:middle;
    font-weight: 600;
}
    .btn-blue:hover {
        background-color: #BEE5FF;
    }

.btn-dark-blue { 
    background-color: #0B5DD7;
    color:#ffffff;
    display: flex;
    border-radius: 8px;
    height: 32px;
    padding:0 5px;
    vertical-align:middle;
    font-weight: 600;
}
    .btn-dark-blue:hover {
        background-color: #1D63C7;
    }

.btn-gray { 
    background-color: #F5F7FA;
    color:#627383;
    display: flex;
    border-radius: 8px;
    height: 32px;
    padding:0 5px;
    vertical-align:middle;
    font-weight: 600;
}
    .btn-gray:hover {
        background-color: #E9EEF4;
    }

.btn-blue--detail-more {
    box-sizing: border-box;
    width: 101px;
    height: 32px;
    align-items: center;
    justify-content: center;
}

.status-blue-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    background-color: #D9F0FF;
    color: #0B5DD7;
    font-weight: 600;
    padding: 3px 5px;
    border-radius: 4px;
    line-height: 1;
}

.status-gray-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    max-width: 100%;
    background-color: #F5F7FA;
    color: #627383;
    font-weight: 600;
    padding: 3px 5px;
    border-radius: 4px;
    line-height: 1.2;
    white-space: normal;
}

.btn-blue--orders-period {
    box-sizing: border-box;
    min-height: 32px;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    font-size: 14px;
    font-weight: 600;
}

.btn-blue--detail-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
}

.main-container {
    /* width: 1697px; */
}

.header-block {
    width: 100%;

    background-color: #D9F0FF;
}
.header-content {
    max-width: 1649px;
    min-width: 1318px;
    height: 80px;
    padding:0 24px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo a{
    background-image: url('../img/logo.svg');
    display: block;
    width: 228px;
    height: 40px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo__admin {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
}

.header-block--admin {
    background-color: #141414;
}

.header-block--admin .header-nav-menu li a {
    color: #ffffff;
}

.header-block--admin .header-nav-menu--active {
    color: #0B5DD7 !important;
}

.header-nav-menu {
    display: flex;
    gap: 45px;
}
.header-nav-menu li{
    list-style-type: none;
} 
.header-nav-menu li a{
    text-decoration: none;
    color:#141414;
    font-size: 16px;
    font-weight: 500;
} 
    .header-nav-menu li a:hover {
        color:#0B5DD7 !important;
        transition: all 0.3s ease;
    }
.header-nav-menu--active {
    background-color: #ffffff;
    padding:10px 20px;
    border-radius: 6px;
    color:#0B5DD7 !important;
}

.header-profile-icon {
    width: 42px;
    height: 42px;
    background-color: #0B5DD7;
    border-radius: 21px;
    display: block;
}

.content-block {
    max-width: 1649px;
    min-width: 1318px;  
    padding:24px;
    margin: 0 auto;
    display: flex;
}
.left-nav {
    width: 259px;
    flex: 0 0 259px;
    padding-right: 24px;
}
.left-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style-type: none;
}
.left-nav-menu li {
    list-style-type: none;
}
.left-nav-menu li a{
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 42px;
    box-sizing: border-box;
    color:#141414;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding:10px 12px;
    border-radius: 6px;
}
.left-nav-menu li a:hover{
    background-color: #EEF7FF;
    color:#0B5DD7;
}
.left-nav-menu li a i {
    width: 20px;
    font-size: 18px;
    line-height: 1;
    text-align: center;
}
.left-nav-submenu {
    display: grid;
    gap: 4px;
    margin: 4px 0 0 42px;
    list-style-type: none;
}
.left-nav-menu .left-nav-submenu li a {
    min-height: 32px;
    padding: 7px 10px;
    font-size: 14px;
    color: #6C6B6D;
}
.left-nav-menu .left-nav-submenu li a:hover {
    color: #0B5DD7;
}
.left-nav-submenu--active {
    background-color: #EEF7FF;
    color: #0B5DD7 !important;
    font-weight: 600 !important;
}
.left-nav-menu--active {
    background-color: #0B5DD7;
    color:#ffffff !important;
}
.left-nav-menu--active:hover {
    background-color: #0B5DD7 !important;
    color:#ffffff !important;
}
.main-content {
    min-width: 1318px;
    background-color: #ffffff;
    border-radius: 14px;
    padding:24px;
}

.table-block table, tr, th, td{
    border-collapse: separate;
    border-spacing: 0;
}

.table-filters {
    display: flex;
    align-items: end;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.table-filters--transactions {
    flex-wrap: wrap;
    align-items: flex-end;
}

.table-filters--transactions .table-filters__search {
    flex-basis: 360px;
}

.table-filters--transactions .table-filters__controls {
    flex-wrap: wrap;
}

.table-filters--catalog-products {
    flex-wrap: wrap;
}

.table-filters--catalog-products .table-filters__search {
    flex: 1 1 auto;
}

.table-filters--catalog-products .table-filters__controls {
    flex: 1 1 100%;
    width: 100%;
    flex-wrap: wrap;
}

.table-filters--catalog-products .table-filters__field {
    flex: 0 0 170px;
}

.table-filters__search {
    flex: 1 1 auto;
    min-width: 280px;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 34px;
    padding: 0 12px;
    border: 1px solid #E8EBEF;
    border-radius: 6px;
    background-color: #ffffff;
    color: #6C6B6D;
}

.table-filters__search input {
    width: 100%;
    border: 0;
    outline: 0;
    color: #141414;
    font: inherit;
}

.table-filters__search input::placeholder {
    color: #9AA1AC;
}

.table-filters__controls {
    display: flex;
    align-items: end;
    gap: 10px;
    flex: 1 1 100%;
    width: 100%;
}

.table-filters__field {
    display: grid;
    gap: 5px;
    flex: 1 1 0;
    min-width: 170px;
    color: #6C6B6D;
    font-size: 12px;
    font-weight: 500;
}

.table-filters__field select,
.table-filters__field input {
    box-sizing: border-box;
    width: 100%;
    height: 34px;
    padding: 0 32px 0 10px;
    border: 1px solid #E8EBEF;
    border-radius: 6px;
    background-color: #ffffff;
    color: #141414;
    font: inherit;
    font-size: 14px;
    outline: 0;
}

.table-filters__field select:disabled {
    color: #9AA1AC;
    background-color: #F6F7FB;
    cursor: not-allowed;
}

.table-filters__field--date {
    min-width: 145px;
}

.table-filters__field--small {
    min-width: 120px;
}

.table-filters__group {
    display: flex;
    align-items: end;
    gap: 10px;
    min-width: 350px;
    padding: 0;
    border: 0;
}

.table-filters__group legend {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.table-filters__group .table-filters__field {
    min-width: 165px;
}


.table-filters__search:focus-within,
.table-filters__field select:focus,
.table-filters__field input:focus {
    border-color: #0B5DD7;
}

.table-filters__submit {
    height: 34px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 12px;
    border: 0;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.table-filters__reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid #E8EBEF;
    border-radius: 6px;
    background-color: #ffffff;
    color: #6C6B6D;
    cursor: pointer;
}

.table-filters__reset:hover {
    border-color: #BEE5FF;
    background-color: #EEF7FF;
    color: #0B5DD7;
}

.table-results-count {
    margin: -34px 0 16px;
    color: #6C6B6D;
    font-size: 14px;
    font-weight: 500;
}

.table-content {
    width: 100%;
    table-layout: fixed;
}

/* Ширины колонок table-content */
.table-content__col-id {
    width: 60px;
    padding-left:5px;
}

.table-content__col-image {
    width: 60px;
}

/* Колонка "Наименование" занимает 100% оставшегося места. Ширину не задавать. */
.table-content__col-name {
    text-decoration: none;
    font-weight: 600;
    color:#141414;
}

a.table-content__col-name:hover {
    color:#0B5DD7;
}
.btn-green {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    background-color: #E6FDEC;
    color: #00C451;
    font-weight: 600;
    padding:3px 5px;
    border-radius: 4px;
    line-height: 1;
}

.btn-green--detail-value {
    min-height: 24px;
}
.table-content__status-active {
    background-color: #E6FDEC;
    color: #00C451;
    font-weight: 600;
    padding:3px 5px;
    border-radius: 4px;
}
.table-content__status-archive {
    color:#F4AF19;
    background-color: #FFF8E6;
    border-radius: 4px;
    padding: 3px 5px;
    font-weight: 600;
}
.table-content__status-noactive {
    color: #6C6B6D;
    background-color: #F6F7FB;
    font-weight: 600;
    padding:3px 5px;
    border-radius: 4px;
}

.table-content__col-wholesale-price {
    width: 105px;
}

.table-content__col-marketplace-price {
    width: 130px;
}

.table-content__col-fbo-invest {
    width: 100px;
}

.table-content__col-fbs-invest,
.table-content__col-rfbs-invest {
    width: 100px;
}

.table-content__col-status {
    width: 100px;
}

.table-content__col-fbo-stock {
    width: 100px;
}

.table-content__col-fbs-stock {
    width: 100px;
}

.table-content__col-updated-at {
    width: 100px;
}

.table-content-orders__col-id {
    width: 70px;
}

.table-content-orders__col-type {
    width: 160px;
}

.table-content-orders__col-order {
    width: 170px;
}

.table-content-orders__col-status {
    width: 130px;
}

.table-content-orders__col-product {
    width: 100%;
}

.table-content-orders__col-quantity {
    width: 70px;
}

.table-content-orders__col-date {
    width: 120px;
}

.table-content-orders__col-action {
    width: 121px;
}

.table-content-order-products__col-name {
    width: auto;
}

.table-content-order-products__col-quantity {
    width: 64px;
}

.table-content-order-products__col-wholesale-price {
    width: 112px;
}

.table-content-order-products__col-marketplace-price {
    width: 140px;
}

.table-content-order-products__col-paid {
    width: 140px;
}

.table-content-order-products__col-coinvest {
    width: 110px;
}

.table-content-order-products__col-commission {
    width: 110px;
}

.table-content-order-products__col-economy {
    width: 145px;
}

.table-content-order-products__col-status {
    width: 115px;
}

.table-content-order-transactions__col-id {
    width: 90px;
}

.table-content-order-transactions__col-name {
    width: 360px;
}

.table-content-order-transactions__col-quantity {
    width: 64px;
}

.table-content-order-transactions__col-service-group {
    width: 160px;
}

.table-content-order-transactions__col-accrual-type {
    width: 520px;
    min-width: 520px;
}

.table-content-order-transactions__col-accrual-date {
    width: 110px;
}

.table-content-order-transactions__col-amount {
    width: 120px;
}

.table-content-transactions__col-id {
    width: 90px;
}

.table-content-transactions__col-date {
    width: 105px;
}

.table-content-transactions__col-shipment {
    width: 65px;
}

.table-content-transactions__col-order {
    width: 165px;
}

.table-content-transactions__col-product {
    width: auto;
}

.table-content-transactions__col-quantity {
    width: 64px;
}

.table-content-transactions__col-service-group {
    width: 165px;
}

.table-content-transactions__col-accrual-type {
    width: 170px;
}

.table-content-transactions__col-amount {
    width: 115px;
}

.table-content-catalog-products__col-id {
    width: 60px;
}

.table-content-catalog-products__col-image {
    width: 60px;
}

.table-content-catalog-products__col-name {
    width: auto;
}

.table-content-catalog-products__col-wholesale-price {
    width: 110px;
}

.table-content-catalog-products__col-stock {
    width: 110px;
}

.table-content-catalog-products__col-ozon {
    width: 210px;
}

.table-content-catalog-products__col-wb,
.table-content-catalog-products__col-ym {
    width: 130px;
}

.table-content-catalog-products__col-status {
    width: 115px;
}

.table-content-catalog-products__col-updated-at {
    width: 110px;
}

.table-content.table-content--order-products td {
    vertical-align: top;
}

.table-content.table-content--order-products td:first-child,
.table-content.table-content--order-products td:last-child {
    text-align: left;
}

.table-content.table-content--order-products td:first-child {
    padding-left: 0;
}

.table-content.table-content--order-products thead td:not(:first-child),
.table-content.table-content--order-products tbody td:not(:first-child) {
    white-space: nowrap;
}

.table-content.table-content--order-products .table-content-order-products__product-row--has-return td {
    border-bottom: 0;
}

.table-content.table-content--order-products .table-content-order-products__return-row td {
    padding: 0 0 10px;
    color: #F0A000;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    vertical-align: middle;
    background-color: transparent;
}

.table-content.table-content--order-products .table-content-order-products__return-row td:first-child {
    white-space: normal;
}

.table-content-order-products__return-item {
    display: flex;
    align-items: center;
    min-height: 34px;
    padding: 10px;
    background-color: #F9F3E4;
}

.table-content.table-content--order-products .table-content-order-products__return-row td:first-child .table-content-order-products__return-item {
    margin-left: 10px;
}

.table-content-order-products__buyout-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    height: 24px;
    margin-top: 4px;
    padding: 0 8px;
    font-size: 13px;
}

.table-content-order-products__product-info {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.table-content-order-products__product-info > div {
    min-width: 0;
}

.table-content-order-products__economy-value {
    font-weight: 600;
    color: #F53C14;
}

.table-content-order-products__economy-value--positive {
    color: #00A846;
}

.table-content-order-products__economy-line {
    display: inline-block;
    width: 100%;
    margin-top: 3px;
    color: #6C6B6D;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.25;
    white-space: nowrap;
}

.table-content-order-products__advertising-line {
    color: #D64B32;
}

.table-content-order-products__advertising-exact-line {
    color: #9A3412;
    font-weight: 600;
}

.table-content-order-transactions__advertising-badge {
    display: inline-block;
    margin-top: 4px;
    padding: 2px 6px;
    border-radius: 4px;
    background: #FFF1E8;
    color: #9A3412;
    font-size: 10px;
    font-weight: 600;
}

.order-advertising-details {
    margin-bottom: 24px;
}

.order-advertising-details h3 {
    margin: 0 0 12px;
    color: #1F1F1F;
    font-size: 16px;
    font-weight: 600;
}

.table-content.table-content--order-advertising td {
    text-align: left;
    vertical-align: top;
}

.table-content.table-content--order-advertising td:last-child {
    text-align: right;
    white-space: nowrap;
}

.order-advertising-details__amount {
    color: #D64B32;
    font-weight: 600;
}

.table-content.table-content--order-transactions td {
    vertical-align: top;
}

.table-content.table-content--order-transactions td:nth-child(2),
.table-content.table-content--order-transactions td:nth-child(4),
.table-content.table-content--order-transactions td:nth-child(5) {
    text-align: left;
}

.table-content.table-content--order-transactions thead td:not(:nth-child(2)):not(:nth-child(4)),
.table-content.table-content--order-transactions tbody td:not(:nth-child(2)):not(:nth-child(4)) {
    white-space: nowrap;
}

.table-content.table-content--order-transactions td:nth-child(2),
.table-content.table-content--order-transactions td:nth-child(4) {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.table-content-order-transactions__amount {
    text-align: right;
}

.table-content-order-transactions__amount--positive {
    font-weight: 600;
}

.table-content.table-content--order-transactions .table-content-order-transactions__excluded-row td {
    background-color: #F6F7FB;
    color: #8A8F98;
}

.table-content.table-content--order-transactions .table-content-order-transactions__excluded-row .table-content__col-name,
.table-content.table-content--order-transactions .table-content-order-transactions__excluded-row .table-content-2-line,
.table-content.table-content--order-transactions .table-content-order-transactions__excluded-row .table-content-order-transactions__amount {
    color: #8A8F98;
}

.table-content-order-transactions__excluded-badge {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    margin-top: 5px;
    padding: 2px 8px;
    border-radius: 4px;
    background-color: #ECEFF3;
    color: #6C6B6D;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
}

.table-content.table-content--order-transactions tfoot td {
    padding: 12px 10px;
    border-top: 2px solid #DCE7F5;
    font-weight: 600;
    background-color: #F8FBFF;
}

.table-content.table-content--order-transactions tfoot td:first-child {
    text-align: right;
}

.table-content.table-content--order-transactions tfoot .table-content-order-transactions__amount {
    text-align: right;
}

.table-content.table-content--transactions-list td {
    vertical-align: top;
}

.table-content.table-content--transactions-list td:nth-child(4),
.table-content.table-content--transactions-list td:nth-child(5),
.table-content.table-content--transactions-list td:nth-child(7),
.table-content.table-content--transactions-list td:nth-child(8) {
    text-align: left;
}

.table-content.table-content--transactions-list thead td:not(:nth-child(5)),
.table-content.table-content--transactions-list tbody td:not(:nth-child(5)) {
    white-space: nowrap;
}

.table-content-transactions__amount {
    text-align: right;
}

.table-content-transactions__amount--positive {
    font-weight: 600;
}

.table-content-transactions__empty-value {
    color: #6C6B6D;
    font-size: 12px;
    line-height: 1;
}

.table-content.table-content--transactions-list .table-content-transactions__unlinked-row td {
    background-color: #F8FBFF;
}

.table-content.table-content--transactions-list tfoot td {
    padding: 12px 10px;
    border-top: 2px solid #DCE7F5;
    font-weight: 600;
    background-color: #F8FBFF;
}

.table-content.table-content--transactions-list tfoot td:first-child {
    text-align: right;
}

.table-content.table-content--transactions-list tfoot .table-content-transactions__amount {
    text-align: right;
}

.table-content.table-content--catalog-products td {
    vertical-align: top;
}

.table-content.table-content--catalog-products td:nth-child(2) {
    text-align: center;
}

.table-content.table-content--catalog-products td:nth-child(3),
.table-content.table-content--catalog-products td:nth-child(6),
.table-content.table-content--catalog-products td:nth-child(7),
.table-content.table-content--catalog-products td:nth-child(8),
.table-content.table-content--catalog-products td:nth-child(9) {
    text-align: left;
}

.table-content.table-content--catalog-products td:nth-child(3) {
    padding-left: 18px;
}

.table-content-catalog-products__links {
    display: grid;
    gap: 8px;
}

.table-content-catalog-products__link-item {
    padding-bottom: 8px;
    border-bottom: 1px solid #E8EBEF;
}

.table-content-catalog-products__link-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.table-content.table-content--catalog-products .table-content-catalog-products__link-item .table-content-2-line:first-child {
    margin-top: 0;
}

.table-content-catalog-products__muted,
.table-content-catalog-products__empty {
    color: #6C6B6D;
    font-size: 12px;
    font-weight: 500;
}


.table-content--orders-list td:nth-child(2),
.table-content--orders-list td:nth-child(3),
.table-content--orders-list td:nth-child(4),
.table-content--orders-list td:nth-child(5),
.table-content--orders-list td:nth-child(8) {
    text-align: left;
}

.table-content.table-content--orders-list td {
    vertical-align: top;
}

.table-content.table-content--orders-list td[rowspan] {
    vertical-align: middle;
}

.table-content--orders-list td:nth-child(2) {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.table-content--orders-list .table-content-orders__product-cell,
.table-content--orders-list .table-content-orders__quantity-cell {
    text-align: left;
}

.table-content--orders-list .table-content__col-name {
    display: inline-block;
    max-width: 100%;
}

.table-content-detail__col-id {
    width: 60px;
}

.table-content-detail__col-type {
    width: 60px;
}

.table-content-detail__col-order {
    width: 140px;
}

.table-content-detail__col-posting {
    width: 160px;
}

.table-content-detail__col-status {
    width: 160px;
}

.table-content-detail__col-economy {
    width: 230px;
}

.table-content-detail__col-quantity {
    width: 70px;
}

.table-content-detail__col-warehouse {
    width: 220px;
}

.table-content-detail__col-date {
    width: 120px;
}

.table-content-detail__col-action {
    width: 121px;
}

.table-content--detail td:nth-child(2),
.table-content--detail td:nth-child(3),
.table-content--detail td:nth-child(4),
.table-content--detail td:nth-child(5),
.table-content--detail td:nth-child(6),
.table-content--detail td:nth-child(8) {
    text-align: left;
}

.table-content-detail__warehouse {
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.table-content thead {
    background-color: #F6F7FB;
    font-size: 13px;
    font-weight: 500;
    color:#6C6B6D;
    height: 30px;
    line-height: 18px;
}

.table-content thead td {
    border-bottom: 1px solid #E8EBEF;
}

.table-content tbody {
    font-size: 14px;
    line-height: 21px;
}

.table-content tbody td {
    border-bottom: 1px solid #E8EBEF;
}

.table-content.table-content--products td {
    vertical-align: top;
}

.table-content.table-content--products td:nth-child(2) {
    text-align: center;
}

.table-content.table-content--products td:nth-child(3) {
    padding-left: 18px;
    text-align: left;
}

.table-content__product-image {
    display: inline-flex;
    flex: 0 0 60px;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    box-sizing: border-box;
    border: 1px solid #E8EBEF;
    border-radius: 6px;
    color: #9AA1AC;
    background-color: #F6F7FB;
    font-size: 18px;
}

.table-content__product-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: inherit;
}

.table-content--detail tbody {
    line-height: 1;
}

.table-content.table-content--detail td {
    vertical-align: middle;
}

.table-content__marketplace-old-price {
    color:#6C6B6D;
}
.table-content__marketplace-price {
    font-weight: 600;
}

.orders-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
}

.orders-summary__text {
    color: #6C6B6D;
    font-size: 14px;
    line-height: 1.3;
}

.summary-period-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.summary-period-form__periods {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.summary-period-form__option {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid #E8EBEF;
    border-radius: 6px;
    background-color: #ffffff;
    color: #4E4D50;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.summary-period-form__option:hover,
.summary-period-form__option--active {
    border-color: #0B5DD7;
    background-color: #EEF7FF;
    color: #0B5DD7;
}

.summary-period-form__date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #6C6B6D;
    font-size: 14px;
}

.summary-period-form__date input {
    height: 34px;
    padding: 0 10px;
    border: 1px solid #E8EBEF;
    border-radius: 6px;
    background-color: #ffffff;
    color: #141414;
}

.summary-cards {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 16px;
}

.summary-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px;
    border: 1px solid #E8EBEF;
    border-radius: 8px;
    background-color: #ffffff;
}

.summary-card span {
    color: #6C6B6D;
    font-size: 13px;
}

.summary-card strong {
    color: #141414;
    font-size: 20px;
    line-height: 1;
}

.summary-table thead td:first-child,
.summary-table tbody td:first-child,
.summary-table tfoot td:first-child {
    text-align: left;
}

.advertising-page .page-detail-title-block {
    margin-bottom: 16px;
}

.advertising-summary {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-top: 16px;
}

.advertising-page__notice {
    margin: 0 0 14px;
    padding: 10px 12px;
    border: 1px solid #BEE5FF;
    border-radius: 6px;
    background-color: #EEF7FF;
    color: #33506F;
    font-size: 13px;
    line-height: 1.45;
}

.advertising-table-scroll {
    width: 100%;
    max-width: 100%;
    overflow-x: scroll;
    padding-bottom: 8px;
    scrollbar-color: #9AA7B6 #EEF1F5;
    scrollbar-gutter: stable;
    scrollbar-width: auto;
}

.advertising-table {
    width: 100%;
    table-layout: auto;
}

.advertising-table--campaigns {
    min-width: 1750px;
}

.advertising-table--products {
    min-width: 2150px;
}

.advertising-table td {
    min-width: 120px;
    white-space: nowrap;
}

.advertising-table td:first-child {
    min-width: 105px;
}

.advertising-table td:nth-child(2) {
    min-width: 280px;
    white-space: normal;
}

.advertising-table--products td:nth-child(3) {
    min-width: 320px;
    white-space: normal;
}

.advertising-table--products td:nth-child(4) {
    min-width: 170px;
}

.advertising-table-scroll::-webkit-scrollbar {
    height: 12px;
}

.advertising-table-scroll::-webkit-scrollbar-track {
    border-radius: 6px;
    background-color: #EEF1F5;
}

.advertising-table-scroll::-webkit-scrollbar-thumb {
    border: 2px solid #EEF1F5;
    border-radius: 6px;
    background-color: #9AA7B6;
}

.advertising-table-scroll::-webkit-scrollbar-thumb:hover {
    background-color: #75869A;
}

.advertising-fixed-scroll {
    position: fixed;
    bottom: 0;
    z-index: 100;
    display: none;
    box-sizing: border-box;
    height: 18px;
    overflow-x: scroll;
    overflow-y: hidden;
    border-top: 1px solid #DDE4ED;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -2px 8px rgba(32, 47, 67, 0.12);
    scrollbar-color: #75869A #EEF1F5;
    scrollbar-width: auto;
}

.advertising-fixed-scroll--visible {
    display: block;
}

.advertising-fixed-scroll__spacer {
    height: 1px;
}

.advertising-fixed-scroll::-webkit-scrollbar {
    height: 12px;
}

.advertising-fixed-scroll::-webkit-scrollbar-track {
    border-radius: 6px;
    background-color: #EEF1F5;
}

.advertising-fixed-scroll::-webkit-scrollbar-thumb {
    border: 2px solid #EEF1F5;
    border-radius: 6px;
    background-color: #75869A;
}

.advertising-fixed-scroll::-webkit-scrollbar-thumb:hover {
    background-color: #596C82;
}

.advertising-column-title {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: help;
}

.advertising-column-title i {
    color: #8A8F98;
    font-size: 12px;
}

.advertising-column-title[data-tooltip]::before {
    top: calc(100% + 8px);
    bottom: auto;
    width: max-content;
    max-width: 280px;
    box-sizing: border-box;
    text-align: left;
    white-space: normal;
}

.advertising-column-title[data-tooltip]::after {
    top: calc(100% + 3px);
    bottom: auto;
    border-top-color: transparent;
    border-bottom-color: #141414;
}

.advertising-table thead {
    position: relative;
    z-index: 2;
}

.advertising-table thead td:first-child .advertising-column-title[data-tooltip]::before {
    left: 0;
    transform: none;
}

.advertising-table thead td:first-child .advertising-column-title[data-tooltip]::after {
    left: 12px;
}

.advertising-table thead td:last-child .advertising-column-title[data-tooltip]::before {
    right: 0;
    left: auto;
    transform: none;
}

.advertising-table thead td:last-child .advertising-column-title[data-tooltip]::after {
    right: 12px;
    left: auto;
}

@media (max-width: 900px) {
    .summary-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .summary-cards {
        grid-template-columns: 1fr;
    }
}

.pagination-block {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
}

.pagination-block__button,
.pagination-block__gap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    box-sizing: border-box;
    border-radius: 6px;
    color: #141414;
    font-size: 14px;
    font-weight: 600;
}

.pagination-block__button {
    border: 1px solid #E8EBEF;
    background-color: #ffffff;
}

.pagination-block__button:hover {
    border-color: #BEE5FF;
    background-color: #EEF7FF;
    color: #0B5DD7;
}

.pagination-block__button--active {
    border-color: #0B5DD7;
    background-color: #0B5DD7;
    color: #ffffff;
}

.pagination-block__button--active:hover {
    background-color: #0B5DD7;
    color: #ffffff;
}

.pagination-block__button--disabled {
    color: #B8BEC7;
    pointer-events: none;
}

.pagination-block__gap {
    color: #6C6B6D;
}

.table-content__marketplace-price-icon {
    margin-right: 4px;
}

.table-content__marketplace-price-icon--positive {
    color: #30C451;
}

.table-content__marketplace-price-icon--negative {
    color: #F53C14;
}

.table-content__marketplace-price-icon--green {
    color: #30C451;
}

.table-content__marketplace-price-icon--yellow {
    color: #F6A600;
}

.table-content__marketplace-price-icon--purple {
    color: #8B5CF6;
}

.table-content__marketplace-price-icon--gray {
    color: #8A8F98;
}

.table-content__marketplace-price-icon--red {
    color: #F53C14;
}

.table-content-2-line {
    display: inline-block;
    color:#6C6B6D;
    background-color: #F6F7FB;
    font-size: 11px;
    border-radius: 4px;
    padding: 0px 5px;
    margin-top:5px;
    font-weight: 500;
}

.page-detail-title-block {
    display: flex;
    justify-content: space-between;
    gap:24px;
    position: relative;
}

.page-detail-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.page-detail-title-block--product {
    display: block;
}

.header-profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-profile__identity {
    display: grid;
    gap: 2px;
    text-align: right;
}

.header-profile__identity strong {
    max-width: 180px;
    overflow: hidden;
    color: #141414;
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.header-profile__identity span {
    color: #627383;
    font-size: 11px;
}

.header-profile__admin-link,
.header-profile__logout {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    color: #ffffff;
    background-color: #0B5DD7;
    font: inherit;
    font-size: 17px;
    cursor: pointer;
}

.header-profile__admin-link:hover,
.header-profile__logout:hover {
    background-color: #1D63C7;
}

.header-block--admin .header-profile__identity strong,
.header-block--admin .header-profile__identity span {
    color: #ffffff;
}
    .page-detail-title {
        font-size: 24px;
        font-weight: 700;
        line-height: 1.2;
        overflow-wrap: anywhere;
    }
    .page-detail-status--active {
        font-weight: 600;
        color:#00C451;
        font-size: 15px;
    }
    .page-detail-status--archive {
        font-weight: 600;
        color:#6C6B6D;
        font-size: 15px;
    }

.page-detail-product-head {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    min-width: 0;
    flex: 1 1 auto;
    width: 100%;
}

.page-detail-product-head__content {
    display: grid;
    gap: 14px;
    flex: 1 1 auto;
    min-width: 0;
}

.page-detail-product-head .page-detail-ids-block {
    margin-top: 0;
    flex-wrap: wrap;
}

.page-detail-ids-block {
    display: flex;
    justify-content: space-between;
    gap:24px;
    color:#6C6B6D;
    margin-top:24px;
}
.page-detail-id-container {
    display: flex;
    gap: 10px;
}
    .page-detail-id {
        display: inline-block;
        color: #6C6B6D;
        background-color: #F6F7FB;
        font-size: 13px;
        border-radius: 4px;
        padding: 3px 5px;
        font-weight: 500;
    }

.product-gallery {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 20px;
}

.product-gallery__main {
    display: inline-flex;
    flex: 0 0 168px;
    align-items: center;
    justify-content: center;
    width: 168px;
    height: 168px;
    box-sizing: border-box;
    border: 1px solid #E8EBEF;
    border-radius: 8px;
    color: #9AA1AC;
    background-color: #F6F7FB;
    font-size: 36px;
    overflow: hidden;
}

.product-gallery__main--title {
    flex: 0 0 96px;
    width: 96px;
    max-width: 96px;
    height: 96px;
    max-height: 96px;
    font-size: 24px;
}

.product-gallery__main img,
.product-images-grid__item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.product-gallery__main--title img {
    width: 96px;
    height: 96px;
    max-width: 96px;
    max-height: 96px;
}

.product-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(2, 60px);
    gap: 8px;
}

.product-gallery__thumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    box-sizing: border-box;
    border: 1px solid #E8EBEF;
    border-radius: 6px;
    color: #9AA1AC;
    background-color: #F6F7FB;
    font-size: 18px;
    cursor: pointer;
}

.product-gallery__thumb:hover,
.product-gallery__thumb--active {
    border-color: #0B5DD7;
    color: #0B5DD7;
    background-color: #EEF7FF;
}

.product-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
    gap: 12px;
}

.product-images-grid__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    min-height: 132px;
    box-sizing: border-box;
    border: 1px solid #E8EBEF;
    border-radius: 8px;
    color: #9AA1AC;
    background-color: #F6F7FB;
    font-size: 28px;
    cursor: pointer;
}

.product-images-grid__item:hover,
.product-images-grid__item--active {
    border-color: #0B5DD7;
    color: #0B5DD7;
    background-color: #EEF7FF;
}

.image-lightbox[hidden] {
    display: none;
}

.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.image-lightbox__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background-color: rgba(20, 20, 20, 0.72);
    cursor: zoom-out;
}

.image-lightbox__dialog {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: min(960px, 92vw);
    max-height: 88vh;
}

.image-lightbox__image {
    display: block;
    max-width: 100%;
    max-height: 88vh;
    border-radius: 8px;
    background-color: #ffffff;
    object-fit: contain;
}

.image-lightbox__close {
    position: absolute;
    top: -14px;
    right: -14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid #E8EBEF;
    border-radius: 50%;
    color: #141414;
    background-color: #ffffff;
    cursor: pointer;
}

.image-lightbox__nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    color: #ffffff;
    background-color: rgba(20, 20, 20, 0.48);
    cursor: pointer;
    transform: translateY(-50%);
}

.image-lightbox__nav:hover {
    background-color: rgba(20, 20, 20, 0.72);
}

.image-lightbox__nav--prev {
    left: -62px;
}

.image-lightbox__nav--next {
    right: -62px;
}

.is-lightbox-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .image-lightbox__nav--prev {
        left: 8px;
    }

    .image-lightbox__nav--next {
        right: 8px;
    }
}

.page-tabs {
    margin-top: 24px;
}

.page-tabs__nav {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    border-bottom: 1px solid #E8EBEF;
}

.page-tabs__link {
    display: block;
    padding: 10px 14px;
    margin-bottom: -1px;
    color: #6C6B6D;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 2px solid transparent;
}

.page-tabs__link:hover,
.page-tabs__link--active {
    color: #0B5DD7;
}

.page-tabs__link--active {
    border-bottom-color: #0B5DD7;
}

.page-tabs__panel[hidden] {
    display: none;
}

.page-tabs__empty {
    padding: 24px;
    color: #6C6B6D;
    background-color: #F6F7FB;
    border-radius: 8px;
}

.detail-info-grid {
    display: grid;
    gap: 20px;
    width: 370px;
}

.detail-info-block {
    display: grid;
    gap: 10px;
    margin-top:20px;
}

.detail-info-title {
    color: #6C6B6D;
    font-size: 14px;
    line-height: 1.2;
}

.detail-info-title__name {
    color: #141414;
    font-weight: 600;
}

.detail-info-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    font-size: 14px;
    line-height: 1.2;
}

.detail-info-key {
    color: #6C6B6D;
}

.detail-info-value {
    color: #141414;
    font-weight: 600;
    text-align: right;
}

.service-page {
    display: grid;
    gap: 24px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.service-panel {
    display: grid;
    align-content: start;
    gap: 18px;
    padding: 18px;
    border: 1px solid #E8EBEF;
    border-radius: 8px;
    background-color: #ffffff;
}

.service-panel__head {
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-panel__head i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 6px;
    color: #0B5DD7;
    background-color: #EEF7FF;
    font-size: 18px;
}

.service-panel__title,
.service-log__title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.service-form {
    display: grid;
    gap: 14px;
}

.service-form__field {
    display: grid;
    gap: 6px;
    color: #6C6B6D;
    font-size: 12px;
    font-weight: 500;
}

.service-form__field input,
.service-form__field select {
    box-sizing: border-box;
    width: 100%;
    height: 38px;
    padding: 0 12px;
    border: 1px solid #E8EBEF;
    border-radius: 6px;
    color: #141414;
    font: inherit;
    font-size: 14px;
    outline: 0;
}

.service-form__field input:focus,
.service-form__field select:focus {
    border-color: #0B5DD7;
}

.service-form__checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #141414;
    font-size: 14px;
    font-weight: 500;
}

.service-form__checkbox input {
    width: 16px;
    height: 16px;
    margin: 0;
}

.service-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-actions__button {
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 156px;
    border: 0;
    font: inherit;
    font-size: 14px;
    cursor: pointer;
}

.service-api-state {
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-api-state__label {
    color: #6C6B6D;
    font-size: 13px;
    font-weight: 600;
}

.service-api-methods {
    display: grid;
    gap: 8px;
    padding: 12px;
    border: 1px solid #DCE9FA;
    border-radius: 6px;
    background-color: #F7FAFF;
}

.service-api-methods__label {
    color: #6C6B6D;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.service-api-methods__item {
    display: grid;
    gap: 3px;
}

.service-api-methods__item code {
    color: #0B5DD7;
    font-family: Consolas, "Courier New", monospace;
    font-size: 13px;
    font-weight: 600;
    overflow-wrap: anywhere;
}

.service-api-methods__item span {
    color: #6C6B6D;
    font-size: 12px;
    line-height: 1.35;
}

.service-schedule {
    display: grid;
    gap: 12px;
    padding: 14px;
    border: 1px solid #DDE4ED;
    border-radius: 6px;
    background-color: #FAFBFC;
}

.service-schedule__head,
.service-schedule__form,
.service-schedule__meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-schedule__head {
    justify-content: space-between;
}

.service-schedule__title {
    color: #141414;
    font-size: 15px;
    font-weight: 700;
}

.service-schedule__hint,
.service-schedule__meta {
    color: #6C6B6D;
    font-size: 12px;
    line-height: 1.4;
}

.service-schedule__hint {
    margin-top: 3px;
}

.service-schedule__state {
    flex: 0 0 auto;
    padding: 4px 7px;
    border-radius: 4px;
    color: #6C6B6D;
    background-color: #E8EBEF;
    font-size: 12px;
    font-weight: 600;
}

.service-schedule__state--active {
    color: #087A3E;
    background-color: #E7F7EE;
}

.service-schedule__form,
.service-schedule__meta {
    flex-wrap: wrap;
}

.service-schedule__form {
    flex-direction: column;
    align-items: flex-start;
}

.service-schedule__interval {
    width: 190px;
}

.service-schedule__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    border: 0;
    font: inherit;
    font-size: 13px;
    cursor: pointer;
}

.service-schedule__notice {
    padding: 9px 11px;
    border-radius: 5px;
    font-size: 13px;
}

.service-schedule__notice--success {
    color: #087A3E;
    background-color: #E7F7EE;
}

.service-schedule__notice--error {
    color: #B42318;
    background-color: #FDECEA;
}

.service-schedule__meta span:not(:last-child)::after {
    content: "·";
    margin-left: 12px;
}

.service-log {
    display: grid;
    gap: 12px;
    padding: 18px;
    border: 1px solid #E8EBEF;
    border-radius: 8px;
    background-color: #ffffff;
}

.service-log__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.service-log__meta {
    margin-top: 5px;
    color: #6C6B6D;
    font-size: 13px;
    line-height: 1.2;
}

.service-log__status {
    flex: 0 0 auto;
    padding: 5px 8px;
    border-radius: 4px;
    color: #0B5DD7;
    background-color: #EEF7FF;
    font-size: 13px;
    font-weight: 600;
}

.service-progress {
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background-color: #EEF2F7;
}

.service-progress__bar {
    height: 100%;
    border-radius: inherit;
    background-color: #0B5DD7;
}

.service-log__output {
    box-sizing: border-box;
    min-height: 260px;
    max-height: 360px;
    overflow: auto;
    padding: 14px;
    border-radius: 6px;
    color: #E8F1FF;
    background-color: #141414;
    font-family: Consolas, "Courier New", monospace;
    font-size: 13px;
    line-height: 1.45;
    white-space: pre-wrap;
}

[data-tooltip] {
    position: relative;
}

[data-tooltip]::before,
[data-tooltip]::after {
    position: absolute;
    left: 50%;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s ease, visibility 0.15s ease;
}

[data-tooltip]::before {
    content: attr(data-tooltip);
    bottom: calc(100% + 8px);
    transform: translateX(-50%);
    padding: 5px 8px;
    border-radius: 4px;
    color: #ffffff;
    background-color: #141414;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    white-space: nowrap;
}

[data-tooltip]::after {
    content: "";
    bottom: calc(100% + 3px);
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #141414;
}

[data-tooltip]:hover::before,
[data-tooltip]:hover::after {
    opacity: 1;
    visibility: visible;
}

.table-content td {
    /* Внутренние отступы во всех колонках table-content регулируются здесь. */
    padding: 8px 10px;
    text-align: right;
    vertical-align: top;
}

.table-content td:nth-child(2) {
    text-align: left;
}

.form-message {
    padding: 12px 14px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.4;
}

.form-message--error {
    border: 1px solid #FFD1C7;
    color: #B52A0C;
    background-color: #FFF1EE;
}

.form-message--success {
    border: 1px solid #BCECC7;
    color: #167A2D;
    background-color: #EEFFF2;
}

.auth-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
    box-sizing: border-box;
    background: linear-gradient(135deg, #EEF7FF 0%, #F6F7FB 55%, #D9F0FF 100%);
}

.auth-card {
    display: grid;
    gap: 24px;
    box-sizing: border-box;
    width: min(100%, 420px);
    padding: 32px;
    border: 1px solid #E8EBEF;
    border-radius: 12px;
    background-color: #ffffff;
    box-shadow: 0 18px 50px rgba(34, 58, 87, 0.12);
}

.auth-card__logo {
    width: 228px;
    height: 40px;
    background: url('../img/logo.svg') no-repeat left center / contain;
}

.auth-card__heading {
    display: grid;
    gap: 6px;
}

.auth-card__heading h1 {
    font-size: 24px;
    line-height: 1.2;
}

.auth-card__heading p {
    color: #627383;
    line-height: 1.4;
}

.auth-form {
    display: grid;
    gap: 16px;
}

.auth-form__submit {
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 42px;
    border: 0;
    font: inherit;
    cursor: pointer;
}

.user-create-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.user-create-form .service-actions {
    grid-column: 1 / -1;
}

.users-list {
    overflow-x: auto;
    border: 1px solid #E8EBEF;
    border-radius: 8px;
    background-color: #ffffff;
}

.users-table {
    width: 100%;
}

.users-table td {
    text-align: left;
    vertical-align: middle;
}

@media (max-width: 520px) {
    .auth-card {
        padding: 24px;
    }

    .auth-card__logo {
        width: 190px;
    }
}
