/* src/styles.scss */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Nunito, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24.55px;
  color: black;
}
html {
  scroll-behavior: smooth;
  overflow-y: auto;
  overflow-x: hidden;
}
body {
  background-color: #eceefe;
  overflow-y: auto;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  cursor: pointer;
}
h1 {
  font-size: 46px;
  font-weight: 700;
  line-height: 55.2px;
  color: #444df2;
}
h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 43.65px;
  line-height: 38.4px;
  color: #444df2;
}
h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 43.65px;
}
hr {
  border: none;
  background-color: #adb0d9;
  height: 1px;
}
.btn {
  font-size: 18px;
  font-weight: 700;
  line-height: 24.55px;
  border: unset;
  border-radius: 25px;
  padding: 12px 25px;
  color: white;
  cursor: pointer;
  transition: all 100ms ease-out;
}
.btn-prim {
  background-color: #444df2;
}
.btn-prim:hover {
  background-color: #797ef3;
}
.btn-prim:active {
  background-color: #444df2;
}
.btn-prim:disabled {
  background-color: #686868;
}
.btn-sec {
  border: 1px solid #797ef3;
  background-color: white;
  color: #444df2;
}
.btn-sec:hover {
  border: 1px solid #535af1;
  background-color: #535af1;
  color: white;
}
.btn-sec:active {
  border: 1px solid #444df2;
  background-color: #444df2;
  color: white;
  transition: none;
}
.btn-sec:disabled {
  border: 1px solid #686868;
  background-color: white;
  color: #686868;
}
.material-symbols-rounded {
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-feature-settings: "liga";
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  font-variation-settings: "GRAD" 100;
}
.icon-btn {
  height: 40px;
  width: 40px;
  border: unset;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 75ms;
  background-color: unset;
  cursor: pointer;
}
.icon-btn:hover {
  background-color: #eceefe;
}
.icon-btn:hover .material-symbols-rounded {
  color: #535af1;
  font-variation-settings: "GRAD" 200;
}
.icon-btn-small {
  height: 34px;
  width: 34px;
}
.message-img {
  max-height: 200px;
  width: 100%;
  max-width: 300px;
  object-fit: contain;
}
.avatar {
  border-radius: 50%;
  object-fit: cover;
}
.avatar-34 {
  height: 34px;
  width: 34px;
}
.avatar-40 {
  height: 40px;
  width: 40px;
  border: 2px solid white;
}
.avatar-50 {
  height: 50px;
  width: 50px;
}
.avatar-64 {
  height: 64px;
  width: 64px;
}
.avatar-70 {
  height: 70px;
  width: 70px;
}
.avatar-120 {
  height: 120px;
  width: 120px;
}
.avatar-168 {
  height: 168px;
  width: 168px;
}
.avatar-200 {
  height: 200px;
  width: 200px;
}
.person {
  display: flex;
  flex-direction: row;
  justify-content: normal;
  align-items: center;
  gap: 15px;
  border-radius: 35px;
  padding: 4px 20px;
  width: fit-content;
  cursor: pointer;
}
.person:hover {
  background-color: #eceefe;
}
.mention {
  color: #535af1;
}
.d-none {
  display: none !important;
}
.content-wrapper {
  max-width: 1920px;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  border-radius: 4px;
  background-color: #c7c9e5;
}
::-webkit-scrollbar-thumb {
  background: #797ef3;
  border-radius: 4px;
}
.m-btm-8 {
  margin-bottom: 8px;
}
.m-btm-16 {
  margin-bottom: 16px;
}
.m-btm-32 {
  margin-bottom: 32px;
}
.m-btm-40 {
  margin-bottom: 40px;
}
.width-100 {
  width: 100%;
}
.rotate-180deg {
  rotate: -180deg;
}
.sectionDflex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.dFlexRowFlex-StartCenter {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.dFlexRowFlex-EndCenter {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
.dFlexRowSpaceBetweenCenter {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.dFlexColumn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.dFlexColumnCenterFlexStart {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.dFlexRowFlexEndCenter {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
.dFlexRowCenterCenter {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.dFlexRowFlexEndCenter {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
.sectionHidden {
  transform: translateX(-200%);
}
.sectionDisplayed {
  transform: translateX(0%);
}
.slideIn_Out {
  transition: 0.5s ease;
}
.dNone {
  display: none !important;
}
.fixed {
  position: fixed !important;
}
.height100 {
  height: 100%;
}
.profil-status-container {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.status-circle {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 14px;
  width: 14px;
  border: 2px solid white;
  border-radius: 50%;
}
.status-online {
  background-color: #92C83E;
}
.status-offline {
  background-color: #686868;
}
@media (max-width: 1968px) {
  .content-wrapper {
    max-width: unset;
  }
}
@media (max-width: 654px) {
  .content-wrapper {
    padding: 0 8px;
  }
  h1 {
    font-size: 32px;
    line-height: 38.4px;
  }
  h2 {
    font-size: 28px;
    line-height: 32px;
  }
}
@media (max-width: 450px) {
  .btn {
    padding: 12px 16px;
  }
}
@media (max-width: 360px) {
  .message-img {
    max-width: 190px;
  }
}

/* src/styles/font.scss */
@font-face {
  font-display: swap;
  font-family: "Nunito";
  font-style: normal;
  font-weight: 200;
  src: url("./media/nunito-v26-latin-200-ZOEBS5I3.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Nunito";
  font-style: italic;
  font-weight: 200;
  src: url("./media/nunito-v26-latin-200italic-3XR7YYKF.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Nunito";
  font-style: normal;
  font-weight: 300;
  src: url("./media/nunito-v26-latin-300-OWQTKE3B.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Nunito";
  font-style: italic;
  font-weight: 300;
  src: url("./media/nunito-v26-latin-300italic-QV7564OB.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Nunito";
  font-style: normal;
  font-weight: 400;
  src: url("./media/nunito-v26-latin-regular-KUQBXIQG.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Nunito";
  font-style: italic;
  font-weight: 400;
  src: url("./media/nunito-v26-latin-italic-3L2MTEGU.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Nunito";
  font-style: normal;
  font-weight: 500;
  src: url("./media/nunito-v26-latin-500-QUO7LBSJ.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Nunito";
  font-style: italic;
  font-weight: 500;
  src: url("./media/nunito-v26-latin-500italic-GGHTL52G.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Nunito";
  font-style: normal;
  font-weight: 600;
  src: url("./media/nunito-v26-latin-600-QDJ4KVOQ.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Nunito";
  font-style: italic;
  font-weight: 600;
  src: url("./media/nunito-v26-latin-600italic-REFAPIFY.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Nunito";
  font-style: normal;
  font-weight: 700;
  src: url("./media/nunito-v26-latin-700-ESXOFP3K.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Nunito";
  font-style: italic;
  font-weight: 700;
  src: url("./media/nunito-v26-latin-700italic-M7QS4HSF.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Nunito";
  font-style: normal;
  font-weight: 800;
  src: url("./media/nunito-v26-latin-800-XZFNWRCQ.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Nunito";
  font-style: italic;
  font-weight: 800;
  src: url("./media/nunito-v26-latin-800italic-PRCVC32O.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Nunito";
  font-style: normal;
  font-weight: 900;
  src: url("./media/nunito-v26-latin-900-SRQIEDZU.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Nunito";
  font-style: italic;
  font-weight: 900;
  src: url("./media/nunito-v26-latin-900italic-UZ55A6W7.woff2") format("woff2");
}
@font-face {
  font-family: "Material Symbols Rounded";
  font-style: normal;
  font-weight: 100 700;
  src: url("./media/font-variable-VTQWAA4K.woff2") format("woff");
}

/* angular:styles/global:styles */
