* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: poppins, sans-serif, Arial, Helvetica, sans-serif;
}
body {
  height: 100%; /*--------*/
}
a {
  text-decoration: none;
}
.main-section .material-icons {
  color: #f05462;
}
li {
  list-style: none;
}
h1,
h2 {
  color: #444;
}
h3 {
  color: #999;
}
.side-manu {
  position: fixed;
  background-color: #f05462;
  width: 15%;
  height: 100%; /*--------*/
  display: flex;
  flex-direction: column;
}
.side-manu .brand-name {
  height: 10%; /*--------*/
  display: flex;
  justify-content: center;
  align-items: center;
}

.side-manu li {
  font-size: 16px;
  padding: 10px 30px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.side-manu li:hover {
  background-color: white;
  color: #f05462;
}
.container {
  position: absolute;
  right: 0;
  width: 85%;
  height: 100%; /*--------*/
}
.container .header {
  position: fixed;
  top: 0;
  right: 0;
  width: 85%;
  /*height: 10vh;*/
  height: 10%; /*--------*/
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.container .header .nav {
  width: 90%;
  display: flex;
  align-items: center;
}
.container .header .nav .search {
  flex: 3;
  display: flex;
  justify-content: center;
}
.container .header .nav .search input[type="text"] {
  border: none;
  background: #f1f1f1;
  padding: 10px;
  width: 50%;
  display: flex;
  justify-content: center;
}
.container .header .nav .search button {
  width: 40px;
  height: 40px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.container .header .nav .search button i {
  width: 30px;
  height: 30px;
}
.container .header .nav .user {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.btn {
  background: #f05462;
  color: white;
  padding: 5px 10px;
  text-align: center;
}
.btn:hover {
  background: white;
  color: #f05462;
  padding: 2px 9px;
  border: 2px solid #f05462;
}
.container .header .nav .user img {
  height: 40px;
  width: 40px;
}
.container .header .nav .user .user-image-case {
  position: relative;
  width: 45px;
  height: 45px;
}

.container .header .nav .user .user-image-case img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
}

.container .main-section {
  position: relative;
  margin-top: 8%;
  margin-bottom: 8%;
  height: calc(100% - 10%);
  overflow-y: auto;
  background: #f1f1f1;
}

.container .main-section .content-1 {
  padding: 20px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  height: 33%;
}
.container .main-section .content-1 .card {
  width: 240px;
  height: 125px;
  background: rgb(255, 255, 255);
  margin: 20px 10px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.container .main-section .content-2 {
  height: 54%;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
}
.container .main-section .content-2 .recent-payments {
  flex: 5;
  background: white;
  margin: 0 15px 25px 25px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  display: flex;
  flex-direction: column;
}
.container .main-section .content-2 .new-students {
  flex: 2;
  background: white;
  margin: 0 25px 0 15px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  display: flex;
  flex-direction: column;
}
.title {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 15px 10px;
  border-bottom: 2px solid #999;
}
table {
  padding: 10px;
}
th,
td {
  text-align: left;
  padding: 6px;
}
.container .main-section .content-2 .new-students table td:nth-child(1) img {
  height: 40px;
  width: 40px;
}
.container .main-section .content-2 .new-students table td:nth-child(3) {
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .side-manu li {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .side-manu li span {
    display: none;
  }
  .side-manu {
    align-items: center;
  }

  .side-manu li i {
    height: 45px;
    width: 45px;
    font-size: 30px;
  }
  .side-manu li:hover {
  }
}

@media screen and (max-width: 768px) {
  .brand-name {
  }
  .brand-name h1 {
    font-size: 16px;
  }
  .container .main-section .content-1 {
    justify-content: center;
  }
  .container .main-section .content-2 .recent-payments table th:nth-child(2),
  .container .main-section .content-2 .recent-payments table td:nth-child(2) {
    display: none;
  }
}
