@charset "UTF-8";
/* Общие для всего сайта css стили */
html {
  overflow: auto;
}

.theme--light.v-application,
.theme--light.v-data-table thead,
.theme--light.v-btn {
  color: #6d6d6d;
}

a:hover {
  opacity: 0.7;
}

.valign-top {
  vertical-align: top !important;
}

.nowrap {
  white-space: nowrap !important;
}

.noselect {
  user-select: none !important;
}

.noevents {
  pointer-events: none !important;
}

.allevents {
  pointer-events: auto !important;
}

.cursor-pointer {
  cursor: pointer !important;
}

.cursor-auto {
  cursor: auto !important;
}

input[disabled], select[disabled], textarea[disabled], button[disabled], .v-select.v-input--is-disabled .v-input__slot {
  pointer-events: all !important;
  cursor: not-allowed !important;
}

/* Правка отображения контента в задизейбленных Vue-кнопках тёмной темы */
.theme--dark.v-btn.v-btn--disabled .v-icon, .theme--dark.v-btn.v-btn--disabled {
  color: #bbb !important;
}
.theme--dark.v-btn.v-btn--disabled.v-btn--has-bg {
  background-color: #e5e5e5 !important;
}

/* Выпадающий список компонента v-select с множественным выбором */
.v-menu__content .v-list-item .v-list-item__action {
  margin: 0 10px 0 0;
  font-size: 0;
}
.v-menu__content .v-list-item.v-list-item--disabled {
  opacity: 0.4;
}

/* Элементы выпадающего списка с мультивыбором (корректировка отступов chips, когда есть плавающий заголовок и переносятся чипы) */
.v-select--is-multi.v-select--chips .v-label--active ~ .v-select__selections {
  padding-bottom: 8px !important;
}
.v-select--is-multi.v-select--chips .v-label--active ~ .v-select__selections .v-chip--select {
  margin-top: 5px !important;
}

.v-tabs-bar .v-tabs-bar__content {
  border-bottom: 1px solid #f7f7f7;
}
.v-tabs-bar .v-tabs-slider-wrapper {
  height: unset !important;
  margin-bottom: -1px !important;
}
.v-tabs-bar .v-tabs-slider-wrapper .v-tabs-slider {
  height: 1px;
}

/* Заголовки блоков */
.v-card__title {
  word-break: break-word !important;
}

/* Модальные окна */
.v-dialog {
  /* Максимальная высота */
  /* Заголовок */
  /* Контент */
  /* Кнопки действий */
}
.v-dialog:not(.v-dialog--fullscreen) {
  max-height: 95vh;
  /* Внимание! После правки этой величины необходимо корректировать css в js-методе initCalcTableScroll */
}
.v-dialog > .v-card > .v-card__title {
  background: #f3ecef repeating-linear-gradient(45deg, #f3ecef, #f0fdee 20px, #ffffff 20px, #ffffff 20px);
  border-bottom: 1px solid #eee;
  font-size: 1.2rem;
  line-height: 1.8rem;
  padding: 8px 14px;
  overflow-wrap: break-word !important;
  word-break: break-word !important;
}
.v-dialog > .v-card > .v-card__text {
  padding: 0 18px 18px;
}
.v-dialog > .v-card > .v-card__actions {
  display: block;
  text-align: right;
  padding: 8px 18px 18px !important;
  border-top: 1px solid #e6e6e6;
}
.v-dialog > .v-card > .v-card__actions > * {
  margin-top: 10px;
}
@media screen and (max-width: 480px) {
  .v-dialog {
    margin: 3px !important;
    max-height: calc(100% - 3px) !important;
  }
}

/* Текст ошибки валидации поля */
.v-text-field__details {
  margin-bottom: 0 !important;
}

/* Учёт переноса текста в ошибках валидации полей форм */
.v-messages__message {
  white-space: pre-line;
}

