@charset "UTF-8";
@import "https://fonts.googleapis.com/css?family=Muli:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i&display=swap";

/* src/styles.scss */
.grecaptcha-badge {
  visibility: hidden;
}
* {
  font-family: "Muli", sans-serif;
}
* {
  scrollbar-color: #b1b4b9 #f5f5f5;
  scrollbar-width: thin;
}
*::-webkit-scrollbar-track {
  background-color: rgba(28, 28, 30, 0.09);
}
*::-webkit-scrollbar {
  width: 8px;
  border-radius: 4px;
  background-color: rgba(245, 245, 245, 0.1);
}
*::-webkit-scrollbar-thumb {
  border-radius: 4px;
  cursor: pointer;
  background-color: #b1b4b9;
}
*:hover::-webkit-scrollbar-thumb {
  background-color: #b1b4b9;
}
*::-webkit-scrollbar-thumb:hover {
  cursor: pointer;
  background-color: gray;
}
body {
  background-color: var(--background-light, #f5f5f5);
  box-sizing: border-box;
  color: var(--color-font, #333);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  overflow-x: hidden;
  padding: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
router-outlet {
  display: contents;
}
a {
  cursor: pointer;
  text-decoration: none;
  -webkit-user-select: none;
  user-select: none;
}
a:not(.help--link) {
  display: inline-flex;
}
a.help--link:hover {
  text-decoration: underline;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul li {
  -webkit-user-select: none;
  user-select: none;
}
strong {
  font-weight: 700;
}

/* src/styles/_variables.scss */

/* src/styles/global-styles.scss */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}
.avatar {
  align-items: center;
  background-color: var(--color-navbar-menu-item-bg);
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  margin-right: 8px;
}
.avatar--x-small {
  height: 24px;
  width: 24px;
}
.avatar--small {
  height: 32px;
  width: 32px;
}
.avatar--medium {
  height: 48px;
  width: 48px;
}
.avatar--large {
  height: 64px;
  width: 64px;
}
.border-1 {
  border: 1px solid var(--color-border);
}
.border-2 {
  border: 2px solid var(--color-border);
}
.border-3 {
  border: 3px solid var(--color-border);
}
.border-4 {
  border: 4px solid var(--color-border);
}
.border-5 {
  border: 5px solid var(--color-border);
}
.b-radius-0 {
  border-radius: 0px;
}
.b-radius-4 {
  border-radius: 4px;
}
.b-radius-6 {
  border-radius: 6px;
}
.b-radius-8 {
  border-radius: 8px;
}
.b-radius-12 {
  border-radius: 12px;
}
.b-radius-16 {
  border-radius: 16px;
}
.b-radius-20 {
  border-radius: 20px;
}
.b-radius-24 {
  border-radius: 24px;
}
.b-radius-32 {
  border-radius: 32px;
}
.b-radius-40 {
  border-radius: 40px;
}
.b-radius-50 {
  border-radius: 50px;
}
.b-radius-rounded {
  border-radius: 50% !important;
}
.border-none {
  border: none;
}
.c-pointer {
  cursor: pointer;
}
.ellipsis-1 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: pre-wrap;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.ellipsis-2 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: pre-wrap;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.ellipsis-3 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: pre-wrap;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.ellipsis-4 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: pre-wrap;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.p-absolute {
  position: absolute;
}
.p-relative {
  position: relative;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.flex.column,
.inline-flex.column {
  flex-direction: column;
}
.flex.row,
.inline-flex.row {
  flex-direction: row;
}
.flex.wrap,
.inline-flex.wrap {
  flex-wrap: wrap;
}
.flex.align-baseline,
.inline-flex.align-baseline {
  align-items: baseline;
}
.flex.align-start,
.inline-flex.align-start {
  align-items: flex-start;
}
.flex.align-end,
.inline-flex.align-end {
  align-items: flex-end;
}
.flex.align-center,
.inline-flex.align-center {
  align-items: center;
}
.flex.justify-start,
.inline-flex.justify-start {
  justify-content: flex-start;
}
.flex.justify-end,
.inline-flex.justify-end {
  justify-content: flex-end;
}
.flex.justify-center,
.inline-flex.justify-center {
  justify-content: center;
}
.flex.justify-space-around,
.inline-flex.justify-space-around {
  justify-content: space-around;
}
.flex.justify-space-between,
.inline-flex.justify-space-between {
  justify-content: space-between;
}
.flex.justify-space-evenly,
.inline-flex.justify-space-evenly {
  justify-content: space-evenly;
}
.flex.centered,
.inline-flex.centered {
  align-items: center;
  justify-content: center;
}
.p-0 {
  padding: 0px;
}
.m-0 {
  margin: 0px;
}
.mb-0 {
  margin-bottom: 0px;
}
.mt-0 {
  margin-top: 0px;
}
.gap-0 {
  gap: 0px;
}
.p-1 {
  padding: 4px;
}
.m-1 {
  margin: 4px;
}
.mb-1 {
  margin-bottom: 4px;
}
.mt-1 {
  margin-top: 4px;
}
.gap-1 {
  gap: 4px;
}
.p-2 {
  padding: 8px;
}
.m-2 {
  margin: 8px;
}
.mb-2 {
  margin-bottom: 8px;
}
.mt-2 {
  margin-top: 8px;
}
.gap-2 {
  gap: 8px;
}
.p-3 {
  padding: 12px;
}
.m-3 {
  margin: 12px;
}
.mb-3 {
  margin-bottom: 12px;
}
.mt-3 {
  margin-top: 12px;
}
.gap-3 {
  gap: 12px;
}
.p-4 {
  padding: 16px;
}
.m-4 {
  margin: 16px;
}
.mb-4 {
  margin-bottom: 16px;
}
.mt-4 {
  margin-top: 16px;
}
.gap-4 {
  gap: 16px;
}
.p-5 {
  padding: 20px;
}
.m-5 {
  margin: 20px;
}
.mb-5 {
  margin-bottom: 20px;
}
.mt-5 {
  margin-top: 20px;
}
.gap-5 {
  gap: 20px;
}
.p-6 {
  padding: 24px;
}
.m-6 {
  margin: 24px;
}
.mb-6 {
  margin-bottom: 24px;
}
.mt-6 {
  margin-top: 24px;
}
.gap-6 {
  gap: 24px;
}
.p-7 {
  padding: 28px;
}
.m-7 {
  margin: 28px;
}
.mb-7 {
  margin-bottom: 28px;
}
.mt-7 {
  margin-top: 28px;
}
.gap-7 {
  gap: 28px;
}
.p-8 {
  padding: 32px;
}
.m-8 {
  margin: 32px;
}
.mb-8 {
  margin-bottom: 32px;
}
.mt-8 {
  margin-top: 32px;
}
.gap-8 {
  gap: 32px;
}
.p-9 {
  padding: 36px;
}
.m-9 {
  margin: 36px;
}
.mb-9 {
  margin-bottom: 36px;
}
.mt-9 {
  margin-top: 36px;
}
.gap-9 {
  gap: 36px;
}
.p-10 {
  padding: 40px;
}
.m-10 {
  margin: 40px;
}
.mb-10 {
  margin-bottom: 40px;
}
.mt-10 {
  margin-top: 40px;
}
.gap-10 {
  gap: 40px;
}
.p-12 {
  padding: 12px;
}
.m-12 {
  margin: 12px;
}
.gap-12 {
  gap: 12px;
}
.p-16 {
  padding: 16px;
}
.m-16 {
  margin: 16px;
}
.gap-16 {
  gap: 16px;
}
.p-20 {
  padding: 20px;
}
.m-20 {
  margin: 20px;
}
.gap-20 {
  gap: 20px;
}
.p-24 {
  padding: 24px;
}
.m-24 {
  margin: 24px;
}
.gap-24 {
  gap: 24px;
}
.p-32 {
  padding: 32px;
}
.m-32 {
  margin: 32px;
}
.gap-32 {
  gap: 32px;
}
.p-40 {
  padding: 40px;
}
.m-40 {
  margin: 40px;
}
.gap-40 {
  gap: 40px;
}
.p-48 {
  padding: 48px;
}
.m-48 {
  margin: 48px;
}
.gap-48 {
  gap: 48px;
}
.p-56 {
  padding: 56px;
}
.m-56 {
  margin: 56px;
}
.gap-56 {
  gap: 56px;
}
.p-64 {
  padding: 64px;
}
.m-64 {
  margin: 64px;
}
.gap-64 {
  gap: 64px;
}
.p-80 {
  padding: 80px;
}
.m-80 {
  margin: 80px;
}
.gap-80 {
  gap: 80px;
}
.truncated-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: pre-wrap;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  text-align: left;
}
.truncated-text.line-clamp-1 {
  -webkit-line-clamp: 1;
  line-clamp: 1;
}
.truncated-text.line-clamp-2 {
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.fw-100 {
  font-weight: 100;
}
.fw-200 {
  font-weight: 200;
}
.fw-300 {
  font-weight: 300;
}
.fw-400 {
  font-weight: 400;
}
.fw-500 {
  font-weight: 500;
}
.fw-600 {
  font-weight: 600;
}
.fw-700 {
  font-weight: 700;
}
.fw-800 {
  font-weight: 800;
}
.fw-900 {
  font-weight: 900;
}
.fw-bold {
  font-weight: bold;
}
.fw-bolder {
  font-weight: bolder;
}
.fw-lighter {
  font-weight: lighter;
}
.h-100 {
  height: 100%;
}
.w-100 {
  width: 100%;
}
.w-fit {
  width: fit-content;
}
.margin-auto {
  margin: auto;
}
.margin-x-auto {
  margin: 0 auto;
}
.margin-y-auto {
  margin: auto 0;
}
.margin-0 {
  margin: 0;
}
.padding-0 {
  padding: 0;
}
.text-center {
  text-align: center;
}
.text-center {
  text-align: left;
}
.text-center {
  text-align: right;
}
.scale-up-center {
  -webkit-animation: scale-up-center 100ms cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: scale-up-center 100ms cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
@keyframes scale-up-center {
  0% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes small-scale-up-center {
  0% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
img.teacher {
  border: 2px solid #1d448e;
}
img.student-official {
  border: 2px solid #f5a623;
}
img.monitor,
img.moderador {
  border: 2px solid #0e6a00;
}
img.student-free {
  border: 2px solid #90949c;
}
a {
  color: #2A79FF;
}
a.auth-form__link {
  color: #031B4E;
}
a:focus,
a:active,
a:hover {
  color: #0056bf;
}
.red-icon {
  color: #dc143c;
}
.auth {
  background-color: var(--color-modal-blue-bg);
  color: #031B4E;
  font-size: 14px;
  height: 100dvh;
  overflow-x: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 580px) {
  .auth {
    background-color: var(--background-light-cartel);
  }
  .auth .progress-line {
    position: absolute;
    top: 0;
    width: 100vw;
    height: 5px;
  }
}
.auth--account {
  position: relative;
}
.auth--profile {
  height: fit-content;
}
.auth__container {
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1180px;
  width: 90%;
  min-height: 344px;
  transition: height 0.8s ease-in-out, min-height 0.8s ease-in-out;
}
.auth__container.bg-white {
  background-color: var(--background-light-cartel);
}
.auth__container__content {
  box-sizing: content-box;
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  justify-content: space-around;
}
@media screen and (min-width: 581px) {
  .auth__container__content {
    padding: 77px clamp(26px, 5vw, 60px);
  }
}
.auth__container__content > * {
  max-width: 500px;
}
@media screen and (min-width: 440px) {
  .auth__container__content > * {
    min-width: 380px;
  }
}
.auth-box {
  display: flex;
  font-size: 14px;
  height: fit-content;
  justify-content: center;
}
.auth-box__icon {
  color: var(--primary-blue);
  font-size: 60px;
}
.auth-box__title {
  font-size: 38px;
  font-weight: 700;
}
.auth-box__description {
  font-size: 0.98rem;
}
.auth-box__content {
  flex: 1;
}
.auth-box__content:last-of-type {
  max-width: 500px;
}
.auth-box__content__section:first-of-type {
  flex: 1 1 30%;
  min-width: 240px;
  margin-bottom: 1rem;
}
.auth-box__content__section:first-of-type p {
  font-size: 1rem;
  color: var(--color-font);
  line-height: 1.6;
  padding-right: 1.1rem;
}
@media screen and (min-width: 940px) {
  .auth-box__content {
    max-height: 546px;
  }
  .auth-box__content:not(.auth-box__content--header) {
    height: 100%;
  }
}
.auth-form {
  gap: 20px;
  height: 100%;
  justify-content: flex-end;
}
.auth-form__identifier {
  border: 1px solid var(--color-border);
}
.auth-form__identifier input {
  flex: auto;
}
.auth-form__group {
  display: flex;
  flex-direction: column;
}
.auth-form__group input {
  background: var(--input-background);
  font-size: 1em;
  height: 50px;
  outline: none;
  padding: 0 1em;
  flex: 1 1 auto;
  transition: border-color 0.2s ease-in-out;
}
.auth-form__group input.auth-form__input--no-border {
  border: none;
  border-radius: 6px 0 0 6px;
}
.auth-form__group input:not(.auth-form__input--no-border) {
  border: 1px solid var(--color-border);
  border-radius: 6px;
}
.auth-form__group .btn--icon {
  cursor: pointer;
  font-size: 1.2em;
  width: fit-content;
}
.auth-form__group > .flex {
  flex: 1 0 auto;
}
.auth-form__error {
  align-items: flex-start;
  color: #dc143c;
  display: flex;
  font-size: 0.875rem;
  -webkit-animation: scale-up-ver-top 80ms linear both;
  animation: scale-up-ver-top 80ms linear both;
}
.auth-form__error p {
  margin: 0;
}
.auth-form__signup {
  color: #90949c;
}
.auth-social {
  gap: 1.2rem;
  display: flex;
  flex-direction: column;
}
.auth-social__label,
.auth-social__divider {
  display: flex;
  align-items: center;
  font-size: 1rem;
}
.auth-social__label::before,
.auth-social__divider::before {
  margin-right: 14px;
}
.auth-social__label::after,
.auth-social__divider::after {
  margin-left: 14px;
}
.auth-social__label.auth-social__divider::before,
.auth-social__label.auth-social__divider::after,
.auth-social__divider.auth-social__divider::before,
.auth-social__divider.auth-social__divider::after {
  content: "";
  flex: 1 0 auto;
  border-bottom: 1.5px solid var(--color-border);
}
.auth-social__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
}
.auth-alert--error {
  align-items: center;
  color: var(--primary-red);
  display: flex;
  height: fit-content;
}
.auth-alert--success {
  color: var(--primary-green);
  margin: 10px 0;
}
.auth-captcha {
  margin: 0.87rem 0;
  min-height: 78px;
  max-width: 304px;
  border-radius: 2px;
  background-color: rgba(33, 33, 33, 0.05);
}
.auth-terms {
  color: var(--color-font-gray);
  font-size: 0.85em;
  line-height: 1.8;
  text-align: end;
}
.auth-actions {
  color: var(--primary-light-blue);
}
.auth-actions .auth-form__link {
  font-size: 1rem;
  height: 50px;
  padding: 0 10px 0 21px;
}
.auth-actions .auth-form__link .icon-user-profile {
  font-size: 1.32rem;
}
.auth-actions .auth-form__link:hover {
  background-color: var(--color-navbar-menu-item-bg-hover);
}
.auth-terms {
  bottom: -4rem;
  color: var(--color-font-gray);
  font-size: 0.89em;
  line-height: 1.8;
  margin: 0.8rem auto 0 auto;
  max-width: 1168px;
  padding: 1rem;
  right: 0;
  text-align: end;
  width: calc(100% - 2rem);
}
.auth-terms a {
  color: #4183c4;
}

/* src/styles/edutin-icons.scss */
.icon-cross {
  font-weight: bolder !important;
}
@font-face {
  font-family: "edutin-icons";
  src: url(/assets/icon-fonts/edutin-icons.eot?enqfh9);
  src:
    url(/assets/icon-fonts/edutin-icons.eot?enqfh9#iefix) format("embedded-opentype"),
    url(/assets/icon-fonts/edutin-icons.ttf?enqfh9) format("truetype"),
    url(/assets/icon-fonts/edutin-icons.woff?enqfh9) format("woff"),
    url(/assets/icon-fonts/edutin-icons.svg?enqfh9#edutin-icons) format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-],
[class*=" icon-"] {
  font-family: "edutin-icons" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-activity:before {
  content: "\e941";
}
.icon-add-images:before {
  content: "\e97f";
}
.icon-add-text:before {
  content: "\e91b";
}
.icon-add-user:before {
  content: "\e9b5";
}
.icon-alarms:before {
  content: "\e92e";
}
.icon-alert:before {
  content: "\e93f";
}
.icon-answers:before {
  content: "\e91e";
}
.icon-apuntes:before {
  content: "\e92f";
}
.icon-arrow-down:before {
  content: "\e924";
}
.icon-arrow-left:before {
  content: "\e925";
}
.icon-arrow-point-to:before {
  content: "\e95f";
}
.icon-arrow-right:before {
  content: "\e934";
}
.icon-arrow-strong-down:before {
  content: "\e920";
}
.icon-arrow-strong-left:before {
  content: "\e922";
}
.icon-arrow-strong-right:before {
  content: "\e923";
}
.icon-arrow-strong-up:before {
  content: "\e921";
}
.icon-arrow-to-right:before {
  content: "\e974";
}
.icon-arrow-to-up:before {
  content: "\e976";
}
.icon-arrow-up:before {
  content: "\e938";
}
.icon-arrow-up-to:before {
  content: "\e9b8";
}
.icon-arrow_down_alt:before {
  content: "\e9d4";
}
.icon-arrow_right_alt:before {
  content: "\e95b";
}
.icon-arrow_sort:before {
  content: "\e9d5";
}
.icon-arrow_up_alt:before {
  content: "\e9d6";
}
.icon-attached:before {
  content: "\e90c";
}
.icon-back:before {
  content: "\e94b";
}
.icon-back-arrow:before {
  content: "\e911";
}
.icon-bell-filled:before {
  content: "\e9cc";
}
.icon-bell-outline:before {
  content: "\e9cb";
}
.icon-bold:before {
  content: "\e935";
}
.icon-broadcast:before {
  content: "\e988";
}
.icon-bullet:before {
  content: "\e971";
}
.icon-calendar:before {
  content: "\e900";
}
.icon-calendar-outline:before {
  content: "\e9da";
}
.icon-call:before {
  content: "\e98a";
}
.icon-call-us:before {
  content: "\e99e";
}
.icon-call-us-filled:before {
  content: "\e9a8";
}
.icon-cam:before {
  content: "\e973";
}
.icon-certificate:before {
  content: "\e964";
}
.icon-chat:before {
  content: "\e982";
}
.icon-circle-cross:before {
  content: "\e9d3";
}
.icon-circle-forward-arrow:before {
  content: "\e9ca";
}
.icon-circle-questions:before {
  content: "\e959";
}
.icon-circle-return-arrow:before {
  content: "\e9c9";
}
.icon-close:before {
  content: "\e965";
}
.icon-cloud-error:before {
  content: "\e910";
}
.icon-code:before {
  content: "\e90e";
}
.icon-code-outline:before {
  content: "\e90d";
}
.icon-code-strong:before {
  content: "\ea80";
}
.icon-comments:before {
  content: "\e92c";
}
.icon-community:before {
  content: "\e962";
}
.icon-contacts_follows:before {
  content: "\e97e";
}
.icon-content:before {
  content: "\e975";
}
.icon-contributed:before {
  content: "\e94f";
}
.icon-contributions:before {
  content: "\e94e";
}
.icon-copy:before {
  content: "\e96e";
}
.icon-copy-filled:before {
  content: "\e98d";
}
.icon-copy-outline:before {
  content: "\1f5c6";
}
.icon-copy-outline-r:before {
  content: "\e9a7";
}
.icon-course-content:before {
  content: "\e94d";
}
.icon-cross:before {
  content: "\e939";
}
.icon-cross-bolder:before {
  content: "\e9b3";
}
.icon-cross-strong:before {
  content: "\e9aa";
}
.icon-cumulative-hours:before {
  content: "\e950";
}
.icon-curriculum:before {
  content: "\e9cd";
}
.icon-delete:before {
  content: "\e913";
}
.icon-delete-filled:before {
  content: "\e9c6";
}
.icon-delete-outline:before {
  content: "\e9c7";
}
.icon-document:before {
  content: "\e942";
}
.icon-double-arrow-left:before {
  content: "\e9ba";
}
.icon-double-arrow-right:before {
  content: "\e9bb";
}
.icon-download:before {
  content: "\e944";
}
.icon-download-bottom:before {
  content: "\e94a";
}
.icon-download-ouline:before {
  content: "\e9c8";
}
.icon-download-video:before {
  content: "\e949";
}
.icon-earth:before {
  content: "\e945";
}
.icon-earth-strong:before {
  content: "\e9ab";
}
.icon-edit:before {
  content: "\e96d";
}
.icon-edutin:before {
  content: "\e98e";
}
.icon-ellipsis-h:before {
  content: "\e91c";
}
.icon-ellipsis-v:before {
  content: "\e969";
}
.icon-email-outline:before {
  content: "\e9a0";
}
.icon-evaluacion-source:before {
  content: "\e947";
}
.icon-eye:before {
  content: "\e93e";
}
.icon-eye-strong:before {
  content: "\e9ad";
}
.icon-face-laugh:before {
  content: "\e985";
}
.icon-facebook:before {
  content: "\e905";
}
.icon-favorite-filled:before {
  content: "\e9c2";
}
.icon-favorite-outline:before {
  content: "\e9c3";
}
.icon-fbook:before {
  content: "\e96c";
}
.icon-feedback:before {
  content: "\e963";
}
.icon-file:before {
  content: "\e98b";
}
.icon-file-excel:before {
  content: "\eae2";
}
.icon-file-openoffice:before {
  content: "\eae0";
}
.icon-file-pdf:before {
  content: "\eadf";
}
.icon-file-text2:before {
  content: "\e991";
}
.icon-file-word:before {
  content: "\eae1";
}
.icon-file-zip:before {
  content: "\e992";
}
.icon-filter:before {
  content: "\e9ae";
}
.icon-filter-light:before {
  content: "\e97b";
}
.icon-folder:before {
  content: "\e98c";
}
.icon-follow:before {
  content: "\e951";
}
.icon-forum:before {
  content: "\e96f";
}
.icon-forward:before {
  content: "\e912";
}
.icon-fullscreen:before {
  content: "\e940";
}
.icon-fullscreen-exit:before {
  content: "\e94c";
}
.icon-github:before {
  content: "\e906";
}
.icon-google:before {
  content: "\e907";
}
.icon-h-line:before {
  content: "\e99a";
}
.icon-hangup:before {
  content: "\e986";
}
.icon-happy:before {
  content: "\e983";
}
.icon-happy2:before {
  content: "\e984";
}
.icon-hat:before {
  content: "\e9b0";
}
.icon-headphone:before {
  content: "\e903";
}
.icon-headphone-filled:before {
  content: "\e9a9";
}
.icon-home:before {
  content: "\e952";
}
.icon-id-card:before {
  content: "\e997";
}
.icon-image:before {
  content: "\e915";
}
.icon-info:before {
  content: "\e90f";
}
.icon-insta-outline:before {
  content: "\e9a1";
}
.icon-instagram:before {
  content: "\e9a2";
}
.icon-italic:before {
  content: "\e937";
}
.icon-laptop:before {
  content: "\e9b6";
}
.icon-laptop-square:before {
  content: "\e990";
}
.icon-libreoffice:before {
  content: "\eae3";
}
.icon-license:before {
  content: "\e993";
}
.icon-light-bulb:before {
  content: "\e9d8";
}
.icon-like:before {
  content: "\e914";
}
.icon-like-filled:before {
  content: "\e9c0";
}
.icon-like-outline:before {
  content: "\e9c1";
}
.icon-link:before {
  content: "\e918";
}
.icon-linkedin:before {
  content: "\e99d";
}
.icon-live:before {
  content: "\e989";
}
.icon-lock:before {
  content: "\e946";
}
.icon-lock-small:before {
  content: "\e987";
}
.icon-lock-strong:before {
  content: "\e9ac";
}
.icon-mail-filled:before {
  content: "\e931";
}
.icon-mail-outline:before {
  content: "\e996";
}
.icon-mail-outline1:before {
  content: "\e9b7";
}
.icon-medal .path1:before {
  content: "\e99b";
  color: rgb(29, 68, 141);
}
.icon-medal .path2:before {
  content: "\e99c";
  margin-left: -1em;
  color: rgb(255, 234, 128);
}
.icon-medal .path3:before {
  content: "\e99f";
  margin-left: -1em;
  color: rgb(255, 204, 102);
}
.icon-medal-outline:before {
  content: "\e9c4";
}
.icon-message:before {
  content: "\e953";
}
.icon-messenger:before {
  content: "\e9a4";
}
.icon-mic:before {
  content: "\e97a";
}
.icon-mic-filled:before {
  content: "\e902";
}
.icon-mic1:before {
  content: "\e972";
}
.icon-minus:before {
  content: "\e930";
}
.icon-minus-strong:before {
  content: "\ea0b";
}
.icon-mssnger2:before {
  content: "\e9a5";
}
.icon-new-note:before {
  content: "\e93b";
}
.icon-new-window:before {
  content: "\e9c5";
}
.icon-next:before {
  content: "\e954";
}
.icon-notes:before {
  content: "\e955";
}
.icon-notification-bell:before {
  content: "\e97c";
}
.icon-pause:before {
  content: "\e956";
}
.icon-pause-circle:before {
  content: "\e93a";
}
.icon-pause1:before {
  content: "\e994";
}
.icon-pen-outline:before {
  content: "\e999";
}
.icon-pencil:before {
  content: "\e995";
}
.icon-photo-camera:before {
  content: "\e9ce";
}
.icon-pic-2-svgrepo-com:before {
  content: "\e9e3";
}
.icon-play-arrow:before {
  content: "\e928";
}
.icon-play-circle:before {
  content: "\e936";
}
.icon-play-circle-outline:before {
  content: "\e91d";
}
.icon-play-list:before {
  content: "\e927";
}
.icon-play-list-filled:before {
  content: "\e90b";
}
.icon-plus:before {
  content: "\e95e";
}
.icon-plus-light:before {
  content: "\e92d";
}
.icon-plus-strong:before {
  content: "\ea0a";
}
.icon-printer:before {
  content: "\e98f";
}
.icon-professional:before {
  content: "\e998";
}
.icon-question-circle:before {
  content: "\e932";
}
.icon-questions:before {
  content: "\e958";
}
.icon-quiz:before {
  content: "\e96b";
}
.icon-rate:before {
  content: "\e91f";
}
.icon-reload:before {
  content: "\e9b2";
}
.icon-reload-light:before {
  content: "\e96a";
}
.icon-reply:before {
  content: "\e966";
}
.icon-rocket_sharp:before {
  content: "\e901";
}
.icon-save:before {
  content: "\e926";
}
.icon-screen_share:before {
  content: "\e904";
}
.icon-search:before {
  content: "\e9a6";
}
.icon-search-bold:before {
  content: "\e978";
}
.icon-search-light:before {
  content: "\e9b1";
}
.icon-select:before {
  content: "\e93c";
}
.icon-select-arrow:before {
  content: "\e948";
}
.icon-selection:before {
  content: "\e9b4";
}
.icon-send:before {
  content: "\e92a";
}
.icon-send-arrow:before {
  content: "\e967";
}
.icon-settings:before {
  content: "\e943";
}
.icon-shopping-cart:before {
  content: "\e97d";
}
.icon-signet:before {
  content: "\e980";
}
.icon-smile:before {
  content: "\e9e1";
}
.icon-smile2:before {
  content: "\e9e2";
}
.icon-star-outline:before {
  content: "\e979";
}
.icon-subtitles:before {
  content: "\e95d";
}
.icon-suggestion:before {
  content: "\e9d7";
}
.icon-take-part:before {
  content: "\e95c";
}
.icon-text:before {
  content: "\e968";
}
.icon-text-source:before {
  content: "\e960";
}
.icon-tick:before {
  content: "\e92b";
}
.icon-tick-bold:before {
  content: "\e981";
}
.icon-tick-outline:before {
  content: "\e95a";
}
.icon-title:before {
  content: "\e970";
}
.icon-twitter:before {
  content: "\e908";
}
.icon-twitter_x_outline:before {
  content: "\e9a3";
}
.icon-underline:before {
  content: "\e933";
}
.icon-user:before {
  content: "\e957";
}
.icon-user-add:before {
  content: "\e977";
}
.icon-user-outline:before {
  content: "\e9dd";
}
.icon-user-outline1:before {
  content: "\e9db";
}
.icon-user-profile:before {
  content: "\e9af";
}
.icon-verified-filled:before {
  content: "\e9b9";
}
.icon-versions:before {
  content: "\e9df";
}
.icon-versions-h:before {
  content: "\e9e0";
}
.icon-video-library:before {
  content: "\e929";
}
.icon-video-library-filled:before {
  content: "\e909";
}
.icon-video-source:before {
  content: "\e961";
}
.icon-videocam-filled:before {
  content: "\e9de";
}
.icon-view:before {
  content: "\e916";
}
.icon-visibility-filled:before {
  content: "\e9bd";
}
.icon-visibility-off-filled:before {
  content: "\e9bc";
}
.icon-visibility-off-outline:before {
  content: "\e9be";
}
.icon-visibility-outline:before {
  content: "\e9bf";
}
.icon-volume:before {
  content: "\e917";
}
.icon-volume-high:before {
  content: "\e91a";
}
.icon-volume-low:before {
  content: "\e93d";
}
.icon-volume-medium:before {
  content: "\e919";
}
.icon-whapp-outline:before {
  content: "\e9dc";
}
.icon-www:before {
  content: "\e90a";
}
.icon-youtube:before {
  content: "\e9cf";
}
.icon-youtube-play:before {
  content: "\e9d0";
}
.icon-zoom:before {
  content: "\e9d1";
}
.icon-zoom-in:before {
  content: "\e9d2";
}
.icon-zoom-out:before {
  content: "\e9d9";
}

/* src/styles/_buttons.scss */
.loader {
  width: 20px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid #9a9a9c;
  animation: l20-1 0.8s infinite linear alternate, l20-2 1.6s infinite linear;
}
.loader.white {
  border-color: #fff;
}
.loader.w-10 {
  width: 10px;
}
.loader.w-20 {
  width: 20px;
}
.loader.w-30 {
  width: 30px;
  border-width: 3px;
}
.loader.w-40 {
  width: 40px;
  border-width: 4px;
}
.loader.w-50 {
  width: 50px;
  border-width: 5px;
  height: 50px;
  margin: auto;
}
@keyframes l20-1 {
  0% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
  }
  12.5% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
  }
  25% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  62.5% {
    clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%);
  }
}
@keyframes l20-2 {
  0% {
    transform: scaleY(1) rotate(0deg);
  }
  49.99% {
    transform: scaleY(1) rotate(135deg);
  }
  50% {
    transform: scaleY(-1) rotate(0deg);
  }
  100% {
    transform: scaleY(-1) rotate(-135deg);
  }
}
.btn {
  align-items: center;
  background-color: unset;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 700;
  font-size: 1rem;
  height: 50px;
  justify-content: center;
  outline: none;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out;
}
.btn:hover {
  filter: brightness(90%);
}
.btn:disabled {
  background-color: #adb5bd;
  cursor: not-allowed;
  opacity: 0.6;
}
.btn--primary {
  background-color: #0056bf;
  color: #ffffff;
}
.btn--secondary {
  background-color: #2A79FF;
  color: #ffffff;
}
.btn--danger {
  background-color: #dc143c;
  color: #ffffff;
}
.btn--success {
  background-color: #3AA337;
  color: #ffffff;
}
.btn--warning {
  background-color: #ffc107;
  color: #121212;
}
.btn--info {
  background-color: unset;
  color: #031B4E;
}
.btn-small {
  padding: 6px 12px;
}
.btn-medium {
  padding: 10px 20px;
}
.btn-large {
  padding: 14px 28px;
}
.font-small {
  font-size: 12px;
}
.font-medium {
  font-size: 16px;
}
.font-large {
  font-size: 20px;
}
.btn-full {
  width: 100%;
}
.btn-half {
  width: 50%;
}
.btn-flex {
  flex: 1 0 49%;
}
.btn-height-small {
  height: 32px;
}
.btn-height-medium {
  height: 40px;
}
.btn-height-large {
  height: 50px;
}
.btn-min-width-small {
  min-width: 100px;
}
.btn-min-width-medium {
  min-width: 150px;
}
.btn-min-width-large {
  min-width: 200px;
}
.btn-group {
  display: flex;
  gap: 10px;
}

/* src/styles/theme-colors.scss */
.edutin-academy {
  --primary-color-font: #031B4E;
  --primary-black: #121212;
  --primary-white: #ffffff;
  --primary-blue: #0056bf;
  --primary-light-blue: #2979FF;
  --primary-edutin-blue: #1d448e;
  --primary-red: #dc143c;
  --primary-green: #3AA337;
  --primary-green-dark: #389b35;
  --primary-gray: #808CA6;
  --primary-font-gray: #95A2B5;
  --primary-light-gray: #f6f9fc;
  --primary-backgray-sidebar: #f3f5f9;
  --primary-border-color: #c3c9d7;
  --contrast: contrast(1);
  --contrast-card: contrast(1.14);
  --color-medium: #dee2e6;
  --color-medium-contrast: #dee1e7;
  --color-border: rgb(195, 201, 215, .4);
  --color-font: #031B4E;
  --color-font-gray: rgba(3, 27, 78, .51);
  --color-font-light-blue: #2A79FF;
  --color-font-title-blue: rgb(29, 68, 142, .7);
  --background-color: #f3f5f9;
  --background-light-blue: #cce1ff;
  --background-light-yellow: #fff7e9;
  --background-light-cartel: #fff;
  --background-cartel: #f3f5f9;
  --background-course-thumbnail: var(--color-medium);
  --background-modal-video: rgba(243, 245, 249, .9);
  --background-gray: #e8e8e8;
  --input-background: #fefeff;
  --input-chat-background: #f6f9fc;
  --background-card-active: rgba(27, 67, 100, .1);
  --background-select-list: #f3f5f9;
  --color-slider-active-tab-text: #fff;
  --color-slider-active-tab-bg: #1c1c1e;
  --color-medium-bg: #fff;
  --color-navbar-label: #1d448e;
  --color-navbar-menu-item-bg: rgba(29, 68, 142, .12);
  --color-navbar-menu-item-bg-hover: rgba(29, 68, 142, .12);
  --color-shadow-navbar: rgba(0, 0, 0, 0.1);
  --color-shadow-menu: rgba(0, 0, 0, 0.2);
  --color-text-blue-label: #1d448e;
  --input-color: #fff;
  --color-modal-blue-bg: #E9F1FF;
  --color-modal-blue-bg-hover: #d4e2f9;
  --color-item-bg: var(--color-medium);
  --color-item-selected-bg: rgba(208, 216, 223, .8);
  --bg-color-activity-item: rgba(226, 229, 234, .63);
}
.edutin-academy .description-wrapper p.p-description table {
  background-color: #fff;
}
.edutin-academy.dark {
  --contrast: contrast(1.23);
  --contrast-card: contrast(0.99);
  --color-medium: #2d2d2d;
  --color-medium-contrast: #414142;
  --color-border: rgba(255, 255, 255, .15);
  --color-font: rgba(255, 255, 255, 1);
  --color-font-gray: rgba(255, 255, 255, .6);
  --color-font-light-blue: #5192ff;
  --color-font-title-blue: #758ec1;
  --background-color: #1c1c1e;
  --background-light-yellow: rgba(72, 72, 74, .61);
  --background-light-cartel: #464646;
  --background-cartel: #2d2d2d;
  --background-course-thumbnail: #fff;
  --background-modal-video: rgba(72, 72, 74, .8);
  --background-gray: #434345;
  --input-background: #2e2e2e;
  --input-chat-background: #434345;
  --background-card-active: #2e2e2e;
  --background-select-list: var(--color-medium);
  --color-slider-active-tab-text: #1c1c1e;
  --color-slider-active-tab-bg: #fff;
  --color-medium-bg: #2d2d2d;
  --color-navbar-label: #fff;
  --color-navbar-menu-item-bg: rgba(72, 72, 74, .61);
  --color-navbar-menu-item-bg-hover: rgba(72, 72, 74, .8);
  --color-shadow-navbar: rgba(255, 251, 251, 0.2);
  --color-shadow-menu: rgba(255, 251, 251, 0.2);
  --color-text-blue-label: #fdfdfd;
  --input-color: #414142;
  --color-modal-blue-bg: var(--color-medium-contrast);
  --color-modal-blue-bg-hover: var(--color-shadow-menu);
  --color-item-bg: #434345;
  --color-item-selected-bg: rgba(85, 89, 92, .8);
  --bg-color-activity-item: rgba(113, 113, 113, .18);
}
.edutin-academy.dark #nav-bar .logo .positive-logo {
  display: none !important;
}
.edutin-academy.dark #nav-bar .logo .negative-logo {
  display: inline-block;
}
.edutin-academy.dark .description-wrapper p.p-description table td {
  border-color: #898989 !important;
  background-color: var(--color-medium-bg) !important;
}
.edutin-academy.dark #nav-bar .logo .item span.icon-edutin {
  color: #fff !important;
}
@-webkit-keyframes scale-up-ver-top {
  0% {
    -webkit-transform: scaleY(0.4);
    transform: scaleY(0.4);
    -webkit-transform-origin: 100% 0%;
    transform-origin: 100% 0%;
  }
  100% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: 100% 0%;
    transform-origin: 100% 0%;
  }
}
@keyframes scale-up-ver-top {
  0% {
    -webkit-transform: scaleY(0.4);
    transform: scaleY(0.4);
    -webkit-transform-origin: 100% 0%;
    transform-origin: 100% 0%;
  }
  100% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: 100% 0%;
    transform-origin: 100% 0%;
  }
}
@-webkit-keyframes scale-up-tr {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    -webkit-transform-origin: 100% 0%;
    transform-origin: 100% 0%;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: 100% 0%;
    transform-origin: 100% 0%;
  }
}
@keyframes scale-up-tr {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    -webkit-transform-origin: 100% 0%;
    transform-origin: 100% 0%;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: 100% 0%;
    transform-origin: 100% 0%;
  }
}

