.JoinableCallBar_bar_5f3 {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 8px;
  background-color: #edf6e8;
  padding: 4px 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.JoinableCallBar_avatar_e59 {
  transform: scale(0.8);
}
.JoinableCallBar_info_ca1 {
  display: flex;
  align-items: center;
  color: #464a55;
}
.JoinableCallBar_bullet_eda {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #464a55;
  margin: 0 8px;
}
.JoinableCallBar_actions_c92 {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 8px;
}

.CallButton_callButton_ba3 {
  vertical-align: baseline;
}

.PlanCancellationAlertBanner_banner_452 {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.PlanCancellationAlertBanner_undoButton_54b {
  margin-left: 8px;
}

.ToFromDetails_main_717 {
  background: #fafafa;
  padding: 0 16px;
}
.ToFromDetails_withBorder_5a4 {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.ToFromDetails_to_91c,
.ToFromDetails_from_e88 {
  padding: 8px 0;
  display: grid;
  grid-gap: 8px;
  grid-template-columns: 40px 1fr auto;
  white-space: nowrap;
}
.ToFromDetails_to_91c {
  border-bottom: solid 1px #f1f1f1;
}
.ToFromDetails_emailNamePair_fd0 {
  display: grid;
  grid-row-gap: 4px;
  grid-auto-flow: row;
}
.ToFromDetails_leadName_911 {
  color: #767676;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ToFromDetails_name_c8d {
  max-width: 160px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.ToFromDetails_userInfo_972 {
  display: flex;
  gap: 4px;
  align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
}

.BottomSheet_container_d9a {
  padding: 16px 16px 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.BottomSheet_container_d9a label {
  margin: 0;
}

/**
 * TODO: port to CSS modules.
 * We cannot right now because certain subcomponents (Contact and Info) depend
 * on some styles here (changes to call status)
 */
.CallBarWrapper {
  position: relative;
}
.CallBarWrapper:not(:last-child):not(:only-child) {
  margin-bottom: 2px;
}
.CallBarWrapper::after {
  pointer-events: none;
  content: '';
  display: block;
  position: absolute;
  top: 4px;
  left: 0;
  right: 0;
  bottom: 1px;
  background-color: #fff;
  opacity: 0;
  transition: opacity 0.5s;
}
.CallBarWrapper.is-fadingOut::after {
  opacity: 1;
}
.CallBarWrapper.is-fadingIn::after {
  opacity: 0;
}
.CallBar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 60px;
  padding-bottom: 4px;
  border-top: 1px solid #e2e2e2;
  background-color: #fff;
}
.CallBar::before {
  content: ' ';
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  height: 4px;
  background-color: #b2b2b2;
  transition: background-color 250ms cubic-bezier(0.77, 0, 0.175, 1);
}
.CallBar--pending::after {
  content: ' ';
  position: absolute;
  left: 0;
  right: -28px;
  bottom: 0;
  width: calc(100% + 28px);
  height: 4px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.15) 100%);
  background-size: 28px 100%;
  animation: pendingBar 500ms linear infinite;
}
@keyframes pendingBar {
  0% {
    transform: translate(-28px, 0);
  }
  100% {
    transform: none;
  }
}
.CallBar--active:before {
  background-color: #4ec375;
}
.CallBar--active.is-dialer:before {
  background-color: #57b7df;
}
.CallBar--rejected:before,
.CallBar--rejected.is-dialer:before {
  background-color: #d0021b;
}
.CallBar--closed.is-dialer:before {
  background-color: #b2b2b2;
}
.CallBar__inner {
  display: flex;
  width: 100%;
  height: 60px;
}
.CallBar__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px 0;
  margin-bottom: 4px;
  margin: 0 12px;
  flex-grow: 1;
  min-width: 0;
}

.components_Contact_contactRow_358 {
  display: flex;
  min-height: 24px;
  margin-bottom: 4px;
  align-items: center;
}
.components_Contact_contactName_9bd {
  display: flex;
  align-items: center;
  min-width: 0;
}
.components_Contact_phoneLabel_627 {
  margin-left: 8px;
}
.components_Contact_truncate_17e {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
}
.components_Contact_contactIcon_e5a {
  color: #464a55;
  margin-right: 8px;
}
.components_Contact_leadRow_815 {
  align-items: center;
  display: flex;
  line-height: 1.14285714;
}
.components_Contact_leadIcon_164 {
  margin-right: 8px;
}
.components_Contact_leadName_2ee {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: flex;
  align-items: center;
  height: 16px;
}
.components_Contact_leadName_2ee:not(a) {
  color: #919191;
}
.components_Contact_leadStatus_fee {
  margin-left: 8px;
}
.components_Contact_leadAction_d0f {
  padding: 4px 0;
  cursor: pointer;
}
.components_Contact_leadSeparator_27a {
  font-weight: 700;
  padding: 0 8px;
}
.components_Contact_transferredFrom_33a {
  display: flex;
  align-items: center;
  margin-left: 8px;
}
.components_Contact_transferredFromIcon_901 svg {
  vertical-align: middle;
  width: 12px;
  height: 12px;
}
.components_Contact_transferredFromAvatar_d1a {
  margin: 0 8px;
  flex-shrink: 0;
}

.CallBar__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  flex: 0 0 60px;
  color: #b2b2b2;
  fill: #b2b2b2;
  line-height: 1;
  border-right: 1px solid #e2e2e2;
  padding: 8px 0;
  transition: color 250ms cubic-bezier(0.77, 0, 0.175, 1), fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
}
.CallBar__info--predictiveDialer .CallBar__infoText {
  color: #262e39;
}
.CallBar__infoImg {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
}
.CallBar__infoImg > svg {
  width: 20px;
  height: 20px;
}
.CallBar__infoImg--inbound svg {
  transform: rotate(-90deg);
}
.CallBar__infoImg--outbound svg {
  transform: rotate(180deg);
}
.CallBar__infoImg--hungUp {
  margin: auto;
}
.CallBar__infoImg--hungUp svg {
  transform: rotate(135deg);
}
.CallBar__infoImg--paused {
  margin: auto;
}
.CallBar__infoImg--paused svg {
  width: 24px;
  height: 24px;
}
.CallBar__infoImg--predictiveDialer svg {
  color: #fccc0b;
  width: 24px;
  height: 24px;
}
.CallBar__infoText {
  line-height: 1.33333333;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
/**
 * Icon colors for Call states
 * NOTE: these are dependent on the class name(s) of the parent CallBar.
 * TODO: decouple from parent styles
 */
.CallBar--active .CallBar__info {
  color: #46a546;
  fill: #46a546;
}
.CallBar--active .CallBar__info--warning {
  cursor: pointer;
  color: #9d261d;
  fill: #9d261d;
  width: 50px;
  margin-top: -4px;
  margin-left: 5px;
  padding-top: 2px;
}
.CallBar--active .CallBar__info--warning svg {
  margin-top: 10px;
  width: 30px;
}
.CallBar--active.is-dialer .CallBar__info {
  color: #049cdb;
  fill: #049cdb;
}
.CallBar--paused.is-dialer .CallBar__info {
  color: #262e39;
  fill: #262e39;
}
.CallBar--rejected .CallBar__info,
.CallBar--rejected.is-dialer .CallBar__info {
  color: #9d261d;
  fill: #9d261d;
}
.CallBar--closed.is-dialer .CallBar__info {
  color: #b2b2b2;
  fill: #b2b2b2;
}

.components_Menu_menu_bc5 {
  display: flex;
  align-items: center;
  margin-right: 8px;
}
.components_Menu_menuItem_2e6 {
  border: 0;
  outline: none;
  background: #fff;
  cursor: pointer;
  padding: 10px 0;
  margin: 0 8px;
  width: 20px;
  height: 40px;
  fill: #444;
}
.components_Menu_menuItem_2e6 svg {
  max-width: 20px;
  max-height: 20px;
}
.components_Menu_menuItem_2e6:hover {
  fill: #000;
}
.components_Menu_menuItem_2e6.components_Menu_active_f49 {
  fill: #3781b8;
}
.components_Menu_menuItem_2e6.components_Menu_active_f49:hover {
  fill: #3274a6;
}

.DialpadPopover {
  width: 216px;
  padding: 6px;
}
.DialpadPopover__button {
  width: 70px;
  height: 50px;
  display: block;
  float: left;
  color: #000;
  background-image: linear-gradient(to bottom, #f6f6f6, #f0f0f0);
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  line-height: 36px;
  margin: 1px;
  border-radius: 4px;
  cursor: pointer;
}
.DialpadPopover__button:hover {
  background-image: linear-gradient(to bottom, #f0f0f0, #e6e6e6);
  text-decoration: none;
}
.DialpadPopover__button:active,
.DialpadPopover__button--active {
  background-image: linear-gradient(to bottom, #111, #555);
  color: white;
  text-decoration: none;
}
.DialpadPopover__buttonAltText {
  color: #999;
  font-size: 10px;
  line-height: 0px;
  display: block;
}

.TransferCallPopover__inputWrap {
  position: relative;
}
.TransferCallPopover__search[type='search'] {
  border: 1px solid #ddd;
  padding-right: 26px;
  margin: 0;
  width: calc(100% - 34px);
}
.TransferCallPopover__searchIcon {
  position: absolute;
  top: 8px;
  right: 8px;
}
.TransferCallPopover__targetAvatar {
  width: 24px;
  margin-right: 8px;
  text-align: center;
}
.TransferCallPopover__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.TransferCallPopover__targetUserContainer {
  margin-right: 8px;
}
.TransferCallPopover__target {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0 8px;
}
.TransferCallPopover__target--phone,
.TransferCallPopover__target--user {
  cursor: pointer;
}
.TransferCallPopover__target--phone:hover,
.TransferCallPopover__target--user:hover {
  background: #f2f2f2;
}
.TransferCallPopover__targetLabelContainer {
  justify-content: center;
  display: flex;
  flex-direction: column;
  height: 40px;
  overflow: hidden;
}
.TransferCallPopover__targetLabelLine {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: middle;
}
.TransferCallPopover__targetLabelSmall {
  color: #666;
  font-size: 12px;
}
.TransferCallPopover__target .glyphicons-earphone {
  flex: 0 0 24px;
  height: 24px;
  margin-right: 8px;
  vertical-align: middle;
}
.TransferCallPopover__target .glyphicons-earphone > img {
  border-radius: 3px;
}
.TransferCallPopover__target .glyphicons-earphone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
}
.TransferCallPopover__target--user .TransferCallPopover__targetLabelLine {
  margin-right: 24px;
}
.TransferCallPopover__target--user:after {
  content: ' ';
  display: block;
  position: absolute;
  top: 14px;
  right: 16px;
  width: 8px;
  height: 8px;
  border: 1px solid #d6d6d6;
  border-radius: 50%;
  background: #eee;
}
.TransferCallPopover__target--online:after {
  border: 1px solid #44a674;
  background: #4ec375;
}
.TransferCallPopover__target--busy:after {
  border: 1px solid #ffbd2e;
  background: #fccc0b;
}
.TransferCallPopover__separator {
  border-top: 1px solid #e5e5e5;
  margin: 4px 0;
}
.TransferCallPopover .hidden {
  display: none;
}

.ObserverCallBar_CoachList_list_f5a {
  display: grid;
  grid-auto-flow: column;
  place-items: center;
  gap: 8px;
  margin: 0 8px;
}

.ObserverCallBar_IntroducePromo_list_117 {
  list-style: none;
  margin: 12px 0;
}
.ObserverCallBar_IntroducePromo_item_e00 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 6px 0;
}
.ObserverCallBar_IntroducePromo_icon_9d4 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 8px;
  color: #fff;
  margin-right: 10px;
}
.ObserverCallBar_IntroducePromo_icon_9d4.ObserverCallBar_IntroducePromo_listen_4bb {
  background-color: #b2b2b2;
}
.ObserverCallBar_IntroducePromo_icon_9d4.ObserverCallBar_IntroducePromo_whisper_965 {
  background-color: #3781b8;
}
.ObserverCallBar_IntroducePromo_icon_9d4.ObserverCallBar_IntroducePromo_barge_bc8 {
  background-color: #4ec375;
}
.ObserverCallBar_IntroducePromo_icon_9d4 svg {
  width: 10px;
}
.ObserverCallBar_IntroducePromo_text_c5f {
  margin-left: 4px;
  color: #767676;
}

.ObserverCallBar_InviteUser_item_8d7 {
  display: grid;
  grid-template-columns: 16px 1fr auto 14px;
  gap: 8px;
  align-items: center;
  margin-left: -28px;
}
.ObserverCallBar_InviteUser_icon_938 {
  display: flex;
  align-items: center;
  width: 14px;
  color: #4ec375;
}
.ObserverCallBar_InviteUser_icon_938 svg {
  width: 12px;
}
.ObserverCallBar_InviteUser_online_930 {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid #3e9c5e;
  background: #4ec375;
}
.ObserverCallBar_InviteUser_invited_059 {
  font-size: smaller;
  font-style: italic;
  color: #6b6e77;
  margin: 0 12px;
}

.DialerSettingsButton {
  cursor: pointer;
  outline: 0;
  display: inline-flex;
  position: relative;
  height: 28px;
  padding: 0 10px 0 1px;
  align-items: center;
  color: #262e39;
  border: 1px solid #ddd;
  border-radius: 14px;
  background-color: #fff;
}
.DialerSettingsButton::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 4px solid #000;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  line-height: 1;
  margin-left: 6px;
  margin-right: 2px;
  vertical-align: middle;
}
.DialerSettingsButton__predictiveIcon {
  display: inline-block;
  height: 28px;
  margin: -1px 0 -1px -2px;
  padding-left: 8px;
  padding-right: 15px;
  color: #fff;
  border-radius: 14px 0 0 14px;
  background-color: #ddd;
}
.DialerSettingsButton__predictiveIcon.is-on {
  background-color: #fbb963;
}
.DialerSettingsButton__predictiveIcon svg {
  width: 14px;
  height: 14px;
  vertical-align: -6px;
}
.DialerSettingsButton__avatar {
  position: relative;
  width: 26px;
  height: 26px;
}
.DialerSettingsButton__avatar.is-shifted {
  margin-left: -12px;
}
.DialerSettingsButton__avatar--more,
.DialerSettingsButton__avatar--options {
  box-sizing: border-box;
  display: inline-block;
  z-index: 1;
  font-size: 9px;
  text-align: center;
  color: #fff;
  border-radius: 50%;
  border: 3px solid #fff;
  background-color: #000;
}
.DialerSettingsButton__avatar--more::after,
.DialerSettingsButton__avatar--options::after {
  display: none;
}
.DialerSettingsButton__avatar--more.is-shifted::before,
.DialerSettingsButton__avatar--options.is-shifted::before {
  right: -2px;
}
.DialerSettingsButton__avatar--options {
  width: auto;
  padding-left: 6px;
  color: #262e39;
  font-size: 14px;
  font-weight: bold;
  border-radius: 13px;
  background-color: #fff;
}
.DialerSettingsButton__avatarImg,
.DialerSettingsButton__avatarText {
  position: relative;
  z-index: 1;
  border-radius: 50%;
}
.DialerSettingsButton__avatarImg {
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
}
.DialerSettingsButton__avatarImgWrapper {
  box-sizing: border-box;
  display: block;
  position: relative;
  z-index: 1;
  height: 0;
  padding-bottom: calc(100% - 6px);
  border-radius: 50%;
  border: 3px solid #fff;
  background-color: #fff;
}
.DialerSettingsButton__avatarText {
  margin-left: -2px;
}

