* {
  box-shadow: border-box;
}

body {
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4, h5, h6, h7 {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
  margin-block-start: 0em;
  margin-block-end: 0em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 0px;
}

button, input {
  outline: none;
}

button:active {
  transform: scale(0.94);
}

a {
  text-decoration: none;
}

body {
  position: relative;
}

.account-section {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.67);
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in;
}
.account-section .modal-box {
  position: absolute;
  width: 700px;
  transition: all 0.4s ease-in-out;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.account-section .accountCreation {
  display: none;
}
.account-section .show-modal {
  display: block;
}
.account-section .hide-modal {
  display: none !important;
}

.account-section .login {
  padding: 30px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  animation: heighter 0.4s ease-out forwards;
}
.account-section .login .fa-user {
  font-size: 77px;
  padding: 20px 25px;
  background: #fff;
  color: grey;
  border-radius: 98px;
  box-shadow: 37px 25px 39px -9px rgba(0, 0, 0, 0.6);
  -webkit-box-shadow: 37px 25px 39px -9px rgba(0, 0, 0, 0.6);
  -moz-box-shadow: 37px 25px 39px -9px rgba(0, 0, 0, 0.6);
}
.account-section .login h2 {
  color: #595954;
  margin: 5px 0px;
}
.account-section .login .login-form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  position: relative;
  width: 400px;
}
.account-section .login .login-form input {
  display: block;
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: none;
  border-bottom: 0.5px solid grey;
}
.account-section .login .login-form .loginBtn {
  display: block;
  margin: 0 auto;
  padding: 10px 25px;
  background: #1BBC9B;
  border: none;
  border-right: 14px;
  font-size: 15px;
  font-weight: 600;
  margin-top: 8px;
  color: #fff;
}
.account-section .login .login-form .loginBtn:hover {
  border: 1px solid #1BBC9B;
  background: none;
  color: #2A517F;
}
.account-section .login .login-form h4 {
  color: red;
  margin: 5px 0;
}
.account-section .login .Login-spinner {
  position: absolute;
  display: none;
  justify-content: center;
  align-items: center;
  text-align: center;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.account-section p {
  margin-top: 7px;
}
.account-section .CreateAccount {
  color: #2A517F;
  text-decoration: underline;
}
.account-section .CreateAccount:hover {
  color: red;
}

.accountCreation {
  padding: 30px;
  text-align: center;
  border-radius: 20px !important;
  animation: heighter2 0.4s ease-out;
}
.accountCreation h2 {
  margin: 10px 0;
  color: #595954;
}
.accountCreation p {
  margin: 0;
  padding-bottom: 5px;
}
.accountCreation .createAccountForm {
  display: flex;
  flex-flow: column;
  justify-content: center;
  position: relative;
}
.accountCreation .createAccountForm input {
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  border: none;
  border-bottom: 0.5px solid grey;
}
.accountCreation .createAccountForm .success-message {
  width: 100%;
  background: #5FE07E;
  padding: 10px;
  text-align: center;
  color: #fff;
  font-size: 15px;
  margin: 7px 0;
  display: none;
}
.accountCreation .createAccountForm button {
  margin: 10px auto;
  padding: 16px 30px;
  border: 0;
  outline: 0;
  background: #1BBC9B;
  color: #fff;
}
.accountCreation .createAccountForm button:hover {
  border: 1px solid #1BBC9B;
  background: none;
  color: #2A517F;
}

.accountCreation .createAccountForm .file {
  display: flex;
}
.accountCreation .createAccountForm .file input {
  padding: 0;
  margin: 5px 0 3px 0;
}
.accountCreation .createAccountForm .CreateAccount-spinner {
  position: absolute;
  display: none;
  justify-content: center;
  align-items: center;
  text-align: center;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.accountCreation a {
  color: #2A517F;
}

@keyframes heighter {
  from {
    height: 0;
  }
  to {
    height: 500px;
  }
}
@keyframes heighter2 {
  from {
    height: 0;
  }
  to {
    height: 660px;
  }
}
.scetion-wrap {
  position: relative;
}

.side-bar {
  background: #258c60;
  height: 100vh;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: space-between;
}
.side-bar .upper-section {
  padding-top: 15px;
}
.side-bar .icons {
  color: #fff;
  margin: 10px 0;
  font-size: 20px;
}

.left-bar {
  background: #1b1b1b;
  height: 100vh;
  text-align: center;
  color: #6d6767;
}
.left-bar .profile-card {
  width: 100%;
  background: #1b1b1b;
  display: flex;
  align-items: center;
  flex-flow: column;
  padding: 14px;
}
.left-bar .profile-card h4, .left-bar .profile-card h6 {
  margin: 5px 0;
}
.left-bar .profile-image {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: black;
  overflow: hidden;
  box-shadow: 24px 20px 25px -7px rgba(0, 0, 0, 0.69);
  -webkit-box-shadow: 24px 20px 25px -7px rgba(0, 0, 0, 0.69);
  -moz-box-shadow: 24px 20px 25px -7px rgba(0, 0, 0, 0.69);
}
.left-bar .profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.left-bar .userSearch {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
}
.left-bar .userSearch .search-box {
  position: relative;
  height: 100%;
}
.left-bar .userSearch .search-box input {
  background: transparent;
  border: none;
  padding: 4px;
  color: #fff;
  border-bottom: 0.5px solid grey;
}
.left-bar .userSearch .fa-search {
  position: absolute;
  top: 10px;
  right: 4px;
  cursor: pointer;
  color: #3e2e2e;
}

.Users {
  width: 100%;
  height: 230px;
  margin-top: 7px;
  overflow: auto;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.Users::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: rgba(245, 245, 245, 0.24);
}
.Users::-webkit-scrollbar {
  width: 3px;
  background-color: #F5F5F5;
}
.Users::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.31);
}
.Users .profile-pic-wrapper {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
}
.Users .profile-pic-wrapper img {
  width: 100%;
  height: 100%;
}
.Users li {
  display: flex;
  align-items: center;
  padding: 14px;
  border-bottom: 0.4px solid rgba(255, 255, 255, 0.43);
}
.Users li h6 {
  margin-left: 15px;
  color: rgba(255, 255, 255, 0.72);
}

