.call-history-sidenav {
  width: 30%;
  min-width: 440px;
  overflow: hidden;
  z-index: 81;
  border-top-right-radius: var(--default-radius-large);
  border-bottom-right-radius: var(--default-radius-large);
}

.call-history-sidenav.md-locked-open {
  border-radius: var(--default-radius-large);
}

.call-history-sidenav .call-history-sidenav-header {
  padding: 0;
}

.call-history-sidenav .call-history-search-bar-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0;
}

.call-history-sidenav .call-history-search-bar-wrapper .pdf-export-selection {
  display: flex;
  padding: 0 4px;
  min-width: 60px;
  font-size: 10pt;
  justify-content: center;
  box-sizing: border-box;
  align-items: center;
}

.call-history-sidenav .call-history-search-bar-wrapper .call-history-autocomplete {
  box-shadow: none;
  background-color: rgba(var(--background-content));
  border: 2px solid rgba(var(--color-alpha-grey));
  border-radius: var(--default-radius-large);
  flex: 1;
  height: 36px;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-width: 128px;
}

.call-history-sidenav .call-history-search-bar-wrapper .call-history-autocomplete md-autocomplete-wrap {
  height: 36px;
  box-shadow: none;
  flex: 1;
}

.call-history-sidenav .call-history-search-bar-wrapper .call-history-autocomplete md-autocomplete-wrap input {
  height: 36px;
  color: rgba(var(--font-color));
  padding: 8px;
  box-sizing: border-box;
  border: none;
}

.call-history-sidenav .call-history-search-bar-wrapper button {
  margin-right: 0;
}

.call-history-sidenav .call-history-filter-wrapper .call-history-filter-group-wrapper {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
}

.call-history-sidenav .call-history-filter-wrapper .call-history-filter-group-wrapper .call-history-filter-group-title {
  display: flex;
  flex-direction: row;
  font-size: 11pt;
  justify-content: flex-start;
  align-items: center;
}

.call-history-sidenav .call-history-filter-wrapper .call-history-filter-group-wrapper .call-history-filter-group-title md-icon {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  margin: 0 8px;
}

.call-history-sidenav .call-history-filter-wrapper .call-history-filter-group-wrapper .call-history-filter-group-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.call-history-sidenav .call-history-filter-wrapper .call-history-filter-group-wrapper .call-history-filter-group-content md-menu {
  display: flex;
  flex-grow: 1;
}

.call-history-sidenav .call-history-filter-wrapper .call-history-filter-group-wrapper .call-history-filter-group-content md-menu button {
  display: flex;
  flex-grow: 1;
}

.call-history-sidenav .call-history-filter-wrapper .call-history-filter-group-wrapper .call-history-filter-group-content md-menu button md-icon {
  margin: 0 8px;
}

.call-history-sidenav .call-history-filter-wrapper .call-history-filter-group-wrapper .call-history-filter-group-content md-select {
  flex-grow: 1;
  margin: 0;
  margin-left: 12px
}

.call-history-sidenav .call-history-filter-wrapper .call-history-filter-group-wrapper .call-history-filter-group-content md-datepicker {
  flex-grow: 1;
}

.call-history-sidenav .call-history-filter-wrapper .call-history-filter-group-wrapper .call-history-filter-group-content button {
  font-size: 10pt;
  overflow: hidden;
  min-width: 80px;
  text-overflow: ellipsis;
}

.call-history-sidenav .call-history-filter-wrapper .call-history-filter-group-wrapper .call-history-filter-group-content>button {
  max-width: 80px;
}

.call-history-sidenav .call-history-filter-wrapper .call-history-filter-group-wrapper .call-history-filter-group-content>button.is-active {
  background-color: rgba(var(--primary-color));
  color: rgba(var(--font-color-invert));
}

.call-history-sidenav md-list {
  display: flex;
  flex: 1;
  flex-direction: column;
  position: relative;
}

.call-history-sidenav md-list .call-title {
  font-weight: bolder !important;
}

.call-history-sidenav md-list .call-short-description {
  min-height: 20px;
  font-weight: normal !important;
}

.call-history-sidenav md-list .call-date {
  display: flex;
  color: rgba(var(--color-alpha-grey)) !important;
  font-weight: normal !important;
}

@media (max-width: 500px) {
  .call-history-sidenav {
    width: 100vw;
    max-width: 100vw;
    min-width: 100vw;
  }
}