.DialerSettingsPopover {
  max-width: 310px;
  width: 310px;
  padding: 0;
  text-align: left;
  border-radius: 3px;
}
.DialerSettingsPopover__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.25;
  font-weight: bold;
}
.DialerSettingsPopover__separator {
  margin: 0 -14px 16px;
  border-top-color: #e5e5e5;
  border-bottom: 0 none;
}
.DialerSettingsPopover__subHeader {
  margin-bottom: 5px;
  font-size: 16px;
  line-height: 1.25;
  font-weight: bold;
}
.DialerSettingsPopover__toggler {
  display: flex;
  align-items: flex-start;
}
.DialerSettingsPopover__togglerCopy {
  cursor: pointer;
  margin-bottom: 0;
  flex: 1;
  font-size: 13px;
  line-height: 1.23076923;
  color: #555;
}
.DialerSettingsPopover__togglerToggle {
  margin-top: -5px;
  margin-left: 10px;
  padding-top: 0;
}
.DialerSettingsPopover__callerIdSelect {
  margin-top: 15px;
  margin-bottom: 5px;
  border-radius: 3px;
}
.DialerSettingsPopover__helpLink {
  display: inline-block;
  margin-top: 4px;
  margin-bottom: 14px;
}
.DialerSettingsPopover__helpLink.is-last {
  margin-bottom: 5px;
}
.DialerSettingsPopover__promo {
  margin-bottom: 16px;
  padding: 14px;
  color: #262e39;
  background-color: #ebf6fa;
}
.DialerSettingsPopover__promoLabel {
  vertical-align: text-bottom;
  font-size: 10px;
  text-transform: uppercase;
}
.DialerSettingsPopover__promoParagraph {
  font-size: 13px;
  line-height: 1.23076923;
  margin-bottom: 10px;
}
.DialerSettingsPopover__linkCopy {
  font-size: 13px;
  cursor: pointer;
  font-weight: normal;
}
.DialerSettingsPopover__linkCopy span.inline-help-icon.glyphicons {
  cursor: default;
  color: #3781b8;
  text-decoration: none;
}
.DialerSettingsPopover__invitesUnavailable {
  font-size: 13px;
  font-weight: normal;
  color: #999;
}

