* {
  font-family: "NanumBarunpen";
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100vh;
}

body {
  min-width: 300px;
  height: 100vh;
}

@font-face {
  font-family: "NanumBarunpen";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_two@1.0/NanumBarunpen.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
.bubble {
  height: 50px;
  width: 280px;
  border-radius: 8px;
  position: relative;
  left: 20px;
  margin-bottom: 10px;
  padding: 10px;
  background-color: #00d8e7;
  cursor: pointer;
}
.bubble::before {
  content: "";
  position: absolute;
  top: 10px;
  left: -10px;
  border-bottom: 1rem solid transparent;
  border-right: 1rem solid #00d8e7;
}

.preview {
  display: flex;
  align-items: center;
  position: relative;
  padding: 16px;
  background-color: #fff;
}
.preview:first-child {
  top: 68px;
}
.preview .preview-column-left .preview-pic {
  height: 50px;
  width: 50px;
  border-radius: 18px;
  background-color: #2f55fd;
  margin-right: 1rem;
}
.preview .preview-column-right {
  width: calc(100% - 50px - 1rem);
}
.preview .preview-column-right .preview-nick {
  font-size: 1rem;
  font-weight: 800;
}
.preview .preview-column-right .preview-message {
  overflow: hidden;
  width: 80%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 0.8rem;
}
.preview .preview-column-right .preview-message p {
  width: 100%;
}
@media screen and (max-width: 500px) {
  .preview .preview-column-right .preview-message {
    width: 75%;
  }
}
@media screen and (max-width: 400px) {
  .preview .preview-column-right .preview-message {
    width: 60%;
  }
}
.preview .preview-column-right .preview-time {
  position: absolute;
  top: 2rem;
  right: 1.4rem;
  font-size: 0.7rem;
}
.preview .preview-column-right .preview-new {
  position: absolute;
  top: 3.5rem;
  right: 1.4rem;
  background-color: red;
  color: white;
  font-size: 0.7rem;
  height: 1rem;
  width: 1rem;
  border-radius: 50%;
  text-align: center;
}

.header {
  width: calc(100% - 60px);
  min-width: 300px;
  position: fixed;
  top: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  line-height: 36px;
  padding: 1rem;
  background-color: white;
}
.header .header-title {
  font-size: 1em;
}
.header .header-menu {
  display: flex;
}
.header .header-menu .header-icon {
  height: 36px;
  width: 36px;
  border-radius: 50%;
  display: block;
  text-align: center;
  cursor: pointer;
}
.header .header-menu .header-icon:hover {
  background-color: #aeaeae;
}

.nav-list {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 60px;
  height: 100%;
  width: 60px;
  border-radius: 0;
  background-color: aliceblue;
  list-style-type: none;
}
.nav-list .nav-btn {
  padding: 1.2em 0;
  text-align: center;
  color: #aeaeae;
  text-decoration: none;
}
.nav-list .nav-btn.active {
  color: #000;
}
.nav-list .nav-btn:first-child {
  margin-top: 1.4em;
}

.chat {
  height: 100%;
  width: 100%;
  border-radius: 0;
  background-color: #2f55fd;
}
.chat .chat-screen {
  overflow: auto;
  height: calc(100% - 160px);
}
.chat .chat-screen .chat-screen-bar {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 5;
}
.chat .chat-screen .chat-screen-bubbles {
  padding-top: 1rem;
  list-style-type: none;
}

.chat-user {
  display: flex;
  align-items: center;
  position: relative;
  padding: 16px;
  background-color: #fff;
}
.chat-user .preview-column-left .preview-pic {
  height: 50px;
  width: 50px;
  border-radius: 18px;
  background-color: #2f55fd;
  margin-right: 1rem;
}
.chat-user .preview-column-right {
  width: calc(100% - 50px - 1rem);
}
.chat-user .preview-column-right .preview-nick {
  font-size: 1rem;
  font-weight: 800;
}
.chat-user .preview-column-right .preview-message {
  overflow: hidden;
  width: 80%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 0.8rem;
}
.chat-user .preview-column-right .preview-message p {
  width: 100%;
}
@media screen and (max-width: 500px) {
  .chat-user .preview-column-right .preview-message {
    width: 75%;
  }
}
@media screen and (max-width: 400px) {
  .chat-user .preview-column-right .preview-message {
    width: 60%;
  }
}

.chat-form {
  height: 160px;
  background-color: #f2f2f2;
}
.chat-form .chat-form-plugin {
  height: 40px;
}
.chat-form .chat-form-plugin .chat-form__icon {
  line-height: 40px;
  margin-left: 15px;
}
.chat-form .chat-form-field {
  height: 120px;
  display: flex;
}
.chat-form .chat-form-field .chat-form-msg {
  height: 100%;
  width: calc(100% - 120px);
  border-radius: 0;
  border: none;
  resize: none;
}
.chat-form .chat-form-field .chat-form-msg:focus {
  outline: none;
}
.chat-form .chat-form-field .chat-form-btn {
  height: 100%;
  width: 120px;
  border-radius: 20px;
  background-color: #b6b6b6;
  border: 1px solid #dbdbdb;
}
.chat-form .chat-form-field .chat-form-btn:hover {
  background-color: #0025ca;
  color: white;
}

.chats {
  margin-left: 60px;
}
.chats .previews .preview-list a {
  text-decoration: none;
  color: #000;
}
.chats .previews .preview-list a .preview:hover {
  background-color: #dbdbdb;
}

.login-contanier {
  height: 100%;
  width: 100%;
  border-radius: 0;
  background-color: #00d8e7;
}

.login {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 500px;
  text-align: center;
}
.login .login-logo {
  height: 100px;
  width: 100px;
  border-radius: 0;
}
.login .login-logo img {
  height: 100px;
  width: 100px;
  border-radius: 0;
  position: center;
  size: auto 100%;
}
.login .login-title {
  padding: 15px 0;
  font-size: 1.4rem;
}
.login .login-find {
  display: flex;
  justify-content: center;
}
.login .login-find .login_find_account {
  margin-top: 20px;
  font-size: 0.75em;
}
.login .login-find .login_find_account:nth-child(1)::after {
  content: "|";
  margin: 0 10px;
}
.login .login-find .login_find_account:nth-child(2)::after {
  content: "|";
  margin: 0 10px;
}
.login .login-form {
  min-width: 240px;
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.login .login-form input {
  height: 40px;
  width: 240px;
  border-radius: 0;
  border: 1px solid #bdbdbd;
  font-size: 0.75em;
  text-align: center;
}
.login .login-form input:focus {
  outline: none;
}
.login .login-form .login-form-id {
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
}
.login .login-form .login-form-pw {
  border-radius: 0 0 5px 5px;
}
.login .login-form .login-form-btn {
  margin-top: 5px;
  border-radius: 5px;
  cursor: pointer;
  border: 1px solid #00579e;
  background-color: #2f55fd;
  color: white;
  transition: background-color 0.25s ease-in-out;
}
.login .login-form .login-form-btn:hover {
  background-color: #0025ca;
}/*# sourceMappingURL=main.css.map */