@charset "UTF-8";

/********* public:thxpress_avatars.less ********/
.avatar {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  vertical-align: top;
  overflow: hidden;
}
.avatar img {
  background-color: hsla(var(--xf-avatarBg));
}
.avatar.avatar--default.avatar--default--dynamic,
.avatar.avatar--default.avatar--default--text {
  font-family: 'Arial', sans-serif;
  font-weight: normal;
  text-align: center;
  text-decoration: none !important;
  line-height: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.avatar.avatar--default.avatar--default--text {
  color: hsla(var(--xf-textColorMuted)) !important;
  background: hsla(
    calc((var(--xf-textColorMuted--h) * 0.25) + (var(--xf-avatarBg--h) * 0.75)), 
    calc((var(--xf-textColorMuted--s) * 0.25) + (var(--xf-avatarBg--s) * 0.75)), 
    calc((var(--xf-textColorMuted--l) * 0.25) + (var(--xf-avatarBg--l) * 0.75)), 
    calc((var(--xf-textColorMuted--a) * 0.25) + (var(--xf-avatarBg--a) * 0.75))
  ) !important;
}
.avatar.avatar--default.avatar--default--text > span:before {
  content: '?';
}
.avatar.avatar--default.avatar--default--image {
  background-color: hsla(var(--xf-avatarBg));
  background-image: url();
  background-size: cover;
}
.avatar.avatar--default.avatar--default--image > span {
  display: none;
}
.avatar:hover {
  text-decoration: none;
}
.avatar.avatar--updateLink {
  position: relative;
}
.avatar.avatar--separated {
  border: 1px solid hsla(var(--xf-avatarBg));
}
.avatar.avatar--square {
  border-radius: 0;
}
.avatar.avatar--xxs {
  width: 24px;
  height: 24px;
  font-size: 14px;
}
.avatar.avatar--xs {
  width: 32px;
  height: 32px;
  font-size: 19px;
}
.avatar.avatar--s {
  width: 48px;
  height: 48px;
  font-size: 29px;
}
.avatar.avatar--m {
  width: 96px;
  height: 96px;
  font-size: 58px;
}
.avatar.avatar--l {
  width: 192px;
  height: 192px;
  font-size: 115px;
}
.avatar.avatar--o {
  width: 384px;
  height: 384px;
  font-size: 230px;
}
.avatar img:not(.cropImage) {
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  word-wrap: normal;
  display: block;
  border-radius: inherit;
  width: 100%;
  height: 100%;
}
.avatar:not(a) {
  cursor: inherit;
}
.avatar-update {
  width: 100%;
  height: 30px;
  bottom: -30px;
  position: absolute;
  background: hsl(0, 0%, 0%);
  background: linear-gradient(to bottom, hsla(0, 0%, 0%, 0) 0%, hsla(0, 0%, 0%, 0.3) 100%);
  -webkit-transition:  all 0.25s ease;
  transition:  all 0.25s ease;
  padding: 3px;
  overflow: hidden;
  font-family: 'Segoe UI', 'Helvetica Neue', Helvetica, Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', sans-serif;
  font-size: 12px;
  line-height: 1.4;
  display: none;
  align-items: center;
  justify-content: center;
}
.avatar-update a {
  color: inherit;
  text-decoration: none;
}
.avatar-update a:hover {
  text-decoration: underline;
}
.avatar--updateLink .avatar-update {
  display: flex;
}
.has-touchevents .avatar-update,
.avatar:hover .avatar-update {
  bottom: 0;
}
.avatar-update a {
  text-shadow: 0 0 2px hsla(0, 0%, 0%, 0.6);
  color: #fff;
}
.avatar-update a:hover {
  text-decoration: none;
}
.avatarWrapper {
  display: inline-block;
  position: relative;
}
.avatarWrapper-update {
  position: absolute;
  top: 50%;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: .8em;
  color: #fff;
  text-decoration: none;
  opacity: 0;
  -webkit-transition:  opacity 0.25s ease;
  transition:  opacity 0.25s ease;
}
.avatarWrapper-update:before {
  content: '';
  position: absolute;
  top: -100%;
  bottom: 0;
  left: 0;
  right: 0;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  background: hsl(0, 0%, 0%);
  background: linear-gradient(to bottom, hsla(0, 0%, 0%, 0) 60%, hsla(0, 0%, 0%, 0.9) 100%);
  opacity: .75;
  -webkit-transition:  opacity 0.25s ease;
  transition:  opacity 0.25s ease;
  pointer-events: none;
}
.avatarWrapper-update span {
  position: relative;
}
.avatarWrapper-update:hover {
  color: #fff;
  text-decoration: none;
}
.avatarWrapper-update:hover:before {
  opacity: 1;
}
.avatarWrapper:hover .avatarWrapper-update,
.has-touchevents .avatarWrapper-update {
  opacity: 1;
}
.avatarWrapper-update.avatarWrapper-update--small {
  font-size: 13px;
}
#wp-admin-bar-my-account #wp-admin-bar-user-info .avatar {
  width: 64px !important;
  height: 64px !important;
  font-size: 38px !important;
  line-height: .5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
#wp-admin-bar-my-account #wp-admin-bar-user-info .avatar span {
  font-size: inherit;
  line-height: inherit;
}
#wp-admin-bar-my-account.menupop.with-avatar .ab-item {
  display: inline-flex;
  align-items: center;
}
#wp-admin-bar-my-account.menupop.with-avatar .ab-item .display-name {
  margin-left: 5px;
}
#wp-admin-bar-my-account.menupop.with-avatar .ab-item .avatar {
  width: 24px !important;
  height: 24px !important;
  font-size: 14px !important;
  margin-left: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
#toplevel_page_thxpress .dashicons-before::before {
  content: " ";
  background: url("https://www.coolaler.com/forums/styles/themehouse/xpress/brandmark-light.svg");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}
#toplevel_page_thxpress:hover .dashicons-before::before {
  background: url("https://www.coolaler.com/forums/styles/themehouse/xpress/brandmark-hover.svg");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}