.menubar {
  width: 24%;
  max-width: 360px;
  height: 100%;

  background-color: #fafafa;
  border-right: 1px solid lightgray;
  border-left: 1px solid lightgray;
  overflow: auto;
}

.menubar__item {
  display: block;

  padding: 15px 42px;

  outline: none;

  text-decoration: none;
  /* font-size: 1.2em; */
  color: inherit;
}

.menubar__item:hover {
  background-color: #eeeeee;
}

.menubar__item_selected {
  background-color: #e3f2fd;
}
.menubar__item_selected:hover {
  background-color: #e3f2fd;
}

.menubar__separator {
  opacity: 0.4;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 15px;
}
.menubar__separator > span {
  margin: 0 0.4em;
  font-size: 0.8em;
}
.menubar__separator::before {
  content: '';
  height: 1px;
  background-color: var(--hovered-menu);
  width: 22px;
}
.menubar__separator::after {
  content: '';
  height: 1px;
  background-color: var(--hovered-menu);
  flex: 1;
}

.menubar__sectionHint {
  padding: 15px 42px;
  font-size: 0.8em;
  opacity: 0.4;
}
.profile {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 30px 15px 15px 15px;
  gap: 15px;
}

.profile__logo {
  height: 3em;
  width: 3em;
  border-radius: 50%;
  /* overflow: hidden; */
  flex-shrink: 0;
}

.profile__name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.profile__signout {
  padding-right: 5px!important;
  padding-left: 5px!important;
}
.tab-wrapper {
  position: absolute;
  height: 100%;
  transition: transform 0.3s, opacity 0.3s;
  border-right: 1px solid rgba(0, 0, 0, .2);
  
  box-shadow: -3px 0px 3px -2px #888888;
  background-color: #fff;
  width: 50%;
  height: 100%;
  transform: translateX(200%);
  opacity: 0;
}
.tab {
  display: flex;
  flex-direction: column;
  position: relative;
  
  height: 100%;
  /* transform: translateX(200%); */


  /* opacity: 0; */

  /* transition: transform 0.3s, opacity 0.3s; */
}

.tab_hidden {
  display: none;
}

.tab__not-clickable-area {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;

  background-color: #fff;
  opacity: 0.7;
}

.tab__controls {
  border-bottom: 1px solid var(--accent-color);
  padding: 15px 15px 15px 15px;
}

.tab__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 1.5em;
}

.tab__title {
  margin: 0;
  line-height: 1;
  font-size: 1.5em;
}

.tab__title-has-changes {
  color: red;
}

.tab__header-line {
  margin-bottom: 15px;
}