.CallerIdSelect {
  box-sizing: border-box;
  display: flex;
  align-items: stretch;
  height: 52px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #c8c8c8;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.05) 0 1px 3px 0;
}
.CallerIdSelect--disabled {
  cursor: not-allowed;
  background-color: #eee;
}
.CallerIdSelect--disabled .CallerIdSelect__pickerPhone {
  cursor: not-allowed;
  background-color: #eee;
}
.CallerIdSelect__picker {
  position: relative;
  margin-right: 5px;
  flex: 1;
}
.CallerIdSelect__pickerCurrent {
  color: #222;
  font-size: 16px;
}
.CallerIdSelect__label {
  color: #666;
  font-size: 12px;
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
}
.CallerIdSelect__pickerSelect {
  appearance: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  border: 0;
  background-color: transparent;
}
.CallerIdSelect__pickerSelect:focus {
  outline: none;
}
.CallerIdSelect__copy {
  display: flex;
  align-items: stretch;
  flex: 0 1 auto;
  border-radius: 0 5px 5px 0;
  border-left: 1px solid #c8c8c8;
  background: #f7f7f7;
}
.CallerIdSelect__copyButton {
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  min-width: 38px;
  padding: 0 12px 0 10px;
  align-items: center;
  line-height: 0;
}
.CallerIdSelect__pickerPhone {
  pointer-events: none;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  min-width: 0;
  padding: 6px 8px;
  border-radius: 5px;
  background-color: #ffffff;
}
.CallerIdSelect__pickerPhone::before {
  content: '';
  display: inline-block;
  position: absolute;
  right: 2px;
  width: 0;
  height: 0;
  border-right: 3px solid transparent;
  border-left: 3px solid transparent;
  top: 19px;
  border-bottom: 5px solid #555;
}
.CallerIdSelect__pickerPhone::after {
  content: '';
  display: inline-block;
  position: absolute;
  right: 2px;
  width: 0;
  height: 0;
  border-right: 3px solid transparent;
  border-left: 3px solid transparent;
  top: 26px;
  border-top: 5px solid #555;
}

