/* src/css/lib/layout.css */
:root {
  --layout-border: 1px solid #E5E7EB;
}
.list-avatar,
.list-image {
  display: grid;
  padding: 10px 0;
  grid-template-columns: 64px auto;
  border-bottom: var(--layout-border);
}
:is(.list-avatar, .list-image):first-child {
  border-top: var(--layout-border);
}
:is(.list-avatar, .list-image) .col {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  line-height: 1.5;
}
:is(.list-avatar, .list-image) .col:first-child {
  align-items: center;
}
:is(.list-avatar, .list-image) .col:last-child {
  padding: 0 28px 0 10px;
}
:is(.list-avatar, .list-image) .title {
  font-weight: bold;
}
:is(.list-avatar, .list-image) .text {
  font-size: 14px;
}
:is(.list-avatar, .list-image) .chevron {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  right: 0;
  width: 28px;
  height: 100%;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
:is(.list-avatar, .list-image) .chevron:active {
  color: var(--link-active);
}
:is(.list-avatar, .list-image) .chevron::before {
  content: "\f054";
}
:is(.list-avatar, .list-image) .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.04);
  height: 48px;
}
.list-avatar .logo {
  width: 48px;
  border-radius: 50%;
}
.list-image .logo {
  width: 64px;
  border-radius: 4px;
}
:is(.list-avatar, .list-image) .logo .icon {
  font-size: 28px;
}
:is(.list-avatar, .list-image) .logo img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
.list-avatar .logo img {
  border-radius: 50%;
}
.accordion {
  border: var(--layout-border);
  border-width: 1px 0;
}
.accordion.border {
  border-width: 1px;
}
.accordion.round {
  border-radius: 8px;
}
.accordion.round .acd-item:first-child .topic {
  border-radius: 8px 8px 0 0;
}
.accordion .acd-item .topic {
  position: relative;
  display: flex;
  align-items: center;
  height: 44px;
  font-weight: 600;
  padding: 0 34px 0 10px;
}
.accordion .acd-item .topic::before {
  content: "\2662\a0";
}
.accordion .acd-item:not(:last-child) .topic {
  border-bottom: var(--layout-border);
}
.accordion .acd-item.active .topic {
  background-color: #F3F4F6;
}
.accordion .acd-item.active:last-child .topic {
  border-bottom: var(--layout-border);
}
.accordion .acd-item .panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.accordion .acd-item .panel p {
  margin: 0;
  padding: 10px;
}
.accordion .acd-item.active:not(:last-child) .panel {
  border-bottom: var(--layout-border);
}
.accordion .acd-item .chevron {
  display: block;
  position: absolute;
  font-size: 18px;
  right: 8px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.accordion .acd-item .chevron:active {
  color: var(--link-active);
}
.accordion .acd-item .chevron::after {
  content: "\f078";
}
.accordion .acd-item.active .chevron::after {
  content: "\f00d";
  padding: 0 2.25px;
}
/*# sourceMappingURL=layout.css.map */