.profile-footer {
  margin-top: 10px;
}
.profile-footer h4 {
  font-size: 13px;
  padding: 5px;
}
.profile-footer h3 {
  font-size: 13px;
}
.profile-footer P {
  font-size: 10px;
}

.main-bar {
  height: 100vh;
  padding-right: 0 !important;
  padding-left: 0 !important;
}
.main-bar nav {
  width: 100%;
  background: black;
  color: grey;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 19px 15px;
}
.main-bar nav .left-nav {
  display: flex;
  align-items: center;
}
.main-bar nav .left-nav .btn {
  display: none;
}
.main-bar nav .left-nav h6 {
  margin-left: 10px;
  font-size: 20px;
  color: #fff;
  font-weight: 300;
}
.main-bar nav .left-nav h6 strong {
  font-size: 22px;
}

.message-box {
  width: 100%;
  height: 90vh;
  background: #1f1f1f;
  position: relative;
  padding: 10px;
}
.message-box .delete-message-overlay {
  height: 90vh;
  background: red;
  position: absolute;
  z-index: 5;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  display: none;
  justify-content: center;
  align-items: center;
}
.message-box .delete-message-overlay .delete-message-box {
  padding: 25px 45px;
  text-align: center;
  background: #fff;
}
.message-box .delete-message-overlay .delete-message-box p {
  margin: 15px;
}
.message-box .delete-message-overlay .delete-message-box button {
  margin-left: 10px;
  margin-right: 10px;
}
.message-box ul {
  height: 100%;
  overflow: auto;
  position: relative;
}
.message-box ul .message-waiting-spinner {
  position: absolute;
  top: 40%;
  left: 45%;
  transform: translate(-50%, -50%);
}
.message-box ul li {
  display: flex;
  max-width: 380px;
  background: #258c60;
  color: #c0ded1;
  margin: 15px;
  padding: 15px;
  border-radius: 14px;
  margin-left: 24px;
  position: relative;
  box-shadow: inset -7px -7px 14px #175f40, inset 7px 7px 14px #5bb58f;
}
.message-box ul li:before {
  content: "";
  position: absolute;
  display: block;
  top: 5px;
  left: -18px;
  border-style: solid;
  border-width: 0 0px 20px 20px;
  box-shadow: inset -7px -7px 14px #175f40, inset 7px 7px 14px #5bb58f;
  border-color: transparent transparent #47a07a transparent;
}
.message-box ul li .delete-btn {
  position: absolute;
  top: 5px;
  right: 10px;
  transform: scale(1.1);
}
.message-box ul li .delete-btn:active {
  transform: scale(0.93);
}
.message-box ul li .delete-btn i {
  color: black;
}
.message-box ul li .delete-btn i:hover {
  color: red;
}
.message-box .input-section {
  width: 100%;
  height: 70px;
  background: #191515;
  position: absolute;
  bottom: 0px;
  left: 0;
  display: flex;
  align-items: center;
}
.message-box .input-section .input-user-image {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
  margin-left: 10px;
}
.message-box .input-section .input-user-image img {
  width: 100%;
  height: 100%;
}
.message-box .input-section .input-form {
  width: 80%;
  margin-left: 6px;
  display: flex;
}
.message-box .input-section .input-form input {
  width: 100%;
}
.message-box .input-section .input-form .submit-btn {
  background: #258c60;
  border: none;
  padding: 10px;
  border-radius: 50%;
  margin-left: 8px;
}