.components_NextCallButton_nextCallButton_589 {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  border: 0;
  border-radius: 14px;
  color: #fff;
  outline: 0;
  height: 28px;
  overflow: hidden;
  position: relative;
  z-index: 0;
  padding: 0 10px;
  background-color: #57b7df;
}
.components_NextCallButton_nextCallButton_589:hover {
  background-color: #4ea5c9;
}
.components_NextCallButton_nextCallButton_589::after {
  content: '';
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 0;
  background-color: #3781b8;
}
.components_NextCallButton_nextCallButton_589.components_NextCallButton_isProgressing_442::after {
  width: 100%;
  transition: width 5s linear;
}
.components_NextCallButton_nextCallButton_589.components_NextCallButton_isDisabled_9f7 {
  pointer-events: none;
}
.components_NextCallButton_nextCallButton_589.components_NextCallButton_isDisabled_9f7,
.components_NextCallButton_nextCallButton_589.components_NextCallButton_isDisabled_9f7:hover {
  cursor: default;
  background-color: #cfeaf6;
}

.RequestPausePopover {
  max-width: 194px;
  padding: 15px;
}
.RequestPausePopover__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.25;
  font-weight: bold;
}
.RequestPausePopover__cta {
  margin-bottom: 8px;
}
.RequestPausePopover__copy {
  margin-bottom: 12px;
}
.RequestPausePopover__dangerCopy {
  color: #d0021b;
  margin-bottom: 0;
}