.tab__buttons {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

.tab__button {
  margin-left: 1em!important;
  /*
    FIXME: что-то не так с порядком/приоритетом применения правил.
      В button есть параметр margin: 0, который должен частично
      переопределяться параметром выше. Но это проиходит, только если
      класс задать в button.css, а не здесь
  */
}

.tab__body {
  overflow: hidden;
}

.tab__no-items {
  text-align: center;
  margin-top: 100px;
}

.tab__body:hover {
  overflow-y: auto;
}

.tabLoader {
  background-color: #fff;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: rgba(255, 255, 255, .15);
 */
  /* backdrop-filter: blur(5px); */
  /* transition: opacity 0.3s; */
}
.tabLoader::after {
  content: '';
  display: block;
  width: 30px;
  height: 30px;
  background-color: #607d8b;
  opacity: 0;
  animation:
    rotation 1.6s 1s ease-in-out infinite both,
    opacity 0.8s 1s ease forwards;
}
@keyframes rotation {
  from {
    transform: scale(1) rotate(0);
  }
  50% {
    transform: scale(2) rotate(180deg);
  }
  to {
    transform: scale(1) rotate(360deg);
  }
}
@keyframes opacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.errorScreen {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 15px;
  background-color: #fff;
}

.errorScreen__message {
  width: 100%;
  padding: 40px 30px;
}
.block {
  display: block;

  box-sizing: border-box;

  padding: 15px 15px 5px 15px;
  /* background-color: lightblue; */

  border-bottom: 1px solid var(--thin-border-color);
}

.block_selectable:hover {
  background-color: var(--block-hovered-color);
}

.block_disabled {
  opacity: 0.5;
  background-color: var(--block-hovered-color);
}

.block_selected {
  background-color: var(--block-selected-color);
}

.block_selected:hover {
  background-color: var(--block-selected-color);
}

.block_error {
  background-color: #FFE6E6;
}

.block__content {
  padding-bottom: 0.8em;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
}

.block__name {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  position: relative;

  white-space: nowrap;
  color: var(--gray-text-color);
  font-size: 0.8em;
}

.block__hint {
  /* display: inline-block; */
  /* position: absolute; */
  /* left: 0; */
  flex-shrink: 0;

  width: 0.95rem;
  height: 0.95rem;

  background-color: var(--lavander-color);

  border-radius: 50%;

  text-align: center;
  line-height: 1;
  cursor: default;
}

.block__error-msg {
  flex-grow: 1;

  margin: 0 18px;

  white-space: normal;
  color: red;
}

.block__checkbox {
  margin-right: 0.8em;
}

.listCheckbox {
  box-sizing: border-box;
  display: flex;
  position: relative;
  justify-content: center;

  height: 1.5em;
  width: 1.5em;

  padding: 0;
  margin: 0;
  margin-right: 0.8em;
  background: none;
  outline: none;
  font-size: inherit;
  font-family: inherit;

  border-radius: 50%;
  border: 3px solid var(--second-accent-color);
}

.listCheckbox:hover {
  cursor: pointer;
}

.listCheckbox::before {
  content: '';
  position: absolute;
  top: 12%;

  width: 0.4em;
  height: 0.7em;

  border: solid #fff;
  border-width: 0 0.15em 0.15em 0;

  box-sizing: border-box;

  transform: rotate(45deg) scale(0);
  transition: transform 0.1s;
}

.listCheckbox_checked {
  background-color: var(--second-accent-color);
}

.listCheckbox_checked::before {
  transform: rotate(45deg) scale(1);
}

.listCheckbox_disabled {
  border-color: var(--disabled-color);
}

.listCheckbox_disabledAndChecked {
  border-color: var(--disabled-color);
  background-color: var(--disabled-color);
}
.listFilter {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  position: relative;
  top: 15px;
  margin-bottom: 0;
  color: gray;
  border-left: 1px solid #e0e0e0;
  user-select: none;
}

.listFilter__item {
  padding: 0.2em 1em;
  border-right: 1px solid #e0e0e0;
  border-top: 1px solid #e0e0e0;
}

.listFilter__item_checked {
  background-color: #3F51B5;
  color: white;
}
.listSearch {
  display: flex;
  flex-direction: row;
  position: relative;
  align-items: center;
}

.listSearch__input {
  height: 30px;
  padding-right: 2em;
  padding-left: 0.5em;
  border: 1px solid #9e9e9e;
  border-radius: 2px;
  font-size: 18px;
  outline: none;
}

.listSearch__input::placeholder {
  font-size: 14px;
}

.listSearch__clear {
  position: absolute;
  height: 1em;
  width: 1em;
  opacity: 0.4;
  cursor: pointer;
  right: 0.5em;
}
.listSearch__clear:hover {
  opacity: 1;
}
.listSearch__clear::before,
.listSearch__clear::after {
  content: '';
  left: 0.5em;
  position: absolute;
  height: 1em;
  width: 1px;
  background-color: #333333;
}
.listSearch__clear::before {
  transform: rotate(45deg);
}
.listSearch__clear::after {
  transform: rotate(-45deg);
}
.list__headerLine {
  margin-bottom: 15px;
}

.list__searchResultSeparator {
  display: flex;
  height: 2em;
  justify-content: center;
  align-items: center;
  background-color: lightyellow;
}
.listItem {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

.listItem__body {
}

.listItem__img {
  height: 45px;
  border-radius: 50%;
  margin-right: 15px;
}

.listItem__mainInfo {
  min-height: 1.25em;
}

.listItem__scndInfo {
  font-size: 0.8em;
  color: #929292;
}
.inputText {
  position: relative;
  width: 100%;
}

.inputText__field {
  padding-right: 1em;

  border: none;
  border-bottom: 2px solid lightblue;

  outline: none;
  font: inherit;
}

.inputText__fieldError {
  border-bottom-color: coral;
}

/*
.inputText__field:invalid:not(:focus):not(:placeholder-shown) {
  border-bottom-color: coral;
}

.inputText__field:invalid:not(:focus):not(:placeholder-shown) ~ .inputText__error {
  display: block;
}

.inputText__field:not(:placeholder-shown) ~ .inputText__clean {
  display: block;
}
 */

/* .inputText__field_error {
  border-bottom-color: coral;
} */

.inputText__error {
  display: none;
  color: red;
  margin-left: 1em;
}

.inputText__clean {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.5;
  cursor: pointer;
}

.inputText__clean:hover {
  opacity: 1;
}

.inputText__clean::before {
  content: '\2715';
}

/*
.input-wrapper > input:invalid:not(:focus):not(:placeholder-shown) {
  border-bottom: 2px solid coral;
}
 */

.select {
  display: flex;
  flex-direction: row;
  align-items: center;

  width: 100%;
  height: 45px;
}

.select__item {
  margin-right: 0.8em;
}

.select__emptyset {
  width: 100%;
  text-align: center;

  font-size: 0.8em;
  color: #D1D1D1;
}

/* .select__more {
  display: flex;
  align-items: center;
  height: 100%;
  padding-left: 5em;
  position: absolute;
  right: 0;
  background-image: linear-gradient(to right, transparent 0%, white 50%);
} */

.select__more {
  background-color: lavender;
  border-radius: 25px;
  padding: 0.3em;
  opacity: 1;
  font-size: 0.7em;
  color: gray;
  position: absolute;
  right: 0;
}
.selectItem {
  display: flex;
  flex-direction: row;
  align-items: center;

  /* padding: 0.2em 0.7em; */

  /* background-color: #fff; */
  /* border: 1px solid var(--second-accent-color); */
  /* border-radius: 25px; */
}

.selectItem__iconWrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #FFEBA8;
  margin-right: 0.5em;
}

.selectItem__icon {
  width: 32px;
  height: 32px; 
}

.selectItem__img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin-right: 0.5em;
}