/* src/styles/animations.scss */
@-webkit-keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes scale-up-ver-top {
  0% {
    -webkit-transform: scaleY(0.4);
    transform: scaleY(0.4);
    -webkit-transform-origin: 100% 0%;
    transform-origin: 100% 0%;
  }
  100% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: 100% 0%;
    transform-origin: 100% 0%;
  }
}
@keyframes scale-up-ver-top {
  0% {
    -webkit-transform: scaleY(0.4);
    transform: scaleY(0.4);
    -webkit-transform-origin: 100% 0%;
    transform-origin: 100% 0%;
  }
  100% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: 100% 0%;
    transform-origin: 100% 0%;
  }
}
.circle_loader {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto;
  padding: 1.1px;
  background: conic-gradient(rgba(0, 0, 0, 0) 10%, #2a79ff) content-box;
  -webkit-mask:
    repeating-conic-gradient(
      rgba(0, 0, 0, 0) 0deg,
      #000 1deg 20deg,
      rgba(0, 0, 0, 0) 21deg 36deg),
    radial-gradient(
      farthest-side,
      rgba(0, 0, 0, 0) calc(100% - 9px),
      #000 calc(100% - 9px));
  -webkit-mask-composite: destination-in;
  mask-composite: intersect;
  animation: spinner-d55elj 1s infinite steps(10);
}
@keyframes spinner-d55elj {
  to {
    transform: rotate(1turn);
  }
}
.progress-line {
  height: 3px;
  width: calc(100% - 18px);
  background:
    linear-gradient(
      90deg,
      #fff,
      #2a79ff,
      #fff);
  background-size: 200% 100%;
  margin: 0 auto;
  animation: wave 2s infinite linear;
}
@keyframes wave {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles-2NFAGO4L.css.map */
