/* stylelint-disable */
/* stylelint-disable */
.heading {
  font-family: Rubik, sans-serif;
  color: #333335;
  display: flex;
  align-items: center;
  font-style: normal;
  margin: 20px 0;
}

.margin-none {
  margin: 0;
}

.yellow {
  color: #f2d16d;
}

.white {
  color: #fff;
}

.hd-1 {
  font-weight: 700;
  font-size: 28px;
  line-height: 38px;
}

.hd-2 {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
}

.hd-3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
}

.hd-4 {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
}

/* stylelint-disable */
.input-container {
  margin: 30px 0;
}

.input {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 16px;
  gap: 10px;
  width: 290px;
  background: #fff;
  border: 1px solid #afafaf;
  border-radius: 5px;
}

/* stylelint-disable */
.text-field-container {
  margin: 20px 0;
}
.text-field-container .text-field-label {
  font-family: Lato, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #535353;
}
.text-field-container .text-field {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  gap: 20px;
  width: 320px;
  height: 35px;
  background: #fff;
  border: 1px solid #afafaf;
  border-radius: 5px;
}

/* stylelint-disable */
.button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 16px 0;
  border-radius: 5px;
  width: 290px;
  margin-top: 20px;
  font-family: Lato, sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.primary {
  background: #0597f2;
  border: 2px solid #0597f2;
  color: #fff;
}

.secondary {
  background: #fff;
  border: 2px solid #0597f2;
  color: #0597f2;
}

.link {
  background: #fff;
  border: none;
  color: #0597f2;
}

.primary:hover,
.secondary:hover,
.link:hover {
  background: #0064d6;
  border: 2px solid #0597f2;
}

/* stylelint-disable */
.text {
  font-family: Lato, sans-serif;
  font-style: normal;
  color: #535353;
}

.margin-none {
  margin: 0;
}

.pointer {
  cursor: pointer;
}

.white {
  color: #fff;
}

.bold {
  font-weight: 800;
  font-size: 16px;
  line-height: 20px;
}

.body {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
}

.small {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
}

/* stylelint-disable */
/* stylelint-disable */
.top-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 24px;
  z-index: 1001;
  border-bottom: 1px solid #afafaf;
}

.user {
  display: flex;
  align-items: center;
  background: #e8e8e8;
  border-radius: 8px;
  padding: 6px 8px 6px 12px;
  gap: 8px;
}
.user img {
  width: 28px;
  height: 28px;
}

.dropdown-button {
  background-color: #0597f2;
  color: #fff;
  padding: 10px 15px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.sidebar-menu {
  position: fixed;
  width: 220px;
  height: calc(100vh - 56px);
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px 0;
}

.sidebar-menu-footer {
  margin-bottom: 15px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.sidebar-menu-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 44px;
  padding: 0 24px;
  cursor: pointer;
}

.sidebar-menu-btn svg {
  width: 24px;
  height: 24px;
}

/* stylelint-disable */
.empty-card-container {
  display: flex;
  justify-content: flex-start;
  gap: 22px;
  background-color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  width: 300px;
  height: 90px;
  margin: 10px 40px 10px 0;
}

/* stylelint-disable */
.subject-container {
  background-color: #fff;
  border-radius: 5px;
  padding: 10px 20px;
  margin: 15px 0;
}
.subject-container .subject-layout {
  display: flex;
  gap: 20px;
}
.subject-container .subject-layout .subject-data {
  flex-direction: column;
}
.subject-container .subject-progress {
  display: flex;
  flex-direction: column;
}
.subject-container .subject-progress p {
  font-family: Lato, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #0597f2;
  margin: 5px 0;
}
.subject-container .subject-progress progress {
  margin-top: 5px;
  width: auto;
  appearance: none;
  height: 6px;
  border-radius: 10px;
}
.subject-container .subject-progress progress::-webkit-progress-bar {
  background-color: #afafaf;
  border-radius: 5px;
}
.subject-container .subject-progress progress::-webkit-progress-value {
  background-color: #3bc171;
  border-radius: 5px;
}

/* stylelint-disable */
.subject-desktop-container {
  display: flex;
  flex-direction: column;
  padding: 15px;
  gap: 10px;
  width: 260px;
  background: #fff;
  border-radius: 5px;
}
.subject-desktop-container .subject-image-container {
  height: 140px;
  display: flex;
  align-items: center;
  background: #f6f7fb;
  border-radius: 5px;
}
.subject-desktop-container .subject-image {
  width: 100%;
  height: 80px;
}
.subject-desktop-container .subject-desktop-progress {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.subject-desktop-container .subject-desktop-progress p {
  font-family: Lato, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #0597f2;
  margin: 5px 0;
}
.subject-desktop-container .subject-desktop-progress progress {
  margin-top: 5px;
  width: auto;
  appearance: none;
  height: 6px;
  border-radius: 10px;
}
.subject-desktop-container .subject-desktop-progress progress::-webkit-progress-bar {
  background-color: #afafaf;
  border-radius: 5px;
  width: 100%;
}
.subject-desktop-container .subject-desktop-progress progress::-webkit-progress-value {
  background-color: #3bc171;
  border-radius: 5px;
}

/* stylelint-disable */
.users-table {
  display: table;
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
}

.users-table-header,
.users-table-row {
  display: table-row;
}

.users-table-header .bold,
.users-table-row .text {
  display: table-cell;
  padding: 10px;
  border: 1px solid #afafaf;
  text-align: left;
}

.users-table-header {
  font-weight: bold;
  background-color: #afafaf;
}

/* stylelint-disable */
/* stylelint-disable */
.heading-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.welcome-card-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0765a3;
  border-radius: 15px;
  margin: 15px 0;
  overflow: hidden;
}
.welcome-card-container div {
  margin-left: 40px;
}

@media (min-width: 1024px) {
  .page-container {
    display: flex;
    flex-direction: column;
  }
  .subjects-container {
    display: flex;
    flex-wrap: wrap;
    width: 600px;
    gap: 20px;
  }
  .subjects-container .item {
    flex: 0 0 35%;
  }
}
/* stylelint-disable */
/* stylelint-disable */
@media (min-width: 1024px) {
  .student-subjects-index-container {
    padding: 4rem;
    max-width: 70%;
    margin: 0 auto;
  }
  .student-subjects-card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 3rem;
  }
}
/* stylelint-disable */
body {
  margin: 0;
  background: #f6f7fb;
}

body.login-page {
  background: #fff !important;
}

.body-layout {
  margin: 20px;
}

@media (min-width: 1024px) {
  .body-layout {
    margin: 0 auto;
    margin-top: 56px;
  }
  .body-main-content {
    margin-left: 250px;
    margin-top: 20px;
    width: 80%;
  }
}