div.table {
    display: table;
}

div.table .row {
    display: table-row;
}
div.table .cell {
    display: table-cell;
    padding: 0 15px;
}
div.table .caption {
    display: table-caption;
}
span.td-value:hover {
    cursor: pointer;
}
td.wrl-services {
    border: none;
    padding: 7px;
    20px;
}

input.wrl-services, select.wrl-services {
    height: 30px;
    line-height: 30px;
}

a.button > i {
    margin-right: 5px;
}

/* Tabs
------- */

ul.tabs {
    list-style-type: none;
    margin: 0;
    padding: 0 0 0 1em;
    display: flex;
    overflow-x: scroll;
    max-width: 100%;
    transition: 0.2s;
    scrollbar-width: none;
}

ul.tabs::-webkit-scrollbar {
    display: none;
}

ul.tabs > li {
    text-align: left;
    position: relative;
    flex: 0 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
}

ul.tabs > li:not(:empty):not(:last-child) {
    margin-right: 1.5em;
}

ul.tabs > li > a {
    outline: none;
    font-style: normal;
    text-decoration: none;
    color: var(--menu-link-color);
    padding: 0.75em 0;
    cursor: pointer;
    flex: auto;
    border-bottom: 0.25em solid transparent;
    width: 100%;
}

ul.tabs > li > a i,
ul.tabs > li > a svg,
ul.tabs > li > a img {
    font-size: 1em;
    max-height: 1em;
    margin: 0 0.25em 0 0;
}

ul.tabs > li > a svg {
    color: var(--menu-glyph-color);
}

ul.tabs > li > a:hover {
    color: var(--menu-link-color-hover);
    border-bottom-color: var(--menu-tabs-border-color-hover);
    transition: 0.2s;
}

ul.tabs > li > a:hover svg {
    color: var(--menu-glyph-color-hover);
}

ul.tabs > li > a .count {
    margin-left: 0.125em;
    color: var(--text-color-hint);
    font-size: 0.75em;
}

ul.tabs > li.selected > a {
    color: var(--menu-selected-link-color);
    border-bottom-color: var(--accent-color);
    font-weight: 600
}

ul.tabs > li.selected i,
ul.tabs > li.selected svg,
ul.tabs > li.selected img {
    opacity: 1;
}

ul.tabs.bordered-bottom {
    border-bottom: 1px solid var(--border-color-soft);
}

ul.tabs.overflow-dropdown {
    overflow-x: unset;
}

ul.tabs.overflow-dropdown > .dropdown > .dropdown-toggle {
    padding-right: 0
}

.tabs-wrapper {
    overflow-x: scroll;
    position: relative;
}

.tabs-wrapper > ul.tabs.overflow-arrows {
    overflow: unset
}

.tabs-wrapper.arrows {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.tabs-wrapper.arrows > ul.tabs.overflow-arrows {
    overflow-x: scroll;
    position: relative;
}

.tabs-wrapper.arrows > ul.tabs.overflow-arrows > li {
    transition: transform 200ms linear;
}

.tabs-wrapper.arrows > ul.tabs-arrows-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    height: 100%;
    display: inline-flex;
    justify-content: flex-end;
    align-items: center;
    padding-left: 1rem;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, var(--background-color-wa-header) 20%);
}

.tabs-wrapper.arrows > ul.tabs-arrows-wrapper.left {
    left: 0;
    right: auto;
    width: auto;
    height: 100%;
    padding: 0 1rem 0 0;
    z-index: 1;
    background: linear-gradient(-90deg, rgba(255, 255, 255, 0.1) 0%, var(--background-color-wa-header) 20%);
}

.tabs-wrapper.arrows > ul.tabs-arrows-wrapper.right {
    left: auto;
    right: 0;
    width: auto;
    height: 100%;
    padding: 0 0 0 1rem;
    z-index: 1;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, var(--background-color-wa-header) 20%);
}

.tabs-wrapper.arrows > ul.tabs-arrows-wrapper > li {
    color: #eee;
    cursor: pointer;
    transition: transform 200ms linear;
}

.tabs-wrapper.arrows > ul.tabs-arrows-wrapper > li.is-active {
    color: var(--light-gray)
}

.tabs-wrapper.arrows > ul.tabs-arrows-wrapper > li.is-active:hover {
    transform: scale(1.2)
}

.tabs-wrapper.arrows > ul.tabs-arrows-wrapper > li.is-active:active {
    transform: scale(1.1)
}

.banner {
    background-color: var(--body-bg-color);
    border: 5px solid var(--link-hover-color);
    padding: 15px;
    text-align: center;
    font-size: 140%;
    color: var(--body-text-color);
    width: 80%;
    margin: auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    border-radius: 15px; /* Добавьте это */
}