.show-delete-Message {
  display: flex;
}

@media (max-width: 759px) {
  .account-section .modal-box {
    width: 320px;
    height: 460px;
  }
  .account-section .login {
    padding-top: 10px;
  }
  .account-section .login .login-form {
    width: 250px;
  }
  .account-section .login .fa-user {
    font-size: 70px;
  }
  .account-section .accountCreation {
    height: 600px;
  }

  .side-section {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 7;
    background: rgba(255, 255, 255, 0.69);
    width: 100% !important;
    transform: translateX(-1200px);
    transition: all 0.3s ease-in;
  }

  .show-side-section {
    transform: translateX(0);
  }

  .icons {
    font-size: 15px !important;
  }

  .profile-image {
    width: 135px !important;
    height: 135px !important;
  }

  .Users {
    height: 258px;
  }

  .left-nav .btn {
    display: block !important;
    border: 1px solid grey;
    margin-left: -8px;
    position: relative;
  }
  .left-nav .btn .fa-bars {
    font-size: 20px;
  }
  .left-nav h6 {
    font-size: 16px !important;
  }

  .message-box {
    width: 100%;
    height: 88vh;
  }
  .message-box ul {
    height: 100%;
  }
  .message-box ul .message-waiting-spinner {
    top: 40%;
  }
  .message-box ul li {
    max-width: 230px;
  }

  .input-section {
    bottom: 0;
  }
  .input-section .input-user-section {
    width: 38px;
    height: 38px;
  }
  .input-section input {
    margin: 0px;
  }
  .input-section .fa-paper-plane {
    right: 10px !important;
    top: 12px;
  }
}
@media (min-width: 760px) and (max-width: 900px) {
  .profile-image {
    width: 115px !important;
    height: 115px !important;
  }

  .left-bar .userSearch {
    width: 100%;
  }
  .left-bar .userSearch input {
    width: 100%;
  }

  .message-box {
    width: 100%;
    height: 88vh;
  }
  .message-box ul {
    height: 100%;
  }
  .message-box .input-section {
    width: 100%;
    background: #191515;
    position: absolute;
    bottom: -60px;
    left: 0;
  }
}

/*# sourceMappingURL=style.css.map */
