$borderColor: rgb(224, 224, 224);
$lightBlueBg: rgb(223, 247, 255);
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.one {
  background-color: white;
}

.mainBody {
  height: 100vw;
  font-size: 20px;
  line-height: 1.6;
  color: #595959;
  position: relative;
}

.studentStatus {
  margin: 12px 0 24px 0;
  display: flex;
  flex-direction: row;
  .avatar {
    display: flex;
    flex: 1;
    justify-content: center;
    padding-right: 0.3rem;
  }
  .cardText {
    flex: 4;
  }
  .progress {
    flex: 4;
  }
}
// .cardWidth {
//   width: 50vw;
// }
.chatInput {
  position: fixed;
  bottom: 0;
  width: 100%;
  color: rgb(100, 92, 92);
  background-color: rgb(255, 255, 255);
  padding: 0.625rem 0.312rem;
  display: flex;
  .inputBox {
    flex: 1;
    margin-right: 0.8rem;
  }

  .button {
    flex: 1;
  }
}

// overwrite styles

.name {
  font-size: 14px;
  font-weight: 500;
}
.standard {
  font-size: 12px;
  line-height: 1.5;
  color: #4a4a4a;
}