.tagsInput {
  position: relative;
  width: 100%;
  border: none;
  border-bottom: 2px solid lightblue;
}

.tagsInput_errored {
  border-bottom-color: coral;
}

.tagsInput__input {
  display: inline-block;
  width: auto !important;
  border: none;
  outline: none;
  font: inherit;
  margin: 2px 3px;
}

.tagsInput__tag {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  margin: 2px 3px;
  padding: 1px 3px;
  background-color: #fff0e0;
  border-radius: 3px;
}

.tagsInput__remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 0.9em;
  width: 0.9em;
  opacity: 1;
  cursor: pointer;
  margin: 0 3px;
}

.tagsInput__remove:hover {
  opacity: 0.5;
}

.tagsInput__remove::before,
.tagsInput__remove::after {
  content: '';
  height: 0.9em;
  width: 1px;
  background-color: #333333;
}

.tagsInput__remove::before {
  transform: rotate(45deg);
}

.tagsInput__remove::after {
  transform: rotate(-45deg);
}
.avatar {
  /* display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%; */
  position: relative;
  height: 95px;
  width: 95px;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto;
}

.avatar__img {
  height: 100%;
  width: 100%;
  cursor: pointer;
}

.avatar__img:hover ~ .avatar__change-blind {
  transform: translateY(-76px);
}

.avatar__change-blind {
  border-radius: 50%;
  height: 95px;
  width: 95px;
  background-color: white;
  opacity: 0.8;
  position: absolute;
  top: 76px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s;
  cursor: pointer;
}

.avatar__change-blind:hover {
  transform: translateY(-76px);
}

.avatar__pen-icon {
  height: 15px;
  width: 15px;
  position: absolute;
  top: 3px;
}

.avatar__input-file {
  display: none;
}

.button {
  box-sizing: border-box;
  min-width: 70px;

  padding: 0.3em 1em;
  margin: 0;

  border-radius: 2px;
  border: 2px solid var(--accent-color);
  background: var(--accent-color);
  outline: none;

  color: #fff;
  text-align: center;
  font-size: 0.8em;
  font-family: Arial;
  line-height: inherit;
  text-decoration: none;
  text-transform: none;
  white-space: nowrap;
  user-select: none;

  transition: .2s ease-out;
}

.button_secondary {
  border: 2px solid var(--accent-color);

  background-color: #fff;

  color: var(--accent-color);
}

.button_tertiary {
  border: 2px solid #f7f7f7;

  background-color: #f7f7f7;

  color: var(--accent-color);
}

.button_disabled {
  border: 2px solid var(--disabled-color);

  background-color: var(--disabled-color);

  color: #fff;
}

.button_loader {
  display: flex;
  flex-direction: row;
  justify-content: center;
  color: #e0e0e0
}