.components_DialerStats_buttonWrapper_b5a {
  display: flex;
  margin-top: auto;
}
.components_DialerStats_buttonWrapper_b5a > * {
  margin: -6px 0 -6px -6px;
}

.CallBar_StatusText_statusText_228 {
  color: #262e39;
  line-height: 32px;
  align-self: center;
  display: flex;
  align-items: center;
  margin-right: 16px;
  white-space: nowrap;
}
.CallBar_StatusText_multiline_aa9 {
  flex-direction: column;
  line-height: 1.3;
  text-align: right;
}
.CallBar_StatusText_failed_7da {
  color: #d0021b;
}
.CallBar_StatusText_transferredTo_8e6 {
  display: flex;
  align-items: center;
  margin-left: 5px;
}
.CallBar_StatusText_transferredName_306 {
  margin: 0 6px 0 4px;
}
.CallBar_StatusText_subText_eb4 {
  color: #262e39;
}

.FailedCallsToPredictiveDialerUpsell {
  box-sizing: border-box;
  display: flex;
  width: 100%;
  height: 32px;
  padding-left: 74px;
  align-items: center;
  line-height: 32px;
  background-color: #eef7fb;
  box-shadow: inset 0 1px 0 0 rgba(0, 0, 0, 0.1), 0 1px 1px 0 rgba(0, 0, 0, 0.05);
}
.FailedCallsToPredictiveDialerUpsell__copy {
  flex: 1;
}
.FailedCallsToPredictiveDialerUpsell__cta {
  margin-left: 10px;
}
.FailedCallsToPredictiveDialerUpsell__rejectedIcon {
  margin-right: 8px;
}
.FailedCallsToPredictiveDialerUpsell__rejectedIcon svg {
  fill: #d0021b;
  width: 15px;
}
.FailedCallsToPredictiveDialerUpsell__dismissBtn {
  margin-left: auto;
  margin-right: 8px;
  padding: 0;
  line-height: 1;
  border: 0 none;
  background: transparent;
  opacity: 0.3;
}

