// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
//
// Copyright (c) KALEIDOS INC Sucursal en España SL

@use "ds/_sizes.scss" as *;
@use "ds/_borders.scss" as *;

.avatar {
  border-radius: $br-circle;
  overflow: hidden;
  border: $b-1 solid var(--border-color, none);
}

.avatar-small {
  width: $sz-24;
  height: $sz-24;
}

.avatar-medium {
  width: $sz-32;
  height: $sz-32;
}

.avatar-large {
  width: $sz-40;
  height: $sz-40;
}

.avatar-image {
  overflow: hidden;
  border-radius: $br-circle;
  background-color: var(--avatar-color);
}

.is-selected {
  --border-color: var(--color-accent-primary);

  padding: var(--sp-xxs);
}

.avatar {
  &:hover,
  &:focus {
    --border-color: var(--color-accent-primary);
  }
}