.button_loader::before {
  content: '';
  position: absolute;
  align-self: center;
  display: block;
  width: 1em;
  height: 1em;
  background-color: #607d8b;
  /* border: 2px solid #607d8b; */
  opacity: 1;
  animation:
    button_loaderRotation-1 1.6s ease-in-out infinite both;
}
@keyframes button_loaderRotation-1 {
  from {
    transform: rotate(0);
  }
  50% {
    transform: rotate(180deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.weekdaysChooser {
  display: flex;
  flex-direction: row;
}

.weekdaysChooser__rCollumn {
  margin-left: 1.6em;
}

.weekdaysChooser__columnCaption {
  display: flex;
  flex-direction: column;
}

.weekdaysChooser__columnList {
  /* padding-left: 1.3em; */
  display: flex;
  flex-direction: column;
}

.weekdaysChooser__columnList > * {
  margin-top: 0.3em;
}

.weekdaysChooser__columnList > *:first-child {
  margin-top: 0;
}
.calendar {
  height: 360px;
  width: 320px;
  padding: 20px;
}

.calendar__header {
  height: 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 5px;
}

.calendar__title {
  font-weight: 600;
}

.calendar__controls {
  display: flex;
  flex-direction: row;
}

.calendar__controls > *:first-child {
  margin-right: 10px;
}

.calendar__body {
  border-collapse: collapse;
  width: 100%;
  height: 280px;
  table-layout: fixed;
  word-wrap: break-word;
}

.calendar__weekdays {
  height: 40px;
  width: 14.28%;
  text-align: center;
  vertical-align: middle;
  font-weight: bold;
  color: #B0BEC5;
}

.calendar__date {
  min-height: 14.28%;
  min-width: 14.28%;
  text-align: center;
  vertical-align: middle;
  cursor: default;
  position: relative;
}

.calendar__date_selected {
  color: #ffffff;
}

.calendar__date_selected::before {
  content: '';
  height: 100%;
  width: 100%;
  border-radius: 50%;
  background-color: #ffc107;
  display: block;
  position: absolute;
  top: 0;
  z-index: -1;
}

.calendar__date_selectable:hover {
  background-color: #B0BEC5;
  color: #ffffff;
}

.calendar__date_grayed {
  color: #C8C8C8;
}
.img-button {
  box-sizing: border-box;
  width: 30px;
  height: 30px;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 0;
  margin: 0;

  border-radius: 50%;
  border: 2px solid #F0F0F0;
  background: none;
  outline: none;

  color: #fff;
  font-size: 0.8em;
  font-family: Arial;
  line-height: inherit;
  text-decoration: none;
  text-transform: none;
  white-space: nowrap;
  user-select: none;
}

.img-button_disabled {
  opacity: 0.3;
}

.img-button__img {
  height: 70%;
  width: 70%;
}
.datepicker__title {
  color: #00B1FF;
  text-decoration: underline;
  cursor: pointer;
}

.datepicker__calendar {
  position: absolute;
  background-color: #f5f5f5;
  z-index: 10;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.datepicker__controls {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  padding: 0 20px 20px 20px;
}

.datepicker__controls-button {
  margin-left: 1rem;
}
.cmplkdRngInput {
  width: 100%;
  font-size: 14px;
  padding: 0 2.3em;
}

.cmplkdRngInput__row {
  height: 1.3em;
}

.cmplkdRngInput__thumbRow {
  position: relative;
  height: 1.3em;
}

.cmplkdRngInput__midRow {
  position: relative;
  height: 1.3em;
  box-sizing: border-box;
  padding: 0.2em 0;
  margin: 0.1em 0;
}

.cmplkdRngInput__track {
  height: 100%;
}

.cmplkdRngInput__thumb {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  height: 100%;
  box-sizing: border-box;
  padding: 0.2em;
  width: 4.6em;
  color: #fff;
  cursor: default;
}

.cmplkdRngInput__pmrTick {
  position: absolute;
  width: 0.1em;
  height: 1.1em;
  background: #607D8B;
  top: 0;
}

.cmplkdRngInput__scdTick {
  position: absolute;
  width: 0.1em;
  height: 1.1em;
  background: #ADD8E6;
  bottom: 0;
}

.cmplkdRngInput__collapsedTitle {
  position: absolute;
  pointer-events: none;
  color: #fff;
}
.marginLeft15 {
  margin-left: 15px;
}
.audioItem {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.audioItem__time {
  font-size: 11px;
}

/* https://ru.stackoverflow.com/a/613935 */
.audioItem__placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  width: 265px;
  height: 2em;
  background-image: url("data:image/svg+xml;utf8,<svg width='100%' height='100%' xmlns='http://www.w3.org/2000/svg'><rect width='100%' height='100%' style='fill: none; stroke: %23E0E0E0; stroke-width: 2; stroke-dasharray: 5 3'/></svg>");
  user-select: none;
}

.audioItem__placeholder_highlighted {
  background-color: aliceblue;
}

.audioItem__placeholder:active {
  background-color: aliceblue;
}

.audioItem__waveform {
  width: 265px;
  height: 18px;
}

.audioItem__group {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.audioItem__group > *:first-child {
  margin-right: 8px;
}

/* https://stackoverflow.com/a/32985581 */
/* .audioItem__group-gap {
  flex: 0 0 10px;
} */
.playButton {
  box-sizing: border-box;
  width: 35px;
  height: 35px;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 0;
  margin: 0;

  border-radius: 50%;
  border: 2px solid #F0F0F0;
  background: none;
  outline: none;

  color: #fff;
  font-size: 0.8em;
  font-family: Arial;
  line-height: inherit;
  text-decoration: none;
  text-transform: none;
  white-space: nowrap;
  user-select: none;
}

.playButton__play {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #7F7F7F;
}

.playButton__stop {
  width: 8px;
  height: 8px;
  background-color: #7F7F7F;
}

.playButton_disabled {
  opacity: 0.3;
}
.table-callstats {
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
  word-wrap: break-word;
}

.table-callstats__cell {
  height: 23px;
  padding: 0 5px;
}

.table-callstats__head-row {
  font-weight: bold;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid #707070;
}

.table-callstats__head-row td:nth-child(2) {
  color: #006100;
}
.table-callstats__head-row td:nth-child(3) {
  color: #9c0006;
}

.table-callstats__1st-col-cell {
  padding-left: 15px;
  text-align: left;
}

.table-callstats__last-col-cell {
  padding-right: 15px;
}

.table-callstats__body-row {
  text-align: right;
  border-bottom: 1px solid #707070;
}

.table-callstats__body-row td:nth-child(2) {
  color: #006100;
}
.table-callstats__body-row td:nth-child(3) {
  color: #9c0006;
}

.table-callstats__foot-row {
  font-weight: bold;
  text-align: right;
  font-size: 14px;
}

.table-callstats__foot-row td:nth-child(2) {
  color: #006100;
}
.table-callstats__foot-row td:nth-child(3) {
  color: #9c0006;
}

.table-callstats__1-col {
  border-right: 1px solid #E0E0E0;
  width: 40%;
}

.table-callstats__2-col {
  border-right: 1px solid #E0E0E0;
  background-color: #E5F8E9;
}

.table-callstats__3-col {
  /* border-right: 1px solid #E0E0E0; */
  background-color: #FFEAEC;
}

.table-callstats__4-col {
  border-right: 1px solid #E0E0E0;
}
/*
 ██████ ██   ██ ███████  ██████ ██   ██ ██████   ██████  ██   ██
██      ██   ██ ██      ██      ██  ██  ██   ██ ██    ██  ██ ██
██      ███████ █████   ██      █████   ██████  ██    ██   ███
██      ██   ██ ██      ██      ██  ██  ██   ██ ██    ██  ██ ██
 ██████ ██   ██ ███████  ██████ ██   ██ ██████   ██████  ██   ██
*/

.plain-checkbox {
  position: relative;
  display: inline-flex;
  align-items: center;

  transition: border 0.2s;
}

.plain-checkbox:hover {
  cursor: pointer;
}

/*
██ ███    ██ ██████  ██    ██ ████████
██ ████   ██ ██   ██ ██    ██    ██
██ ██ ██  ██ ██████  ██    ██    ██
██ ██  ██ ██ ██      ██    ██    ██
██ ██   ████ ██       ██████     ██
*/

.plain-checkbox__input {
  display: none;
}

/*
 ██████  ██████  ███    ██ ████████ ██████   ██████  ██
██      ██    ██ ████   ██    ██    ██   ██ ██    ██ ██
██      ██    ██ ██ ██  ██    ██    ██████  ██    ██ ██
██      ██    ██ ██  ██ ██    ██    ██   ██ ██    ██ ██
 ██████  ██████  ██   ████    ██    ██   ██  ██████  ███████
*/

.plain-checkbox__control {
  display: flex;
  justify-content: center;

  height: 1.2em;
  width: 1.2em;

  border: 0.06em solid var(--second-accent-color);
}

/* .plain-checkbox__control::after {
  content: '';
  display: none;
  align-self: center;

  width: 1.4em;
  height: 1.4em;

  border-radius: 50%;

  background-color: #fff;

  transform: scale(1, 1);
  transition: background-color 0.2s, transform 0.1s ease 0.1s;
} */

.plain-checkbox__control::before {
  content: '';
  position: absolute;
  top: 15%;

  width: 0.4em;
  height: 0.7em;

  border: solid #000;
  border-width: 0 0.15em 0.15em 0;

  box-sizing: border-box;

  transform: rotate(45deg) scale(0);
  transition: transform 0.1s;
}

/*
██       █████  ██████  ███████ ██
██      ██   ██ ██   ██ ██      ██
██      ███████ ██████  █████   ██
██      ██   ██ ██   ██ ██      ██
███████ ██   ██ ██████  ███████ ███████
*/

.plain-checkbox__label {
  margin-left: 0.3em;
  font-size: 0.9em;
}

/*
██████  ███████ ██   ██  █████  ██    ██ ██  ██████  ██████
██   ██ ██      ██   ██ ██   ██ ██    ██ ██ ██    ██ ██   ██
██████  █████   ███████ ███████ ██    ██ ██ ██    ██ ██████
██   ██ ██      ██   ██ ██   ██  ██  ██  ██ ██    ██ ██   ██
██████  ███████ ██   ██ ██   ██   ████   ██  ██████  ██   ██
*/

.plain-checkbox__input:checked ~ .plain-checkbox__control {
  /* background-color: var(--second-accent-color); */
}

/* .plain-checkbox__input:checked ~ .plain-checkbox__control::after {
  transform: scale(0);
} */

.plain-checkbox__input:checked ~ .plain-checkbox__control::before {
  transform: rotate(45deg) scale(1);
  transition: transform 0.1s ease;
}

.plain-checkbox__input:checked:disabled ~ .plain-checkbox__control {
  background-color: var(--disabled-color);
}

.plain-checkbox__input:disabled ~ .plain-checkbox__control {
  border-color: var(--disabled-color);
}

.table-callreport {
  border-collapse: collapse;
  width: 100%;
  table-layout: auto;
  word-wrap: break-word;
}

.table-callreport > thead {
  position: sticky;
  top: 0;
  background-color: #ffffff;
  opacity: 0.8;
}

.table-callreport__cell {
  height: 23px;
  padding: 0 5px;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.table-callreport__head-row {
  font-weight: bold;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid #707070;
}

.table-callreport__1st-col-cell {
  padding-left: 15px;
  text-align: left;
}

.table-callreport__last-col-cell {
  padding-right: 15px;
}

.table-callreport__body-row {
  text-align: right;
  border-bottom: 1px solid #707070;
}

.table-callreport__body-row:nth-child(odd) {
  background-color: #f7fdff;
}

.table-callreport__1-col {
  border-right: 1px solid #E0E0E0;
}

.table-callreport__2-col {
  border-right: 1px solid #E0E0E0;
  /* background-color: #E5F8E9; */
}

.table-callreport__3-col {
  border-right: 1px solid #E0E0E0;
  /* background-color: #FFEAEC; */
}

.table-callreport__4-col {
  border-right: 1px solid #E0E0E0;
}
.infiniteScrollTrigger {
  position: absolute;
  width: 100%;
  height: 5%;
  max-height: 200px;
  bottom: 0;
}
.listScrollSpinner {
  background-color: #fff;
  top: 0;
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.listScrollSpinner::after {
  content: '';
  display: block;
  width: 30px;
  height: 30px;
  background-color: #607d8b;
  opacity: 0;
  animation:
    listScrollSpinner__rotation 1.6s 0.1s ease-in-out infinite both,
    listScrollSpinner__opacity 0.5s 0.1s ease forwards;
}

@keyframes listScrollSpinner__rotation {
  from {
    transform: rotate(0);
  }

  50% {
    transform: rotate(180deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes listScrollSpinner__opacity {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.tab-body-block {
  padding: 15px 15px 5px 15px;
  min-height: 50px;
  border-bottom: 1px solid #e5e5e5;
}

.tab-body-block.list-item {
  padding: 15px;
  width: 100%;
}

.tab-body-block.list-item span {
  color: gray;
}

.tab-body-block.list-item > .tab-body-block-content > div:first-child {
  margin-bottom: 0.5em;
}

.tab-body-block:hover {
  background-color: whitesmoke;
}

.tab-body-block:hover .more-items{
  background-image: linear-gradient(to right, transparent 0%, whitesmoke 50%);
}

.tab-body-block-content {
  display: flex;
  flex-direction: column;
  /* padding: 15px; */
  padding-bottom: 0;
  min-height: 15px;
  margin: 0;
}

.tab-body-block-content.row {
  flex-direction: row;
  align-items: center;
  /* justify-content: space-between; */
  position: relative;
}

.more-items {
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 0.8em;
  /* padding: 0.3em; */
  padding-left: 5em;
  position: absolute;
  right: 0;
  /* background-color: white; */
  /* opacity: 0.8; */
  /* border-radius: 25px; */
  color: gray;
  background-image: linear-gradient(to right, transparent 0%, white 50%);
}

.more-items > div {
  background-color: lavender;
  border-radius: 25px;
  padding: 0.3em;
  opacity: 1;
}

.tab-body-block-name {
  padding-top: 10px;
  margin: 0;
  color: gray;
  text-align: right;
  position: relative;
}

.hint-button {
  height: 1.25em;
  width: 1.25em;
  display: inline-block;
  background: lavender;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  left: 0;
  cursor: default;
}

.input-wrapper {
  display: flex;
  position: relative;
  flex-direction: row;
}

.input-wrapper > input {
  flex-grow: 1;
  border: none;
  border-bottom: 2px solid lightblue;
  outline: none;
  padding-right: 1.1em;
}

.input-wrapper > input:invalid:not(:focus):not(:placeholder-shown) {
  border-bottom: 2px solid coral;
}

.input-wrapper > img {
  height: 200%;
  position: absolute;
  right: -8px;
  top: -10px;
}

.close {
  height: 1em;
  width: 1em;
  position: absolute;
  right: 0;
  opacity: 0.4;
  cursor: pointer;
  top: 1px;
}
.close:hover {
  opacity: 1;
}

.close::before, .close::after {
  content: '';
  left: 0.5em;
  position: absolute;
  height: 1em;
  width: 1px;
  background-color: #333333;
}

.close::before {
  transform: rotate(45deg);
}
.close::after {
  transform: rotate(-45deg);
}

.select-item-text {
  padding: 5px;
  border: 1px solid gray;
  border-radius: 5px;
}

.navbar {
  width: 100%;
  height: 50px;
  position: relative;
  padding: 1px 0;
  border-radius: 8px;
  box-sizing: border-box;
  overflow: hidden;
}

.navbar-track {
  position: relative;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.navbar-moire {
  position: absolute;
  background-color: rgba(241, 247, 250, .7);
  transition: background-color .2s;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}

.navbar-moire.left {
  left: 0;
  transform-origin: left;
  -webkit-transform-origin: left;
}

.navbar-moire.right {
  right: 0;
  transform-origin: right;
  -webkit-transform-origin: right;
}

.navbar-thumb {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
}

.navbar-thumb-thumb {
  z-index: 2;
  width: 100%;
  height: 100%;
  /* top: -1px; */
  box-sizing: border-box;
  /* border-left: 5px solid rgba(83, 152, 198, .2); */
  /* border-right: 5px solid rgba(83, 152, 198, .2); */
  border-top: 1px solid #c0d2e1;
  border-bottom: 1px solid #c0d2e1;
  border-radius: 8px;
  transition: border .2s;
  transform-origin: right;
  right: 0;
  position: absolute;
  opacity: .3;
}

.navbar-arrow {
  z-index: 1;
  position: absolute;
  background-color: #c0d2e1;
  height: 100%;
  width: 12px;
  opacity: .3;
}
.navbar-arrow.left {
  left: 0;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.navbar-arrow.right {
  right: 0;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.navbar-arrow.left::after,
.navbar-arrow.right::after {
  content: '';
  background-color: white;
  height: 12px;
  width: 2px;
  margin-left: -1px;
  margin-top: -6px;
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50px;
}

a.profile-menu-item {
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

a.profile-menu-item.mini {
  justify-content: center;
}

a.profile-menu-item:hover > .profile-logout-wrapper {
  display: block;
}

a.profile-menu-item.mini > div.profile-main-wrapper {
  padding: 1.6em 0;
}

div.profile-main-wrapper {
  display: inline-flex;
  align-items: center;
  padding: 1.6em 0 1.6em 0.8em;
}

.profile-logo {
  height: 3em;
  width: 3em;
  border-radius: 50%;
  margin-right: 1em;
  overflow: hidden;
}

.profile-logo.mini {
  height: 2em;
  width: 2em;
  margin: 0;
}

.profile-logo img {
  width: 100%;
}

a.profile-logout-wrapper {
  display: none;
  font-size: 1rem;
  color: var(--main-text);
  background-color: var(--coral);
  height: 100%;
  padding: 0.8em;
}

a.profile-logout-wrapper:hover {
  background-color: var(--coral);
  color: var(--main-text);
}

.ripple {
  /* position: relative; */
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
}

.ripple:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -25%;
  pointer-events: none;
  background-image: radial-gradient(circle, #000000 20%, transparent 5.01%);
  background-repeat: no-repeat;
  background-position: 25%;
  transform: scale(10, 10);
  -webkit-transform: scale(10, 10);
  opacity: 0;
  transition: transform .5s, opacity 1s;
  -webkit-transition: -webkit-transform .5s, opacity 1s;
}

.ripple:active:not(:disabled):after {
  transform: scale(0, 0);
  -webkit-ransform: scale(0, 0);
  opacity: .1;
  transition: 0s;
  -webkit-transition: 0s;
}

:root {
  --button-main-color: #607D8B /*#d44b38*/;
  --button-disabled-color: #bdbdbd;
  --coral: coral;
  --hovered-menu: #555555;
  --main-text: black;
}

body, html{
  margin: 0px;
  font-family: "segoe ui", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  line-height: 1.25;
  padding: 0px;
  overflow: hidden;
  overflow-x: auto;
}
* {
  box-sizing: border-box;
}

.wrapper {
  display: flex;
  margin: 0 auto;
  height: 100vh;
  min-width: 1360px;
  max-width: 1600px;
}

/* .menubar {
  display: flex;
  position: relative;
  align-items: center;
  height: 100%;
  width: 300px;
  float: left;
  border-right: 1px solid lightgray;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menubar:hover > .pin-wrapper {
  transform: translate(0, 0);
} */

.dashboard {
  position: relative;
  height: 100%;
  width: 76%;
}

a {
  outline: none;
  text-decoration: none;
  color: inherit;
}
a:link { }    /* unvisited link, same as regular 'a' */
a:visited { } /* visited link */
a:focus { }   /* link has focus */
a:hover { }   /* mouse over link */
a:active { }  /* selected link */

input[type="text"],
input[type="password"] {
  width: 100%;
}

::-webkit-scrollbar {
  width: 0px;
}

/* ::-webkit-scrollbar-thumb {
  background: gray;
  border-radius: 10px
} */
/*
  https://aykevl.nl/2014/09/fix-jumping-scrollbar
  https://css-tricks.com/the-current-state-of-styling-scrollbars/
  https://codepen.io/chriscoyier/pen/wQgXPV
  https://bosnaufal.github.io/vue-scrollbar/
*/

div.search-input {
  margin-bottom: 1em;
  display: flex;
  flex-direction: row;
  position: relative;
  align-items: center;
}

.search-input .close {
  top: initial;
  right: 0.5em;
}

.search-input input {
  height: 2em;
  padding-right: 2em;
  padding-left: 0.5em;
  border: 1px solid #9e9e9e;
  border-radius: 2px;
}

:root {
  --accent-color: #607D8B;
  --second-accent-color: #90a4ae;
  --disabled-color: #e0e0e0; /*#bdbdbd - better for disabled button*/
  --thin-border-color: #e5e5e5;
  --gray-text-color: #808080;
  --lavander-color: #e6e6fa;
  --block-hovered-color: #f5f5f5;
  --block-selected-color: #e3f2fd;
  --block-error-color: #ffccbc;
}

.signin {
  float: left;

  width: 320px;
  height: 100%;

  padding: 30px 0 0 0;

  /* background-color: #fafafa; */
  border-right: 1px solid lightgray;
  border-left: 1px solid lightgray;
}

.signin__buttonsRow {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  margin-top: 15px;
  margin-right: 15px;
  gap: 15px;
}

.signin__forgotButton {
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  color: #607D8B;
  text-decoration: underline;
  cursor: pointer;
}

.signin__block {
  border: none;
}
