.chd-auth__user-avatar-wrap,
.chd-auth__user-avatar-wrap::before,
.chd-auth__user-avatar-wrap::after,
.chd-auth__user-avatar-wrap *,
.chd-auth__user-avatar-wrap *::before,
.chd-auth__user-avatar-wrap *::after {
  box-sizing: border-box;
}

.chd-auth__user-avatar-wrap {
  border-radius: 25px;
  flex: 0 0 auto;
  height: 46px;
  min-width: 104px;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  background: #ccc;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  pointer-events: none;
}

.chd-auth__user-avatar-wrap--visible {
  animation: none;
  background: transparent;
  pointer-events: auto;
}

.chd-auth__user-avatar {
  background: #373A3C;
  border-radius: 25px;
  color: #000;
  display: block;
  font-size: 14px;
  font-weight: 700;
  height: 100%;
  width: 100%;
  text-align: left;
  transition: all 0.2s;
  padding: 2px;
  overflow: hidden;
  opacity: 0;
}

.chd-auth__user-avatar-wrap--visible .chd-auth__user-avatar {
  opacity: 1;
}

.chd-auth__user-avatar:link,
.chd-auth__user-avatar:visited {
  color: #000 !important;
}

.chd-auth__user-avatar:hover,
.chd-auth__user-avatar:active {
  background: #05607C;
  color: #05607C !important;
}

body[data-logged-in]:not([data-tier-free]) .chd-auth__user-avatar {
  background: linear-gradient(93deg, #D0E7B3 27.91%, #B0DDF3 100.83%);
}

body[data-logged-in]:not([data-tier-free]) .chd-auth__user-avatar:hover,
body[data-logged-in]:not([data-tier-free]) .chd-auth__user-avatar:active,
body[data-logged-in]:not([data-tier-free]) .chd-auth__user-avatar:hover .chd-auth__user-avatar-inner,
body[data-logged-in]:not([data-tier-free]) .chd-auth__user-avatar:active .chd-auth__user-avatar-inner {
  background: linear-gradient(93deg, #D0E7B3 27.91%, #D0E7B3 100.83%);
  color: #000 !important;
}

.chd-auth__user-avatar-inner {
  background: #fff;
  border-radius: inherit;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 9px;
  height: 100%;
  padding: 4px 14px 4px 4px;
}

body[data-logged-in]:not([data-tier-free]) .chd-auth__user-avatar .chd-auth__user-avatar-inner {
  background: linear-gradient(93deg, #D0E7B3 27.91%, #B0DDF3 100.83%);
}

.chd-auth__user-avatar-image-wrap {
  background-color: #373A3C;
  border-radius: 100%;
  display: flex;
  flex: 0 0 auto;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  height: 36px;
  width: 36px;
  text-align: center;
  transition: background-color 0.2s;
}

.chd-auth__user-avatar:hover {
  border-color: #05607C;
}

.chd-auth__user-avatar:hover .chd-auth__user-avatar-image-wrap {
  background-color: #05607C;
}

.chd-auth__user-avatar-image {
  display: inline-block;
  line-height: 38px;
  vertical-align: middle;
}

.chd-auth__user-avatar-image-wrap[data-logged-in] {
  display: none;
}

.chd-auth__user-avatar-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  line-height: 38px;
}

.chd-auth__user-avatar-text[data-logged-in] {
  border: medium none;
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  padding: 0;
  position: static;

  color: #D6E9BC;
  background-color: #373A3C;
  border-radius: 100%;
  display: flex;
  flex: 0 0 auto;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  height: 36px;
  width: 36px;
  text-align: center;
  white-space: nowrap;
}

@keyframes pulse {
  50% {
    opacity: 0.5;
  }
}

.chd-auth__reading-list,
.chd-auth__reading-list *,
.chd-auth__reading-list *::before,
.chd-auth__reading-list *::after {
  box-sizing: border-box;
}

.chd-auth__reading-list {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  background: #ccc;
  border-radius: 25px;
  position: relative;
  pointer-events: none;
}

.chd-auth__reading-list--visible {
  animation: none;
  background: transparent;
  border-radius: 0;
  pointer-events: auto;
}

.chd-auth__reading-list button {
  background: transparent;
  border: none;
  color: #6A9C32;
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  opacity: 0;
  padding: 0;
  vertical-align: middle;
}

.chd-auth__reading-list--visible button {
  opacity: 1;
}

.chd-auth__reading-list button::after {
  display: inline-block;
  height: 20px;
  width: 20px;
  vertical-align: middle;
}

.chd-auth__reading-list .chd-auth-btn-add-article::after {
  content: url('../images/icon-bookmark-outline.svg');
}

.chd-auth__reading-list .chd-auth-btn-remove-article::after {
  content: url('../images/icon-bookmark-solid.svg');
}

.chd-auth__reading-list .chd-auth-btn-add-article--disabled,
.chd-auth__reading-list .chd-auth-btn-remove-article--disabled {
  color: #6E6E6E;
}

.chd-auth__reading-list .chd-auth-btn-add-article--disabled::after,
.chd-auth__reading-list .chd-auth-btn-remove-article--disabled::after {
  content: url('../images/icon-bookmark-outline-grey.svg');
}

.chd-auth__reading-list-dialog {
  background: linear-gradient(102.61deg, rgba(208, 231, 179, 0.7) 23.01%, rgba(176, 221, 243, 0.7) 90.44%), #fff;
  border-radius: 5px;
  box-shadow: 0px 0px 4px 2px rgba(0, 0, 0, 0.10);
  margin-top: 15px;
  padding: 25px 33px 25px 23px;
  position: absolute;
  right: 0;
  top: 100%;
  width: 245px;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.2s;
  visibility: hidden;
}

.chd-auth__reading-list-dialog--visible {
  opacity: 1;
  visibility: visible;
}

.chd-auth__reading-list-dialog p {
  color: #000;
  font-family: "open-sans", "Open Sans", sans-serif;
  font-size: 14px !important;
  font-weight: 400;
  line-height: 1.14 !important;
  margin: 0 !important;
  text-align: left;
}

.chd-auth__reading-list-dialog p + p {
  margin-top: 18px !important;
}

.chd-auth__reading-list-dialog a,
.chd-auth__reading-list-dialog a:link,
.chd-auth__reading-list-dialog a:visited,
.chd-auth__reading-list-dialog a:hover,
.chd-auth__reading-list-dialog a:active {
  color: #000;
  font-family: "open-sans", "Open Sans", sans-serif;
  font-size: 14px !important;
  font-weight: 400;
  line-height: 1.14 !important;
  text-decoration: underline;
}

.chd-auth__btn-close-dialog {
  background: none;
  border: 0 none;
  position: absolute;
  right: 12px;
  top: 14px;
}

.chd-auth__btn-close-dialog img {
  border: 0 none;
  vertical-align: middle;
}

.hidden {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
