* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  background-color: #36393f;
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

h1, h2, h3, h4, h5, p, input, button {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  color: #8e9297;
}

button {
  background-color: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

button * {
  margin: auto;
}

input {
  outline: none;
  border: 0;
  font-family: 'Open Sans', sans-serif;
}

a:hover, a:visited, a:link, a:active {
  text-decoration: none;
  color: inherit;
}

.app {
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.server-list-box {
  width: 72px;
  background-color: #202225;
  height: 100%;
}

.server-list {
  margin: auto;
  width: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 15px 0 0 0;
  height: 100%;
}

.home-btn {
  border-radius: 25%;
  width: 48px;
  height: 48px;
  background-color: #36393f;
  -webkit-transition: ease 0.1s;
  transition: ease 0.1s;
}

.home-btn:hover {
  background-color: #5865f2;
}

.home-icn {
  max-width: 25px;
  max-height: 25px;
}

.server-icn {
  border-radius: 50%;
  width: 48px;
  height: 48px;
  background-color: #36393f;
  -webkit-transition: ease 0.1s;
  transition: ease 0.1s;
  overflow: hidden;
  margin: 4px 0;
}

.server-icn img {
  max-width: 48px;
  max-height: 48px;
}

.server-icn:hover {
  border-radius: 25%;
}

.server-list-scroll {
  overflow-y: auto;
  scrollbar-width: none;
  height: 100%;
}

.server-list-scroll::-webkit-scrollbar {
  display: none;
}

.conversation-list-box {
  background-color: #2f3136;
  width: 240px;
  height: 100%;
  position: relative;
}

.header-search-box {
  width: 100%;
  padding: 10px 0;
  margin-bottom: 8px;
  border-bottom: 2px solid #292929;
  height: 48px;
}

.header-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto;
  width: 92%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header-search-input {
  padding: 5px 5px;
  border-radius: 4px;
  width: 100%;
  background-color: #202225;
  color: #b8b8b8;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}

.friends-nitro {
  width: 93%;
  margin: auto;
}

.friends-nitro-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 42px;
  padding: 0 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  padding: 0 10px;
}

.friends-nitro-card h3 {
  font-weight: 500;
  font-size: 15px;
  color: #8e9297;
}

.hiddenbutton {
  width: 28px;
  height: 28px;
  margin-left: 7px;
}

.h
.friends-nitro-card:hover {
  background-color: #36393f;
}

.placeholder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 85%;
  margin: auto;
  margin-top: 18px;
  margin-bottom: 5px;
}

.placeholder h3 {
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  color: #8b8b8b;
}

.conversation-scroll {
  height: 75vh;
  scrollbar-width: none;
  overflow-y: auto;
}

.conversation-scroll::-webkit-scrollbar {
  display: none;
}

.conversation-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 88%;
  margin: auto;
  gap: 6px;
  padding: 5px 0;
  -webkit-transition: ease 0.2s;
  transition: ease 0.2s;
  border-radius: 5px;
  margin: auto;
}

.conversation-card * {
  margin: 0;
  text-align: start;
}

.conversation-card:hover {
  background-color: #36393f;
}

.conversation-card-user-img {
  width: 40px;
  position: relative;
  height: 34px;
}

.conversation-card-user-img img {
  max-width: 34x;
  max-height: 34px;
  border-radius: 50%;
}

.conversation-card-user-status h3 {
  font-size: 14px;
  font-weight: 500;
  color: #8e9297;
}

.conversation-card-user-status h4 {
  font-size: 11px;
  font-weight: 500;
  color: #8e9297;
}

.status {
  position: absolute;
  width: 9px;
  height: 9px;
  background-color: #499957;
  border-radius: 50%;
  bottom: -2px;
  right: 3px;
  border: 3px solid #2f3136;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.control-panel-box {
  height: 52px;
  background-color: #292b2f;
  position: absolute;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.control-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 95%;
  margin: auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.control-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.control-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.control-right button {
  padding: 7px;
}

.userimg {
  position: relative;
  height: 33px;
  width: 40px;
}

.userimg img {
  width: 33px;
  height: 33px;
  border-radius: 50%;
}

.user-status {
  position: absolute;
  width: 9px;
  height: 9px;
  background-color: #499957;
  border-radius: 50%;
  bottom: -3px;
  right: 1.5px;
  border: 3px solid #2f3136;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.user-id h3 {
  color: whitesmoke;
  font-size: 13px;
}

.user-id h4 {
  font-size: 11px;
  font-weight: 500;
  color: #bbbbbb;
}

.chat-container-box {
  width: calc(100vw - 240px  - 72px);
  overflow: hidden;
  position: relative;
}

.chat-header-box {
  width: 100%;
  height: 48px;
  border-bottom: 2px solid #292929;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.chat-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin: auto;
  padding: 0 15px;
}

.header-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 50px;
  gap: 10px;
  min-width: 150px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-left h3 {
  font-weight: 700;
  font-size: 15px;
  color: white;
}

.header-status {
  width: 10px;
  height: 10px;
  background-color: #499957;
  border-radius: 50%;
  margin: auto;
}

.header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 24;
}

.header-right button {
  height: 24px;
}

.search-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #202225;
}

.search-box input {
  padding: 3px 5px;
  border-radius: 4px;
  width: 100%;
  background-color: #202225;
  color: #b8b8b8;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  width: 120px;
}

.search-box button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
  padding: 0 5px;
  -webkit-transition: ease 0.2s;
  transition: ease 0.2s;
}

.svg-btn .svghover {
  fill: #b9bbbe;
}

.svg-btn:hover .svghover {
  fill: #e0e0e0;
}

.message-scroll {
  width: 100%;
  height: calc(100vh - 48px - 46px);
  padding: 0 15px;
  overflow-y: auto;
  scrollbar-width: thin;
}

.message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  padding: 10px 0;
}

.message-img img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.message-text h4 {
  font-size: 15px;
  font-weight: 500;
  color: #c9c9c9;
}

.name-and-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  margin-bottom: 2px;
}

.name-and-date h3 {
  font-size: 14px;
  font-weight: 600;
  color: #f1f1f1;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
}

.name-and-date h4 {
  font-size: 12px;
  font-weight: 500;
}

.date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.date hr {
  width: 100%;
  height: 1px;
  color: rgba(92, 92, 92, 0.514);
}

.date h3 {
  padding: 10px;
  min-width: 140px;
  font-size: 13px;
  text-align: center;
  font-weight: 600;
}

.message-user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.chat-footer {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: 20px;
  position: absolute;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 16px;
}

.chat-footer-box-input {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.chat-footer-box-input input {
  width: 100%;
  height: 44px;
  min-width: 160px;
  background-color: #40444b;
  font-size: 14px;
}

.chat-footer-box-input .plus-btn {
  padding: 10px 15px;
  height: 44px;
  background-color: #40444b;
  border-radius: 9px 0 0 9px;
}

.chat-footer-box-input button {
  padding: 7px;
  background-color: #40444b;
  height: 44px;
}

.emoji-btn {
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  height: 44px;
  background-color: #40444b;
}

.emoji-btn img {
  width: 24px;
  height: 24px;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.emoji-btn:hover img {
  -webkit-filter: grayscale(100%) brightness(120%);
          filter: grayscale(100%) brightness(120%);
}

@media screen and (min-width: 720px) {
  .retract {
    display: none;
  }
}

@media screen and (max-width: 800px) {
  .disappear {
    display: none;
  }
}

@media screen and (max-width: 920px) {
  .disappear2 {
    display: none;
  }
}
/*# sourceMappingURL=index.css.map */