.CallBar__infoLoader {
  margin: auto 0;
  align-self: center;
}
.CallBar__infoLoader.loader {
  margin-right: 0;
}
.CallBar__warningsList {
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 16px 22px;
  max-width: 232px;
  text-align: center;
}
.CallBar__warningsItem svg {
  margin: 0 !important;
  width: 30px;
  height: 30px;
}
.CallBar__warningsSeparator {
  width: 80px;
  border-top: 1px solid #b2b2b2;
  margin: 20px 0 10px;
}
.CallBar__warningsTitle {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  line-height: 2;
}
.CallBar__warningsText {
  line-height: 1.25;
}
.CallBar__warningsLabels {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 10px 0;
  padding: 0 2px;
}
.CallBar__warningsLabels > span {
  margin: 0 2px 2px 0;
}
.CallBar--closed.is-dialer .CallBar__contact {
  color: #262e39;
}
.CallBar__actionHint {
  margin: auto 0 auto 20px;
}
.CallBar__actionHintCopy {
  display: block;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.CallBar__activeUsers {
  display: flex;
  padding: 0 6px 0 3px;
  height: 18px;
  align-items: center;
  font-size: 11px;
  border: 1px solid #ccc;
  background-color: #eee;
}
.CallBar__activeUsersIcon {
  float: none;
  margin-top: -2px;
  margin-left: 0;
  width: 18px;
  font-size: 13px;
}
.CallBar__callCoaching {
  display: grid;
  grid-template-columns: auto auto 1px;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
}
.CallBar__callCoaching::after {
  content: '';
  display: block;
  height: 32px;
  padding-right: 8px;
  border-right: 1px solid #ddd;
}
.CallBar__actions {
  color: #262e39;
  line-height: 32px;
  align-self: center;
}
.CallBar__help {
  margin-left: 10px;
  vertical-align: 1px;
}
.CallBar__helpIcon {
  cursor: pointer;
  display: inline-block;
}
.CallBar__helpIcon:hover {
  color: #303030;
}
.CallBar__actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  border-left: 1px solid #ddd;
  padding-left: 7px;
  margin-right: 8px;
}
.CallBar__actions > * {
  margin: 0 8px;
}
.CallBar__actions > span {
  display: flex;
}
.CallBar__actions.is-alone {
  border-left-width: 0;
}
.CallBar__duration {
  font-variant-numeric: tabular-nums;
}
.CallBar__actionButton,
.CallBar__closeButton,
.CallBar__pauseDialerButton,
.CallBar__redialButton,
.CallBar__resetButton,
.CallBar__reconnectButton,
.CallBar__resumeButton,
.CallBar__backToSmartViewButton,
.CallBar__backToPreviewButton {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  border: 0;
  border-radius: 14px;
  fill: #fff;
  color: #fff;
  padding: 0;
  outline: 0;
  height: 28px;
}
.CallBar__actionButton svg,
.CallBar__closeButton svg,
.CallBar__pauseDialerButton svg,
.CallBar__redialButton svg,
.CallBar__resetButton svg,
.CallBar__reconnectButton svg,
.CallBar__resumeButton svg,
.CallBar__backToSmartViewButton svg,
.CallBar__backToPreviewButton svg {
  width: 14px;
  transition: transform 250ms cubic-bezier(0.77, 0, 0.175, 1), fill 250ms cubic-bezier(0.77, 0, 0.175, 1);
}
.CallBar__loader {
  margin-left: 14px;
  margin-right: 14px;
}
.CallBar__loader.is-interactive {
  cursor: pointer;
}
.CallBar__actionButton {
  transition: background-color 200ms, width 250ms cubic-bezier(0.77, 0, 0.175, 1);
}
.CallBar__actionButtonText {
  overflow: hidden;
  white-space: nowrap;
  margin-left: 12px;
}
.CallBar__actionButton--hangUp {
  justify-content: center;
  width: 28px;
  background-color: #d0021b;
}
.CallBar__actionButton--hangUp:hover {
  background-color: #bb0218;
}
.CallBar__actionButton--hangUp:disabled {
  background-color: #b2b2b2;
}
.CallBar__actionButton--hangUp.is-disabled {
  background-color: rgba(208, 2, 27, 0.5);
}
.CallBar__actionButton--hangUp svg {
  transform: rotate(135deg);
}
.CallBar__actionButton--answer,
.CallBar__actionButton--callBack {
  padding: 0 14px 0 8px;
}
.CallBar__actionButton--answer {
  background-color: #4ec375;
}
.CallBar__actionButton--answer:hover {
  background-color: #46b069;
}
.CallBar__actionButton--callBack {
  width: 108px;
  color: #262e39;
  fill: #262e39;
  border: 1px solid #ccc;
  background-color: #fff;
}
.CallBar__actionButton--callBack:hover {
  background-color: #f8f8f8;
}
.CallBar__pauseDialerButton {
  background-color: transparent;
  width: 32px;
  height: 32px;
  margin-left: 6px;
  margin-right: 6px;
  color: #262e39;
}
.CallBar__pauseDialerButton svg {
  width: 24px;
  height: 24px;
}
.CallBar__closeButton {
  background-color: transparent;
  width: 16px;
  height: 16px;
  color: #b2b2b2;
}
.CallBar__closeButton svg {
  width: 16px;
}
.CallBar__closeButton:hover {
  color: #262e39;
}
.CallBar__redialButton,
.CallBar__resetButton,
.CallBar__reconnectButton,
.CallBar__resumeButton,
.CallBar__backToSmartViewButton,
.CallBar__backToPreviewButton {
  padding: 0 10px;
  color: #262e39;
  background-color: transparent;
  border: 1px solid #b2b2b2;
}
.CallBar__resetButtonIcon {
  margin-right: 8px;
}
.CallBar__resetButtonIcon svg {
  width: 12px;
  height: 12px;
}
.CallBar__resumeButton {
  min-width: 126px;
}
.CallBar__redialButton,
.CallBar__reconnectButton {
  fill: #262e39;
}
.CallBar__redialButtonIcon,
.CallBar__reconnectButtonIcon {
  margin-right: 6px;
  margin-top: 3px;
}
.CallBar__backToSmartViewButton,
.CallBar__backToPreviewButton {
  align-self: flex-start;
  margin: auto 0;
}
.CallBar__backToPreviewButton {
  margin-left: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hidden {
  display: none;
}

.components_DialerUpsellText_container_dc1 {
  display: flex;
  align-items: center;
  margin-right: 16px;
}

.DialerUpsellPopover {
  text-align: left;
  max-width: 325px;
  width: 325px;
}
.DialerUpsellPopover__header {
  margin-top: 7px;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.25;
  font-weight: bold;
}
.DialerUpsellPopover__separator {
  margin: 0 0 16px;
  border-top-color: #e5e5e5;
  border-bottom: 0 none;
}
.DialerUpsellPopover__copy {
  margin-bottom: 16px;
}
.DialerUpsellPopover__copy.is-last {
  margin-bottom: 7px;
}
.DialerUpsellPopover__powerDialerCallingImage {
  position: absolute;
  width: 100%;
}
.DialerUpsellPopover__powerDialerCallingImageWrapper {
  display: block;
  position: relative;
  height: 0;
  padding-bottom: 13.4%;
  box-sizing: border-box;
  border-radius: 3px;
  border: 12px solid #f7f7f7;
  background-color: #f7f7f7;
}
.DialerUpsellPopover__helpLink {
  display: block;
  margin: 5px 0;
  text-align: left;
}

.CallBlockedModal_InboundCallBlockedModal_callerViewsSection_db6 {
  display: flex;
  margin-top: 16px;
  gap: 16px;
}
.CallBlockedModal_InboundCallBlockedModal_callerView_185 {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  max-width: 40%;
}
.CallBlockedModal_InboundCallBlockedModal_head_acc {
  display: flex;
  gap: 8px;
}
.CallBlockedModal_InboundCallBlockedModal_icon_fb3 {
  display: inline-block;
  color: #464a55;
  width: 16px;
  height: 16px;
}
.CallBlockedModal_InboundCallBlockedModal_name_399 {
  color: #262e39;
  font-size: 14px;
  line-height: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.CallBlockedModal_InboundCallBlockedModal_phone_fc6 {
  color: #616161;
  font-size: 12px;
  line-height: 16px;
}
.CallBlockedModal_InboundCallBlockedModal_arrowCircle_431 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #fff;
  border-radius: 50%;
}
.CallBlockedModal_InboundCallBlockedModal_arrowIcon_594 {
  color: #d0021b;
  width: 14px;
  height: 14px;
  line-height: 1;
}
.CallBlockedModal_InboundCallBlockedModal_hasSpacing_895 {
  margin-bottom: 30px;
}

.DoNotShowAgainTodayCheckbox {
  margin-bottom: 0;
}
.DoNotShowAgainTodayCheckbox__inputControl[type='checkbox'] {
  margin: 0 8px 3px 0;
}

.ObserverCallBar_user_c21 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 60px;
  border-right: 1px solid #e2e2e2;
}