.panel-filtering {
  background: radial-gradient(92% 70%, white, #e5ece6) !important;
}

.tbl-filtering-block tr:nth-of-type(odd) {
  background-color: #f2f5f2 !important;
}
.tbl-filtering-block tr:not(.empty-table-footer):hover {
  background-color: #e2e8e3 !important;
}

/* Scrollbars внтури прокручиваемых блоков */
body * {
  /* For Firefox */
  scrollbar-width: thin;
  scrollbar-color: #b4b4b4;
  /* Scrollbars for Chrome */
  /* Up */
  /* Down */
  /* Left */
  /* Right */
}
body *::-webkit-scrollbar {
  height: 12px;
  width: 12px;
}
body *::-webkit-scrollbar-track {
  background: #eee;
}
body *::-webkit-scrollbar-corner {
  background-color: #ddd;
}
body *::-webkit-scrollbar-thumb {
  background-color: #b4b4b4;
  border-radius: 3px;
  border: 1px solid #eee;
}
body *::-webkit-scrollbar-button {
  display: none;
}
body *::-webkit-scrollbar-button:single-button {
  display: block;
  background-color: #eee;
  border-style: solid;
  height: 10px;
  width: 10px;
}
body *::-webkit-scrollbar-button:single-button:vertical:decrement {
  border-width: 7px 6px;
  border-radius: 3px 3px 0 0;
  border-color: transparent transparent #b4b4b4 transparent;
}
body *::-webkit-scrollbar-button:single-button:vertical:decrement:hover {
  border-color: transparent transparent #888 transparent;
}
body *::-webkit-scrollbar-button:single-button:vertical:increment {
  border-width: 7px 6px;
  border-radius: 0 0 3px 3px;
  border-color: #b4b4b4 transparent transparent transparent;
}
body *::-webkit-scrollbar-button:single-button:vertical:increment:hover {
  border-color: #888 transparent transparent transparent;
}
body *::-webkit-scrollbar-button:single-button:horizontal:decrement {
  border-width: 6px 7px;
  border-radius: 3px 0 0 3px;
  border-color: transparent #b4b4b4 transparent transparent;
}
body *::-webkit-scrollbar-button:single-button:horizontal:decrement:hover {
  border-color: transparent #888 transparent transparent;
}
body *::-webkit-scrollbar-button:single-button:horizontal:increment {
  border-width: 6px 7px;
  border-radius: 0 3px 3px 0;
  border-color: transparent transparent transparent #b4b4b4;
}
body *::-webkit-scrollbar-button:single-button:horizontal:increment:hover {
  border-color: transparent transparent transparent #888;
}

/* Фикс дублирования иконки на некоторых версиях laravel-debugbar (3.6.8, 3.7.0) */
div.phpdebugbar-header {
  padding-left: 0 !important;
}
.hint-box {
  position: absolute;
  top: 0;
  pointer-events: none;
  display: none;
  box-shadow: 0 0 12px #a7a7a7;
  background: #565656;
  padding: 5px 8px;
  border-radius: 6px;
  opacity: 0;
  color: #d4d4d4;
  font-size: 15px;
  font-family: sans-serif;
  border: 1px solid #949494;
  transition: opacity 0.5s;
  z-index: 9999999999;
}
.hint-box--showing {
  opacity: 0.85;
}
button[disabled][title], button[disabled][data-title] {
  pointer-events: all;
  cursor: not-allowed;
}
.breadcrumbs-title {
  padding: 0;
}
.breadcrumbs-title .v-breadcrumbs__item {
  font-size: 1.35em;
  font-weight: bold;
  margin: 0;
  color: #757575;
}
.breadcrumbs-title--compact .v-breadcrumbs__item {
  font-size: 1.2em;
}
.logo[data-v-a2ceac1e] {
  margin: 10px 0 0 -5px;
  overflow: visible;
  cursor: pointer;
}
.component-notifications-list .notification:not(:last-child) {
  margin-bottom: 12px;
}
.component-notifications-list .notification .v-alert__wrapper {
  display: block;
}
.component-notifications-list .notification .v-alert__icon {
  position: absolute;
}
.component-notifications-list .notification .notification__time {
  position: absolute;
  top: 8px;
  left: 50px;
  width: 60px;
  text-align: left !important;
}
.component-notifications-list .notification .notification__time .v-chip {
  height: unset;
}
.component-notifications-list .notification .notification__text {
  margin-top: 1px;
  padding-left: 0 !important;
}
.component-notifications-list .notification .notification__text:before {
  content: "";
  padding-left: 100px;
}
.component-notifications-list .notification .notification__text hr {
  margin-top: 6px;
  margin-bottom: 4px;
}
.component-notifications-list .notification .notification__text-spacer {
  float: right;
  width: 62px;
  height: 20px;
}
.component-notifications-list .notification .notification__btn-read {
  position: absolute;
  right: 40px;
  text-align: right;
  top: 2px;
  width: 40px;
}
.component-notifications-list .notification .notification__btn-del {
  position: absolute;
  text-align: right;
  right: 5px;
  top: 2px;
  width: 40px;
}
.menu-header-notifications {
  z-index: 20001 !important;
}
.notifications-list {
  max-height: calc(100vh - 130px);
  overflow-y: auto;
}
.header-cash-block[data-v-8cd60f12] {
  margin: 5px 5px;
  cursor: pointer;
}
.header-cash-block a[data-v-8cd60f12] {
  color: rgba(0, 0, 0, 0.54);
  font-weight: 500;
  font-size: 18px;
}
@charset "UTF-8";
.main-header {
  z-index: 200 !important;
  background: repeating-linear-gradient(45deg, #f3ecef, #f0fdee 20px, #ffffff 20px, #ffffff 20px);
  border-bottom: 1px solid #efefef;
  /* Скрытие кнопки прокрутки табов (появляется на узких экранах без этого хака) */
}
.main-header .header-vtabs {
  padding-left: 10px;
}
.main-header .header-vtabs-container {
  margin-left: 15px;
}
.main-header .header-vtabs-item {
  opacity: 1;
}
.main-header .header-vtabs-item, .main-header .header-vtabs-item:before {
  border-radius: 100px;
}
.main-header .header-vtabs-item:hover:before {
  opacity: 0.1 !important;
}
.main-header .header-vtabs-item--active {
  background-color: rgba(56, 142, 60, 0.1);
}
.main-header .header-vtabs .v-slide-group__prev {
  display: none !important;
}
.button-up[data-v-0423cc9a] {
  z-index: 20000;
  position: fixed;
  padding: 3px 3px;
  background-color: #5cb85c;
  color: #ffffff;
  border-radius: 3px;
  bottom: 1rem;
  right: 1rem;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
}
.button-up[data-v-0423cc9a]:hover {
  background-color: #4d9e41;
}
.snackbars-wrapper {
  position: fixed;
  pointer-events: none;
  width: 100%;
  height: 100%;
  padding-top: 60px;
  z-index: 20001;
}
.snackbar-notify {
  position: unset !important;
  height: unset !important;
}
.snackbar-notify .v-snack__wrapper {
  padding: 14px 36px 14px 14px;
  max-height: calc(100% - 16px);
}
.snackbar-notify .v-snack__content {
  max-height: calc(100vh - 45px);
  overflow-y: auto;
  padding: 0 8px 0 0;
}
.snackbar-notify .v-snack__content hr {
  margin-top: 6px;
  margin-bottom: 4px;
}
.snackbar-notify .v-snack__action {
  position: absolute;
  top: 5px;
  right: -6px;
}
.overlay[data-v-1c1ef1a0] {
  border-style: solid;
  min-height: 80px;
}
.progress-circular[data-v-1c1ef1a0] {
  transition: left, top 0.5s ease-in-out;
}
.panel-filtering {
  display: flex;
  flex-wrap: wrap;
  color: #6d6d6d;
  font-size: 14px !important;
  border: 1px solid #ddd;
  border-bottom: none;
  background-color: #f5f5f5;
  background: radial-gradient(92% 70%, white, #f1f1f1);
  padding: 10px 10px 0;
}
.panel-filtering > *:not(:last-child) {
  margin-right: 5px !important;
}
.panel-filtering > * {
  margin-bottom: 10px !important;
}
.panel-filtering .v-btn, .panel-filtering .panel-item {
  height: 35px !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  margin: 1px 0;
  border: none;
  box-shadow: 0 0 0 1px #e0e0e0 !important;
}
.panel-filtering .v-btn.v-btn, .panel-filtering .panel-item.v-btn {
  background-color: #f9f9f9;
}
.panel-filtering .v-btn.panel-item, .panel-filtering .panel-item.panel-item {
  border-radius: 5px;
}
.panel-filtering .v-select {
  display: inline-block;
  background-color: white;
  margin-top: 1px;
  width: 86px;
}
.panel-filtering .v-select fieldset {
  border: 1px solid #e0e0e0;
  box-shadow: none;
}
.panel-filtering .v-select label {
  top: unset !important;
  color: #777 !important;
}
.panel-filtering .v-select .v-input__slot {
  height: 35px !important;
  min-height: 35px !important;
  font-size: 14px !important;
  padding-right: 6px !important;
}
.panel-filtering .v-select .v-input__append-inner {
  margin-top: 6px !important;
}
th[data-v-6213c56d] {
  width: 1px !important;
  min-width: 1px !important;
}
.circle[data-v-e7140c02] {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-top: -1px;
  border-radius: 50%;
  background-color: #cccccc;
  vertical-align: middle;
}
@charset "UTF-8";
.json-viewer-1694588705 {
  word-break: break-word;
  white-space: pre-line;
}
.json-viewer-1694588705 pre {
  display: inline;
  white-space: normal;
  font-size: inherit;
}
.json-viewer-1694588705 .level-1694588705 > .level-1694588705 {
  position: relative;
  margin-left: 7px;
  padding-left: 8px;
}
.json-viewer-1694588705 .level-1694588705 > .level-1694588705:before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  bottom: 0.55rem;
  border-left: 1px solid #759a7f;
  border-bottom: 1px solid #759a7f;
  width: 6px;
}
.json-viewer-1694588705 .group-1694588705 {
  color: #191;
  padding-left: 4px;
}
.json-viewer-1694588705 .group-1694588705 > pre:first-child {
  cursor: pointer;
  font-weight: bold;
  opacity: 0.8;
}
.json-viewer-1694588705 .group-1694588705 > pre:first-child:before {
  content: "▶";
  display: inline-block;
  font-size: 0.7rem;
  padding-left: 4px;
  padding-right: 4px;
  margin-left: -5px;
  transform: rotate(0deg);
  transition: transform 195ms ease-in 0s;
  opacity: 0.5;
}
.json-viewer-1694588705 .group-1694588705.expanded-1694588705 > pre:first-child:before {
  transform: rotate(90deg);
  opacity: 1;
}
.json-viewer-1694588705 .group-1694588705 > .preview-1694588705 {
  color: #ca7;
  padding-left: 5px;
}
.json-viewer-1694588705 .key-1694588705 {
  color: #191;
  padding-left: 3px;
}
.json-viewer-1694588705 .value-1694588705 {
  color: #1195af;
}
.json-viewer__wrapper {
  overflow-y: auto;
  max-height: 600px;
}

.short-text-cell[data-v-9a157d40] {
  word-break: break-word;
  max-height: 106px;
  overflow-y: auto;
}
@charset "UTF-8";
.cell-special-edit-row {
  display: inline-block;
  width: 22px;
  margin-top: -1px;
  border-radius: 50%;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-1 -1 24 24' %3E%3Cpath fill='gray' d='M20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18,2.9 17.35,2.9 16.96,3.29L15.12,5.12L18.87,8.87M3,17.25V21H6.75L17.81,9.93L14.06,6.18L3,17.25Z'/%3E%3C/svg%3E");
  /** Хак для высоты элемента */
}
.cell-special-edit-row:hover {
  cursor: pointer;
  background-color: #ddd;
}
.cell-special-edit-row:before {
  content: "_";
  color: transparent;
}
.cell-special-edit-row--icon-view {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-1 -1 24 24' %3E%3Cpath fill='gray' d='M12,9A3,3 0 0,0 9,12A3,3 0 0,0 12,15A3,3 0 0,0 15,12A3,3 0 0,0 12,9M12,17A5,5 0 0,1 7,12A5,5 0 0,1 12,7A5,5 0 0,1 17,12A5,5 0 0,1 12,17M12,4.5C7,4.5 2.73,7.61 1,12C2.73,16.39 7,19.5 12,19.5C17,19.5 21.27,16.39 23,12C21.27,7.61 17,4.5 12,4.5Z'/%3E%3C/svg%3E") !important;
}
.cell-special-edit-row--disabled {
  cursor: not-allowed !important;
  opacity: 0.2;
}
.cell-special-edit-row--disabled:active {
  pointer-events: none;
}
.field-special-mass-row {
  display: block;
  font-size: 0;
  margin-top: 2px;
}
.field-special-mass-row .v-icon {
  vertical-align: unset !important;
}
.field-special-mass-row .checkbox-action {
  display: inline-block !important;
}
.field-special-mass-row .checkbox-action:not(:disabled) {
  cursor: pointer;
}
.filter[data-v-efdaf678] {
  padding: 8px 10px 10px;
  background-color: white;
  font-size: 14px !important;
}
.filter__from[data-v-efdaf678] {
  margin-bottom: 10px;
}
.filter__group[data-v-efdaf678] {
  display: flex;
  align-items: center;
}
.filter__group > *[data-v-efdaf678]:not(:first-child) {
  margin-left: 1px;
}
.filter[data-v-334fc1e5] {
  padding: 8px 10px 10px;
  background-color: white;
  font-size: 14px !important;
}
.filter__group[data-v-334fc1e5] {
  display: flex;
  align-items: center;
}
.filter__group > *[data-v-334fc1e5]:not(:first-child) {
  margin-left: 1px;
}
.menu-actions[data-v-1a8ddae0] {
  background-color: #ffffff;
}
.menu-actions__btn[aria-expanded=true][data-v-1a8ddae0]:before {
  opacity: 0.24;
}
.menu-actions__item[data-v-1a8ddae0] {
  display: block;
  color: inherit;
  font-size: 14px;
  padding: 10px 18px 10px;
  cursor: pointer;
}
.menu-actions__item--disabled[data-v-1a8ddae0] {
  opacity: 40%;
  cursor: not-allowed !important;
}
.menu-actions__item[data-v-1a8ddae0]:hover:not(.action-disabled), .menu-actions__item[aria-expanded=true][data-v-1a8ddae0] {
  background-color: #eee;
}
.menu-actions__icon[data-v-1a8ddae0] {
  margin-top: -2px;
}
.menu-actions hr[data-v-1a8ddae0] {
  border: 0;
  height: 1px;
  background-color: #e8e8e8;
}
.menu-actions hr[data-v-1a8ddae0]:last-child, .menu-actions hr[data-v-1a8ddae0]:first-child {
  display: none;
}
.menu-mass-actions[data-v-47a246b6] {
  background-color: #ffffff;
}
.menu-mass-actions__item[data-v-47a246b6] {
  display: block;
  color: inherit;
  font-size: 14px;
  padding: 10px 18px 10px;
  cursor: pointer;
}
.menu-mass-actions__item.action-disabled[data-v-47a246b6] {
  opacity: 40%;
  cursor: not-allowed !important;
}
.menu-mass-actions__item[data-v-47a246b6]:hover:not(.action-disabled), .menu-mass-actions__item--selected[data-v-47a246b6] {
  background-color: #eee;
}
.menu-mass-actions__icon[data-v-47a246b6] {
  margin-top: -2px;
}
.menu-mass-actions hr[data-v-47a246b6] {
  border: 0;
  height: 1px;
  background-color: #e8e8e8;
}
.menu-mass-actions hr[data-v-47a246b6]:last-child, .menu-mass-actions hr[data-v-47a246b6]:first-child {
  display: none;
}
.filter[data-v-70efbdf4] {
  padding: 8px 10px 10px;
  background-color: white;
  font-size: 14px !important;
}
.filter__from[data-v-70efbdf4] {
  margin-bottom: 10px;
}
.filter__group[data-v-70efbdf4] {
  display: flex;
  align-items: center;
}
.filter__group > *[data-v-70efbdf4]:not(:first-child) {
  margin-left: 1px;
}
@charset "UTF-8";
.tbl-filtering-block {
  font-size: 14px;
}
.tbl-filtering-block .v-data-table__wrapper {
  overflow-y: auto;
  max-height: 68vh;
  border: 1px solid #dddddd;
}
.tbl-filtering-block table {
  width: 100%;
  border-spacing: 0;
}
.tbl-filtering-block tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}
.tbl-filtering-block tr:not(.empty-table-footer):hover {
  background-color: #e8e8e8;
}
.tbl-filtering-block td, .tbl-filtering-block th {
  border-right: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  text-align: center;
  white-space: pre-line;
}
.tbl-filtering-block td:last-child, .tbl-filtering-block th:last-child {
  border-right: none;
}
.tbl-filtering-block td {
  vertical-align: top;
  padding: 6px 4px;
}
.tbl-filtering-block tr:last-child td {
  border-bottom: none;
}
.tbl-filtering-block th {
  background: #fff;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.12);
  position: sticky;
  border-bottom: 0;
  top: 0;
  z-index: 2;
  padding: 4px;
  font-weight: bold;
  user-select: text;
}
.tbl-filtering-block .empty-table-footer__text {
  font-weight: bold;
  color: #777;
  padding: 18px;
}
.tbl-filtering-block .head-filter {
  white-space: nowrap;
  margin-bottom: 5px;
}
.tbl-filtering-block .v-pagination {
  margin-top: 10px;
}
.tbl-filtering-block .v-pagination__item, .tbl-filtering-block .v-pagination__navigation {
  height: 30px;
  padding: 0 3px;
  font-size: inherit;
}
.tbl-filtering-block .cursor-pointer {
  cursor: pointer !important;
}
.tbl-filtering-block .cursor-auto {
  cursor: auto;
}
.add-border-right {
  border-right: 1px solid #dddddd;
}
.add-border-bottom {
  border-bottom: 1px solid #dddddd;
}
.table-filtering-popup-filter-title {
  text-align: center;
  font-weight: bold;
  margin-bottom: 10px;
  padding-right: 20px;
}
.table-filtering-popup-filter-title__close-btn {
  position: absolute;
  right: 10px;
  top: 4px;
  font-size: 20px;
  cursor: pointer;
  user-select: none;
}
.table-filtering-popup-filter-title__close-btn:after {
  content: "✕";
  color: #cecece;
}
.table-filtering-popup-filter-title__close-btn:hover:before {
  content: " ";
  width: 24px;
  height: 24px;
  background-color: #ddd;
  position: absolute;
  top: 2px;
  left: -3px;
  opacity: 0.5;
  border-radius: 50%;
}
.form-field-date-time-select {
  position: relative;
}
.form-field-date-time-select:not(.form-field-date-time-select--left-lable) .v-input__slot {
  flex-direction: column;
  align-items: start;
}
.form-field-date-time-select .date-time-391572__label {
  font-size: 14px;
  margin-left: 2px;
  margin-right: 10px;
}
.form-field-date-time-select .date-time-391572__label--top {
  color: #777;
  width: 224px;
  text-align: center;
  margin: -8px 0 7px;
}
.form-field-date-time-select .date-time-391572__input {
  min-width: 110px;
  max-width: 110px;
  cursor: pointer;
}
.form-field-date-time-select .date-time-391572__input--gag input {
  color: #aaa !important;
}
.form-field-date-time-select .date-time-391572__input--gag-unlimited input {
  font-size: 30px;
}
.form-field-date-time-select .date-time-391572__group {
  display: flex;
  align-items: center;
}
.form-field-date-time-select .date-time-391572__group > *:not(:first-child) {
  margin-left: 1px;
}
.form-field-date-time-select .v-messages {
  padding-left: 12px;
}
.form-field-date-time-select.error--text .v-label, .form-field-date-time-select.error--text fieldset {
  color: #ff5252 !important;
  caret-color: #ff5252 !important;
}


.cell-switch[data-v-037cf396] {
  padding-bottom: 2px !important;
  padding-left: 5px !important;
}

.modal-import-calllist .tbl-fields-settings {
  border: 1px solid #ccc;
  border-radius: 5px;
}
.modal-import-calllist .tbl-fields-settings th {
  font-size: 14px !important;
}

.audio-table-cell-btn[data-v-a5ebbb12] {
  margin-top: -3px;
  height: 24px;
}
.audios-block[data-v-a5ebbb12] {
  min-width: 180px;
  min-height: 50px;
  max-height: 180px;
  overflow-y: auto;
}
.audio-player-cell[data-v-a5ebbb12] {
  display: block;
  height: 49px;
}
.audio-player-cell[data-v-a5ebbb12]:focus {
  outline: none;
}
.modal-call-info .cell-title {
  width: 300px;
  font-weight: bold;
  color: #777;
}
.modal-call-info .audio-player-cell {
  display: block;
  height: 49px;
}
.modal-call-info .audio-player-cell:focus {
  outline: none;
}
.page-callsessions .inner-table-header-title {
  font-size: 17px;
  color: #94c194;
  padding-top: 6px;
  padding-right: 10px;
  border-right: 1px solid #dadada;
}
.page-callsessions .inner-table-header-count {
  padding-top: 9px;
  padding-left: 5px;
}
.page-callsessions .panel-filtering_cnt-on-page {
  display: none;
}
.page-callsessions .session-abonents-block .panel-filtering-abonents {
  background: radial-gradient(92% 70%, white, #dee8ec) !important;
}
.page-callsessions .session-abonents-block .inner-table-header-title {
  color: #94b7c1;
}
.page-callsessions .session-abonents-block .tbl-filtering-block tr:nth-of-type(odd) {
  background-color: #eef6f9 !important;
}
.page-callsessions .session-abonents-block .tbl-filtering-block tr:not(.empty-table-footer):hover {
  background-color: #dee8ec !important;
}
.page-callsessions .tbl-session-operators .v-data-table__wrapper, .page-callsessions .tbl-session-abonents .v-data-table__wrapper {
  max-height: calc(50vh - 160px);
}
.sidebar-menu .v-list-item, .sidebar-menu .v-list-item::before {
  border-radius: 0 25px 25px 0;
}
.sidebar-menu .v-list-group__header.v-list-item--active::before {
  background-color: #ccc !important;
}
.sidebar-menu .v-list-group__items .v-list-item {
  min-height: 35px !important;
}
.v-navigation-drawer__content {
  padding-top: 20px;
}
.sidebar-min-button {
  position: absolute;
  bottom: 0;
}
@charset "UTF-8";
.main-page-content {
  margin: 20px 16px 16px;
}

/* Список выпадающего меню */
.dropdown-menu-list > * {
  display: block;
  color: white;
  font-size: 14px;
  padding: 14px 18px 10px !important;
  cursor: pointer;
}
.dropdown-menu-list > *:not(:last-child) {
  border-bottom: 1px solid #0001;
}
.dropdown-menu-list > *:hover {
  background-color: #f2f2f2;
  color: #666;
}
@charset "UTF-8";
.page-user-authorization {
  /* Отмена подсветки инпута в Chrome при автовыборе значения средствами браузера */
}
.page-user-authorization input:-webkit-autofill,
.page-user-authorization input:-webkit-autofill:focus {
  transition: background-color 600000s 0s, color 600000s 0s;
}
.service-trunks__label {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.87);
}
.service-trunks__label {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.87);
}
.panel-import-export-trunks {
  margin-bottom: 12px;
}
.branch-child[data-v-7a9fc16e] {
  margin-left: 28px;
}
.cursor-unset[data-v-7a9fc16e] {
  cursor: unset !important;
}
.tree-row[data-v-7a9fc16e] {
  line-height: 0;
  height: 22px;
  margin-bottom: 6px;
}
.tree-row input[data-v-7a9fc16e] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  margin-right: 6px;
}
.tree-row input[disabled][data-v-7a9fc16e] {
  cursor: unset !important;
}
.tree-row input[disabled] + label[data-v-7a9fc16e] {
  cursor: unset !important;
}
.tree-row label[data-v-7a9fc16e] {
  line-height: 17px;
  vertical-align: top;
  cursor: pointer;
}
.tree-row label .tree-row__icon[data-v-7a9fc16e] {
  width: 10px;
  margin-right: 4px;
  margin-top: -2px;
}


.cell-switch[data-v-1a3e21e7] {
  padding-bottom: 2px !important;
  padding-left: 5px !important;
}


.page-operators-report {
  max-width: 670px;
  font-size: 15px;
}
.page-projects-statistics .tbl-project-statistic table {
  border: 1px solid #ddd;
  border-left: none;
  border-collapse: collapse !important;
  max-width: 1000px;
}
.page-projects-statistics .tbl-project-statistic table td {
  font-size: 0.96rem !important;
  border-left: 1px solid #ddd;
  color: #777;
  padding: 4px 6px !important;
  height: unset !important;
}
.page-projects-statistics .tbl-project-statistic table tr:nth-of-type(odd) {
  background-color: #f2f5f2 !important;
}
.page-projects-statistics .tbl-project-statistic table tr:hover {
  background-color: #e2e8e3 !important;
}
