/**
 * @file
 * Color functions.
 *
 * @package Functions.
 */
/* Tint. */
/* Shade. */
/**
 * @file
 * Global settings.
 *
 * @package Settings.
 */
/* Import. */
/* * @import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap'); */
/* Font family. */
/* Font size. */
/* Font weight. */
/* Line height. */
/* Basic colors. */
/* Status colors. */
/* Border radius. */
/* Outline. */
/* Shadow. */
/* Spacing. */
/* Width. */
/* Breakpoints. */
/* Grid breakpoints. */
/* Grid. */
/**
 * @file
 *
 * Vcard select list styles.
 * @package Molecules.
 */
/* Vcard select list. */
.vcard--select-list {
  width: 100%;
  height: 100%;
}

.m-vcard-select-list {
  width: 100%;
  height: 100%;
  padding: 1.6rem;
  position: relative;
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  gap: 3rem;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 0.8rem;
  transition: background-color ease-in-out 0.05s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  transition-property: box-shadow;
}
@media screen and (min-width: 960px) {
  .m-vcard-select-list {
    gap: 8rem;
  }
}
.m-vcard-select-list:before {
  content: "";
  display: inline-block;
  width: 1.8rem;
  height: 1.8rem;
  padding: 0;
  border-radius: 3px;
  line-height: 1.7rem;
  text-align: center;
  font-family: "Font Awesome 6 Pro";
  border: 1px solid #B5B5BE;
  color: #ffffff;
}
.m-vcard-select-list:hover {
  border: 1px solid #ccc;
}
.m-vcard-select-list__background {
  width: 100%;
  height: 26rem;
  background-color: #004455;
  display: block;
}
.m-vcard-select-list .m-avatar {
  width: 5.6rem;
  height: 5.6rem;
  margin-bottom: 0.6rem;
  border-radius: 1rem;
}
.m-vcard-select-list .m-avatar img {
  width: 100%;
  margin: 0;
  border-radius: 0;
}
.m-vcard-select-list__title h1 {
  font-size: 1.6rem;
  line-height: 2rem;
}
.m-vcard-select-list__name {
  font-size: 1.4rem;
  line-height: 2.1rem;
  color: #44444F;
}
.m-vcard-select-list__subtitle {
  text-align: left;
  font-size: 1.2rem;
  line-height: 1.8rem;
  color: #92929D;
}
.m-vcard-select-list__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: flex-start;
  gap: 1rem;
  padding: 0;
}
@media screen and (min-width: 960px) {
  .m-vcard-select-list__content {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-content: stretch;
    align-items: center;
    gap: 8rem;
  }
}
.m-vcard-select-list__account {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: center;
  gap: 1.5rem;
  padding: 0;
}
.m-vcard-select-list hr {
  width: 4.8rem;
  height: 0.2rem;
  background-color: #e2e8f0;
  border: none;
}
.m-vcard-select-list__edited {
  flex: 1 1 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  color: #64748b;
}
.m-vcard-select-list__edited span {
  margin-left: 0.5rem;
  display: inline-block;
  color: #1e293b;
}

/*# sourceMappingURL=vcard-select-list.css.map */