.ObserverCallBar_ListenWhisperBargeGroupButton_group_6e8 {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, auto);
  background-color: #f1f1f1;
  border-radius: 20px;
  padding: 7px;
  margin: 10px 16px 10px 8px;
}
.ObserverCallBar_ListenWhisperBargeGroupButton_group_6e8.ObserverCallBar_ListenWhisperBargeGroupButton_loading_ecf {
  opacity: 0.8;
}
label.ObserverCallBar_ListenWhisperBargeGroupButton_button_8be {
  background-color: transparent;
  border: 2px solid transparent;
  font-size: 13px;
  line-height: 1.23076923;
  padding: 3px 8px 3px 12px;
  border-radius: 13px;
  box-shadow: none;
}
label.ObserverCallBar_ListenWhisperBargeGroupButton_button_8be:hover,
label.ObserverCallBar_ListenWhisperBargeGroupButton_button_8be:active,
label.ObserverCallBar_ListenWhisperBargeGroupButton_button_8be.isSelected,
label.ObserverCallBar_ListenWhisperBargeGroupButton_button_8be.ObserverCallBar_ListenWhisperBargeGroupButton_tempSelected_7bd {
  border-color: currentColor;
  background-color: #fff;
}
label.ObserverCallBar_ListenWhisperBargeGroupButton_button_8be:hover.ObserverCallBar_ListenWhisperBargeGroupButton_listen_69a,
label.ObserverCallBar_ListenWhisperBargeGroupButton_button_8be:active.ObserverCallBar_ListenWhisperBargeGroupButton_listen_69a,
label.ObserverCallBar_ListenWhisperBargeGroupButton_button_8be.isSelected.ObserverCallBar_ListenWhisperBargeGroupButton_listen_69a,
label.ObserverCallBar_ListenWhisperBargeGroupButton_button_8be.ObserverCallBar_ListenWhisperBargeGroupButton_tempSelected_7bd.ObserverCallBar_ListenWhisperBargeGroupButton_listen_69a {
  color: #767676;
  border-color: #b2b2b2;
}
label.ObserverCallBar_ListenWhisperBargeGroupButton_button_8be:hover.ObserverCallBar_ListenWhisperBargeGroupButton_whisper_42b,
label.ObserverCallBar_ListenWhisperBargeGroupButton_button_8be:active.ObserverCallBar_ListenWhisperBargeGroupButton_whisper_42b,
label.ObserverCallBar_ListenWhisperBargeGroupButton_button_8be.isSelected.ObserverCallBar_ListenWhisperBargeGroupButton_whisper_42b,
label.ObserverCallBar_ListenWhisperBargeGroupButton_button_8be.ObserverCallBar_ListenWhisperBargeGroupButton_tempSelected_7bd.ObserverCallBar_ListenWhisperBargeGroupButton_whisper_42b {
  color: #3781b8;
}
label.ObserverCallBar_ListenWhisperBargeGroupButton_button_8be:hover.ObserverCallBar_ListenWhisperBargeGroupButton_barge_7a5,
label.ObserverCallBar_ListenWhisperBargeGroupButton_button_8be:active.ObserverCallBar_ListenWhisperBargeGroupButton_barge_7a5,
label.ObserverCallBar_ListenWhisperBargeGroupButton_button_8be.isSelected.ObserverCallBar_ListenWhisperBargeGroupButton_barge_7a5,
label.ObserverCallBar_ListenWhisperBargeGroupButton_button_8be.ObserverCallBar_ListenWhisperBargeGroupButton_tempSelected_7bd.ObserverCallBar_ListenWhisperBargeGroupButton_barge_7a5 {
  color: #4ec375;
}
label.ObserverCallBar_ListenWhisperBargeGroupButton_button_8be.ObserverCallBar_ListenWhisperBargeGroupButton_tempSelected_7bd.ObserverCallBar_ListenWhisperBargeGroupButton_listen_69a {
  background-color: rgba(118, 118, 118, 0.1);
}
label.ObserverCallBar_ListenWhisperBargeGroupButton_button_8be.ObserverCallBar_ListenWhisperBargeGroupButton_tempSelected_7bd.ObserverCallBar_ListenWhisperBargeGroupButton_whisper_42b {
  background-color: rgba(55, 129, 184, 0.1);
}
label.ObserverCallBar_ListenWhisperBargeGroupButton_button_8be.ObserverCallBar_ListenWhisperBargeGroupButton_tempSelected_7bd.ObserverCallBar_ListenWhisperBargeGroupButton_barge_7a5 {
  background-color: rgba(78, 195, 117, 0.1);
}
label.ObserverCallBar_ListenWhisperBargeGroupButton_button_8be.isSelected .Btn__icon,
label.ObserverCallBar_ListenWhisperBargeGroupButton_button_8be .Btn__icon {
  color: inherit;
  width: 14px !important;
  height: 14px !important;
  margin: 5px 8px;
}


/*# sourceMappingURL=https://srcmaps.close.com/srcmaps/main~69ba28df.441c824533fd8603892e.js.map*/