/*
0 - 320px     : phone-s
320 - 600px   :   phone
600 - 900px   :   tablet portraite
900 - 1200px   :   tablet landscape
[1200 - 1800 ] : is our normal styles is applied
1800+   :   Big screes


*/
/*
# breakpoint argument choises

- phone-s
- phone
- tab-port
- tab-land
- big-desktop


1em = 16px

ORDER: Base + typography > general layout + grid > page layout > components
*/
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

html {
  /* This is now used to calculate rem , now 1rem=9px. Otherwise it would be 1rem=16px. 16px is the default text value of the html page.  */
  font-size: 56.25%;
  scroll-behavior: smooth; }
  @media only screen and (max-width: 75em) {
    html {
      font-size: 56.25%; } }
  @media only screen and (max-width: 37.5em) {
    html {
      font-size: 50%; } }
  @media only screen and (max-width: 20em) {
    html {
      font-size: 37.5%; } }

body {
  box-sizing: border-box;
  padding: 2rem; }
  body::-webkit-scrollbar {
    display: none; }
  @media only screen and (max-width: 56.25em) {
    body {
      padding: 0; } }
  @media only screen and (max-width: 75em) {
    body {
      padding: 0; } }

a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center; }

::selection {
  background-color: #57b846;
  color: #fff; }

.heading__primary {
  font-family: "Lato", sans-serif;
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem; }
  .heading__primary--login {
    margin-right: 1.5rem; }
  .heading__primary--form-data {
    display: flex;
    flex: 0 1 100%;
    margin-left: 10%;
    position: relative;
    z-index: 0;
    letter-spacing: 0rem; }
    @media only screen and (max-width: 56.25em) {
      .heading__primary--form-data {
        left: 0%; } }
    @media only screen and (max-width: 37.5em) {
      .heading__primary--form-data {
        left: 0%; } }
  .heading__primary--alert {
    font-size: 1.6rem;
    color: #fff;
    font-weight: 600; }
  .heading__primary--academicContent {
    font-size: 2rem;
    text-align: center; }

.form__input {
  font-weight: 700;
  color: #333; }
  .form__input--login {
    font-size: 1.25rem; }

.search__input {
  font-weight: 700;
  color: #333;
  font-size: 1.4rem; }

.btn--login {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.25rem; }

.btn--submit {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.25rem;
  color: #fff; }

.btn--academicSubmit {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.25rem;
  color: #fff; }

.btn--back {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.25rem;
  color: #fff; }

.btn--search {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.25rem;
  color: #fff; }

.side-nav {
  font-size: 1.4rem;
  font-weight: 600; }
  @media only screen and (max-width: 56.25em) {
    .side-nav {
      font-size: 1rem; } }
  .side-nav__link {
    text-decoration: none;
    font-family: "Lato", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1rem; }
    @media only screen and (max-width: 56.25em) {
      .side-nav__link {
        text-align: center; } }

.nav-brand__heading {
  font-size: 2.2rem;
  font-family: "Lato", sans-serif; }
  @media only screen and (max-width: 56.25em) {
    .nav-brand__heading {
      font-size: 1.5rem; } }

.nav-brand__name {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  font-weight: 600; }
  @media only screen and (max-width: 56.25em) {
    .nav-brand__name {
      font-size: 1.2rem; } }

.footer {
  text-align: center;
  font-family: "Lato", sans-serif;
  line-height: 2rem; }

.form-data__input {
  color: #333;
  font-weight: 600;
  font-size: 1.4rem;
  font-family: "Montserrat", sans-serif; }
  .form-data__input::placeholder {
    font-weight: 300;
    font-size: 1.3rem;
    text-transform: uppercase; }

.form-data__textarea {
  color: #333;
  font-weight: 600;
  font-size: 1.4rem;
  font-family: "Montserrat", sans-serif; }
  .form-data__textarea::placeholder {
    font-weight: 300;
    font-size: 1.3rem;
    text-transform: uppercase; }

.form-data__label {
  font-family: "Lato", sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: 500;
  color: #777; }

.form-data__radio-label {
  font-family: "Lato", sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 300;
  color: #777; }

.dropdown__heading {
  text-transform: uppercase;
  color: #777;
  font-size: 1.3rem;
  font-family: "Montserrat", sans-serif; }
  .dropdown__heading--active {
    color: #333;
    font-weight: 600;
    font-size: 1.4rem;
    font-family: "Montserrat", sans-serif; }

.dropdown__option label {
  font-size: 1.5rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 500; }

.dropdown__option:hover {
  color: #333; }

.dropdown__label {
  font-family: "Lato", sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: 500;
  color: #777; }

.passwordReset_text {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem; }

.u-margin-bottom-1 {
  margin-bottom: 1rem; }

.u-margin-bottom-2 {
  margin-bottom: 2rem; }

.u-margin-bottom-3 {
  margin-bottom: 4rem; }

.u-margin-bottom-4 {
  margin-bottom: 6rem; }

.u-margin-top-1 {
  margin-top: 1rem; }

.u-margin-top-2 {
  margin-top: 2rem; }

.u-margin-top-3 {
  margin-top: 4rem; }

.u-margin-top-4 {
  margin-top: 6rem; }

.u-bold-1 {
  font-weight: 700; }

@keyframes spinnerOne {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
    border-width: 10px; }
  50% {
    transform: translate(-50%, -50%) rotate(180deg);
    border-width: 1px; }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
    border-width: 10px; } }

@keyframes spinnerTwo {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
    border-width: 1px; }
  50% {
    transform: translate(-50%, -50%) rotate(180deg);
    border-width: 10px; }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
    border-width: 1px; } }

@keyframes fadeDown {
  0% {
    transform: translateY(-50%);
    opacity: 0; }
  100% {
    transform: translateY(0);
    opacity: 1; } }

@keyframes fadeUp {
  0% {
    transform: translateY(50%);
    opacity: 0; }
  100% {
    transform: translateY(0);
    opacity: 1; } }

@keyframes fadeFromLeft {
  0% {
    transform: translateX(100%);
    opacity: 0; }
  100% {
    transform: translateX(0);
    opacity: 1; } }

@keyframes popupAnimation {
  0% {
    opacity: 0;
    transform: scale(0.5); }
  80% {
    opacity: 1;
    transform: scale(1.02); }
  100% {
    opacity: 1;
    transform: scale(1); } }

@keyframes confirmationAnimation {
  0% {
    opacity: 0;
    transform: translateY(-100%); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

@keyframes loadingRotate {
  0% {
    transform: rotate(0); }
  100% {
    transform: rotate(-360deg); } }

@keyframes loadingBounce {
  0% {
    transform: scale(1.1); }
  25% {
    transform: scale(1.5); }
  50% {
    transform: scale(1.2); }
  75% {
    transform: scale(1.5); }
  100% {
    transform: scale(1.1); } }

.login {
  position: relative;
  z-index: 5;
  width: 60%;
  min-height: 50rem;
  background-color: white;
  display: flex;
  justify-content: space-around;
  align-items: center; }
  @media only screen and (max-width: 75em) {
    .login {
      width: 70%; } }
  @media only screen and (max-width: 56.25em) {
    .login {
      width: 85%;
      padding: 10rem 0; } }
  @media only screen and (max-width: 37.5em) {
    .login {
      flex-direction: column;
      align-items: center; } }
  @media only screen and (max-width: 75em) {
    .login__img {
      width: 16rem;
      height: 23rem; } }
  @media only screen and (max-width: 56.25em) {
    .login__img {
      width: 18rem;
      height: 25rem; } }
  @media only screen and (max-width: 37.5em) {
    .login__img {
      width: 13rem;
      height: 19rem; } }
  .login__form {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 40%;
    padding: 3rem 0; }
    @media only screen and (max-width: 37.5em) {
      .login__form {
        width: 100%;
        padding: 1.5rem 0; } }

.forgotPassword {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  color: #333; }
  .forgotPassword:hover {
    color: #57b846;
    transition: all 0.5s;
    transform: translateY(-0.1rem); }

.form {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center; }
  @media only screen and (max-width: 56.25em) {
    .form {
      width: 100%; } }
  @media only screen and (max-width: 37.5em) {
    .form {
      width: 75%; } }
  .form__group:not(:last-child) {
    margin-bottom: 1rem; }
  .form__group--login {
    position: relative;
    display: flex; }
  .form__input {
    border: none;
    background-color: #eee;
    position: relative;
    z-index: 100; }
    .form__input:focus {
      outline: none; }
    .form__input--login {
      padding: 1.5rem 5rem;
      width: 100%;
      transition: all 0.2s; }
      .form__input--login-warning {
        border: 3px solid red; }
  .form__label {
    position: relative;
    z-index: 11000; }
    .form__label--login {
      position: absolute;
      top: 1.2rem;
      left: 2rem; }
  .form__icon {
    width: 1.5rem;
    height: 1.5rem;
    fill: #777;
    transition: all 0.2s; }
    .form__icon-focus {
      fill: #57b846;
      transform: translateX(-0.5rem); }

.btn {
  border: none;
  padding: 1rem 3rem;
  cursor: pointer;
  position: relative; }
  .btn:focus {
    outline: none; }
  .btn--login {
    padding: 1.5rem 5rem;
    width: 100%;
    background-color: #57b846;
    color: #fff;
    transition: all 0.2s;
    letter-spacing: 0.2rem; }
    .btn--login:hover {
      background-color: #333; }
  .btn--academicSubmit {
    display: flex;
    flex: 0 0 25%;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.2rem;
    background-image: linear-gradient(to right, #57b846, #1f943c); }
    @media only screen and (max-width: 75em) {
      .btn--academicSubmit {
        flex: 0 0 30%; } }
    @media only screen and (max-width: 56.25em) {
      .btn--academicSubmit {
        flex: 0 0 30%; } }
    @media only screen and (max-width: 37.5em) {
      .btn--academicSubmit {
        margin-bottom: 1rem;
        flex: 0 0 52%; } }
    .btn--academicSubmit:hover svg {
      transform: translateX(0.5rem) scale(1.1); }
    .btn--academicSubmit:disabled {
      background-image: linear-gradient(to right, #333, #333); }
      .btn--academicSubmit:disabled:hover {
        cursor: not-allowed; }
  .btn--submit {
    padding: 1.2rem 0;
    display: flex;
    flex: 0 0 25%;
    text-align: center;
    letter-spacing: 0.2rem;
    background-image: linear-gradient(to right, #57b846, #1f943c);
    transition: all 0.2s;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2); }
    .btn--submit:disabled {
      background-image: linear-gradient(to right, #333, #333); }
      .btn--submit:disabled:hover {
        cursor: not-allowed; }
    .btn--submit:hover svg {
      transform: translateX(0.5rem) scale(1.1); }
    @media only screen and (max-width: 75em) {
      .btn--submit {
        flex: 0 0 30%; } }
    @media only screen and (max-width: 56.25em) {
      .btn--submit {
        flex: 0 0 30%; } }
    @media only screen and (max-width: 37.5em) {
      .btn--submit {
        flex: 0 0 50%; } }
    .btn--submit:active {
      box-shadow: 0 1rem 0.5rem rgba(0, 0, 0, 0.2); }
    .btn--submit:hover {
      background-color: #333; }
  .btn--error {
    margin: 0 auto; }
  .btn--back {
    background-image: linear-gradient(to right, #57b846, #1f943c);
    margin-right: auto;
    display: flex;
    align-items: center;
    margin-left: 10%; }
    @media only screen and (max-width: 56.25em) {
      .btn--back {
        margin-left: 5%; } }
  .btn--search {
    display: flex;
    flex: 0 0 22%;
    background-image: linear-gradient(to right, #57b846, #1f943c);
    color: #fff;
    transition: all 0.4s;
    justify-content: center;
    align-items: center;
    letter-spacing: 0.2rem;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2); }
    @media only screen and (max-width: 75em) {
      .btn--search {
        flex: 0 0 28%; } }
    @media only screen and (max-width: 37.5em) {
      .btn--search {
        flex: 0 0 50%; } }
    .btn--search:hover svg {
      transform: translateX(0.5rem) scale(1.1); }
    .btn--search:active {
      box-shadow: 0 1rem 0.5rem rgba(0, 0, 0, 0.2); }
  .btn--menue-close {
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
    transition: transform 0.4s;
    position: relative; }
    @media only screen and (max-width: 56.25em) {
      .btn--menue-close {
        display: flex; }
        .btn--menue-close--active {
          transform: rotate(180deg) scale(1.1); } }
  .btn__icon {
    width: 2rem;
    height: 2rem;
    transition: all 0.3s; }
    .btn__icon--submit {
      min-width: 2rem;
      height: 2rem;
      fill: #fff;
      margin-left: 1rem; }
      .btn__icon--submit-loading {
        animation: loadingRotate 1s linear infinite; }
      .btn__icon--submit-loading_bounce {
        animation: loadingBounce 1s linear infinite; }
    .btn__icon--menue-close {
      width: 3.5rem;
      height: 3.5rem;
      fill: #fff;
      transition: all 0.3s; }
      .btn__icon--menue-close:hover {
        fill: #57b846; }

.spinner {
  position: fixed;
  z-index: 10000;
  background-color: white;
  width: 100%;
  height: 100%; }
  .spinner__1 {
    width: 200px;
    height: 200px;
    border: none;
    border: 8px solid transparent;
    border-top-color: #1f943c;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    animation: spinnerOne 1.2s linear infinite; }
  .spinner__2 {
    width: 200px;
    height: 200px;
    border: none;
    border: 8px solid transparent;
    border-bottom-color: #55c57a;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    animation: spinnerTwo 1.2s linear infinite; }

.side-nav {
  list-style: none;
  margin-bottom: auto; }
  @media only screen and (max-width: 56.25em) {
    .side-nav {
      position: fixed;
      top: 9.25rem;
      right: 3rem;
      z-index: 10;
      display: flex;
      flex-direction: column;
      height: 100vh;
      width: 45%;
      opacity: 0;
      transform: translateX(100%);
      transition: all 0.4s; }
      .side-nav--active {
        opacity: 1;
        transform: translateX(0); } }
  .side-nav__item {
    position: relative;
    background-color: #333;
    padding: 2rem 2rem; }
    .side-nav__item::before {
      z-index: 5;
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      background-image: linear-gradient(to right, #57b846, #1f943c);
      transform: scaleY(0);
      width: 3px;
      height: 100%;
      transition: transform 0.5s, width 0.4s cubic-bezier(1, 0, 0, 1) 0.2s; }
    .side-nav__item:hover::before {
      transform: scaleY(1);
      width: 100%; }
    .side-nav__item:not(:last-child) {
      margin-bottom: 1rem; }
      @media only screen and (max-width: 56.25em) {
        .side-nav__item:not(:last-child) {
          margin-bottom: 0rem;
          transition-delay: 0.2s; } }
    @media only screen and (max-width: 56.25em) {
      .side-nav__item {
        padding: 1rem;
        display: flex;
        justify-content: center;
        align-items: center; } }
    .side-nav__item--active {
      background-image: linear-gradient(to right bottom, #57b846, #1f943c); }
  .side-nav__link {
    position: relative;
    z-index: 6;
    color: #eee;
    display: flex;
    align-items: center; }
    @media only screen and (max-width: 56.25em) {
      .side-nav__link {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center; } }
  .side-nav__icon {
    fill: #eee;
    width: 2rem;
    height: 2rem;
    margin-right: 1rem;
    margin-left: 2rem; }
    @media only screen and (max-width: 56.25em) {
      .side-nav__icon {
        width: 1.5rem;
        height: 1.5rem;
        margin-bottom: 1rem; } }

.nav-brand {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  padding: 4rem 4rem; }
  @media only screen and (max-width: 56.25em) {
    .nav-brand {
      padding: 1rem 2rem;
      flex: 0 0 80%; } }
  .nav-brand__heading {
    margin-right: auto;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    font-size: 2.5rem;
    transition: all 0.2s; }
    .nav-brand__heading:hover {
      color: transparent;
      background-image: linear-gradient(to right, #57b846, #1f943c);
      -webkit-background-clip: text;
      background-clip: text;
      text-align: center; }
    @media only screen and (max-width: 56.25em) {
      .nav-brand__heading {
        margin-right: 0; } }
  .nav-brand__name {
    margin-top: 1.5rem;
    order: 1;
    flex: 0 0 100%; }
    @media only screen and (max-width: 56.25em) {
      .nav-brand__name {
        flex: 0 0 100%;
        margin-top: 1rem; } }
  .nav-brand__icon {
    margin-right: 2rem;
    fill: #eee;
    width: 2.5rem;
    height: 2.5rem; }

.form-data {
  position: relative;
  display: flex;
  flex-wrap: wrap; }
  .form-data__group:not(:last-child) {
    margin-bottom: 4rem; }
  @media only screen and (max-width: 37.5em) {
    .form-data {
      flex-direction: column; } }
  .form-data__group {
    position: relative;
    flex: 0 0 50%;
    display: flex;
    justify-content: center; }
    .form-data__group--submit-btn {
      display: flex;
      align-self: flex-end;
      flex: 0 0 100%;
      justify-content: flex-end;
      padding-right: 1rem 10% 0 0; }
      @media only screen and (max-width: 56.25em) {
        .form-data__group--submit-btn {
          padding-right: 0; } }
      @media only screen and (max-width: 37.5em) {
        .form-data__group--submit-btn {
          align-self: stretch;
          justify-content: center;
          padding-right: 0; } }
    .form-data__group--radio {
      display: flex;
      justify-content: space-around;
      align-items: center; }
    .form-data__group--academicSubmit {
      display: flex;
      flex: 0 0 100%;
      justify-content: space-around; }
      @media only screen and (max-width: 37.5em) {
        .form-data__group--academicSubmit {
          flex-wrap: wrap; } }
  .form-data__label {
    position: absolute;
    top: 4.5rem;
    left: 20%;
    transition: all 0.4s; }
    @media only screen and (max-width: 75em) {
      .form-data__label {
        left: 20%; } }
    @media only screen and (max-width: 56.25em) {
      .form-data__label {
        left: 10%; } }
    .form-data__label--textarea {
      top: 16rem;
      left: 22%; }
      @media only screen and (max-width: 75em) {
        .form-data__label--textarea {
          left: 20%; } }
      @media only screen and (max-width: 56.25em) {
        .form-data__label--textarea {
          left: 10%; } }
      @media only screen and (max-width: 37.5em) {
        .form-data__label--textarea {
          top: 17rem;
          left: 10%; } }
  .form-data__input:placeholder-shown + .form-data__label {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4rem); }
  .form-data__input {
    /* Chrome, Safari, Edge, Opera */
    /* Firefox */
    border: none;
    border-bottom: 3px solid #57b846;
    margin-bottom: 1rem;
    height: 4rem;
    width: 60%; }
    .form-data__input::-webkit-outer-spin-button, .form-data__input::-webkit-inner-spin-button {
      -webkit-appearance: none;
      margin: 0; }
    .form-data__input[type="number"] {
      -moz-appearance: textfield; }
    .form-data__input:disabled {
      background-color: transparent; }
    .form-data__input:focus {
      outline: none; }
    @media only screen and (max-width: 56.25em) {
      .form-data__input {
        width: 80%; } }
  .form-data__textarea {
    border: 3px solid #57b846;
    outline-color: #57b846;
    width: 60%;
    text-transform: uppercase;
    padding: 0.5rem;
    resize: none;
    transition: all 0.6s; }
    .form-data__textarea:focus {
      outline: none; }
    @media only screen and (max-width: 56.25em) {
      .form-data__textarea {
        width: 80%; } }
    .form-data__textarea::-webkit-scrollbar {
      width: 0.8rem; }
      .form-data__textarea::-webkit-scrollbar-thumb {
        background-color: #333; }
  .form-data__textarea:placeholder-shown + .form-data__label {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4rem); }
  .form-data__radio-group {
    display: flex;
    align-items: center;
    justify-content: center; }
  .form-data__radio-input {
    display: none; }
  .form-data__radio-label {
    display: flex; }
    .form-data__radio-label:hover {
      cursor: pointer; }
  .form-data__radio-button {
    width: 2rem;
    height: 2rem;
    border: 2px solid #57b846;
    border-radius: 100px;
    display: inline-block;
    position: relative;
    margin-right: 1.5rem; }
    .form-data__radio-button::after {
      content: "";
      position: absolute;
      width: 70%;
      height: 70%;
      border-radius: 100px;
      border: 2px solid #57b846;
      top: 52%;
      left: 49.5%;
      transform: translate(-50%, -50%);
      background-color: #57b846;
      opacity: 0;
      transition: all 0.2s; }
  .form-data__radio-input:checked ~ .form-data__radio-label .form-data__radio-button::after {
    opacity: 1; }

.dropdown {
  width: 60%;
  position: relative; }
  @media only screen and (max-width: 56.25em) {
    .dropdown {
      width: 80%; } }
  .dropdown__body {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative; }
  .dropdown__heading {
    padding: 1.2rem 0rem;
    border-bottom: 3px solid #57b846;
    position: relative;
    order: 0; }
    .dropdown__heading:hover {
      cursor: pointer; }
  .dropdown__icon {
    width: 2.5rem;
    height: 2.5rem;
    fill: black;
    position: absolute;
    top: 0.5rem;
    right: 0;
    transition: all 0.4s; }
    .dropdown__icon :hover {
      cursor: pointer; }
  .dropdown__options-container--active + .dropdown__icon {
    transform: rotateX(180deg); }
  .dropdown__options-container {
    padding: 2rem 0;
    background-color: #57b846;
    position: absolute;
    z-index: 210000000000;
    color: #fff;
    max-height: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s;
    order: 1;
    top: 7rem; }
    .dropdown__options-container::-webkit-scrollbar {
      width: 0.8rem;
      background-color: #d3d3d3; }
      .dropdown__options-container::-webkit-scrollbar-thumb {
        background-color: #333; }
    .dropdown__options-container--active {
      max-height: 25rem;
      pointer-events: initial;
      opacity: 1;
      overflow-y: scroll;
      position: absolute;
      z-index: 23000000; }
  .dropdown__option {
    padding: 1.2rem 2.4rem;
    cursor: pointer;
    transition: all 0.2s;
    position: relative; }
    .dropdown__option:hover {
      background-color: #eee; }
    .dropdown__option label {
      cursor: pointer; }
  .dropdown__option-item {
    display: none; }
  .dropdown__label {
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(-4rem);
    transition: all 0.2s; }
    .dropdown__label--active {
      opacity: 1;
      transform: translateY(0.9rem); }

.multiDropdown__icon {
  width: 2.5rem;
  height: 2.5rem;
  fill: black;
  position: absolute;
  top: 0.5rem;
  right: 20%;
  transition: all 0.4s; }
  @media only screen and (max-width: 56.25em) {
    .multiDropdown__icon {
      right: 10%; } }
  .multiDropdown__icon :hover {
    cursor: pointer; }

.multiDropdown__container {
  width: 60%; }
  .multiDropdown__container--disabled {
    pointer-events: none;
    opacity: 0.3; }
    .multiDropdown__container--disabled:hover {
      cursor: not-allowed; }
  @media only screen and (max-width: 56.25em) {
    .multiDropdown__container {
      width: 80%; } }

.multiDropdown__header {
  font-size: 1.3rem;
  font-family: "Montserrat", sans-serif;
  color: #999;
  text-transform: uppercase;
  padding: 1.5rem 0;
  border-bottom: 3px solid #57b846; }
  .multiDropdown__header:hover {
    cursor: pointer; }

.multiDropdown__body {
  width: 60%;
  opacity: 0;
  max-height: 0;
  visibility: hidden;
  position: absolute;
  z-index: 210000000001;
  transition: all 0.4s;
  background-color: #57b846;
  padding: 2rem 0rem;
  margin: 1rem 0; }
  @media only screen and (max-width: 56.25em) {
    .multiDropdown__body {
      width: 80%; } }
  .multiDropdown__body::-webkit-scrollbar {
    width: 0.8rem;
    background-color: #d3d3d3; }
    .multiDropdown__body::-webkit-scrollbar-thumb {
      background-color: #333; }
  .multiDropdown__body--active {
    opacity: 1;
    max-height: 20rem;
    visibility: unset;
    overflow-y: scroll; }

.multiDropdown__body--active + .multiDropdown__icon {
  transform: rotateX(180deg); }

.multiDropdown__options {
  display: flex;
  flex-direction: column;
  font-size: 1.5rem;
  color: white;
  font-weight: 500;
  font-family: "Montserrat", sans-serif; }

.multiDropdown__item {
  padding: 1rem 2rem;
  transition: all 0.3s;
  margin: 0.5rem 0; }
  .multiDropdown__item:hover {
    cursor: pointer;
    background-color: #eee;
    color: #333; }
  .multiDropdown__item--active {
    background-color: #eee;
    color: #333;
    font-weight: bold; }

.multiDropdown__footer {
  border: 3px solid #57b846;
  padding: 1rem 2rem;
  margin: 1rem 0;
  text-transform: uppercase;
  z-index: 210000000000;
  max-height: 15rem;
  overflow-y: scroll; }
  .multiDropdown__footer::-webkit-scrollbar {
    width: 0.8rem; }
    .multiDropdown__footer::-webkit-scrollbar-thumb {
      background-color: #333; }

.multiDropdown__selectHeader {
  font-size: 1.4rem;
  font-family: "Montserrat", sans-serif;
  color: #999; }

.multiDropdown__selectedList {
  padding: 1rem 2rem; }

.multiDropdown__selectedListItem {
  font-size: 1.2rem;
  font-family: "Montserrat", sans-serif;
  color: #333;
  font-weight: bold;
  margin: 0.5rem 0; }

.alert__container {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100000;
  width: 50vw;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transform: translateX(60rem);
  margin-top: 2rem;
  margin-right: 2rem;
  min-height: 8rem;
  transition: all 0.5s; }
  @media only screen and (max-width: 37.5em) {
    .alert__container {
      width: 70vw; } }
  .alert__container--success {
    background-image: linear-gradient(to right, #57b846, #1f943c);
    opacity: 1;
    transform: translateX(0); }
  .alert__container--warning {
    opacity: 1;
    transform: translateX(0);
    background-color: #ff0000; }

.alert__body {
  display: flex; }

.search {
  display: flex;
  flex: 0 1 auto;
  flex-wrap: wrap;
  justify-content: center;
  align-self: baseline; }
  @media only screen and (max-width: 37.5em) {
    .search {
      align-items: stretch;
      justify-content: center; } }
  .search__input {
    width: 50%;
    padding: 1rem;
    margin-right: 3rem;
    border: none;
    border: 3px solid transparent;
    border-bottom: 3px solid #57b846;
    transition: all 0.2s;
    font-family: "Montserrat", sans-serif; }
    .search__input::placeholder {
      text-transform: uppercase;
      font-size: 1.3rem;
      letter-spacing: 0.2rem; }
    @media only screen and (max-width: 37.5em) {
      .search__input {
        width: 80%;
        margin-bottom: 2rem; } }
    .search__input:focus {
      outline: none; }

.welcome {
  width: 100%;
  height: 100%; }
  .welcome__title {
    padding-top: 5rem;
    font-size: 10rem;
    font-family: "Lato", sans-serif;
    text-transform: uppercase;
    color: transparent;
    letter-spacing: 1rem;
    background-image: linear-gradient(to right, #57b846, #1f943c);
    -webkit-background-clip: text;
    background-clip: text;
    text-align: center;
    animation: fadeDown 0.6s; }
    @media only screen and (max-width: 37.5em) {
      .welcome__title {
        font-size: 4.4rem; } }
  .welcome__menue {
    flex-direction: column;
    text-align: center;
    margin-top: 10rem;
    min-height: 10rem;
    animation: fadeUp 0.6s;
    display: flex;
    justify-content: space-around; }
    @media only screen and (max-width: 37.5em) {
      .welcome__menue {
        margin-top: 5rem; } }
    @media only screen and (max-width: 37.5em) {
      .welcome__menue--admin {
        flex-direction: column; }
        .welcome__menue--admin > * {
          margin-bottom: 2rem; } }
    .welcome__menue-btn {
      box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
      letter-spacing: 0.3rem;
      font-family: "Lato", sans-serif;
      font-size: 1.5rem;
      align-self: center;
      background-color: #333;
      padding: 2rem 4rem;
      display: flex;
      justify-content: center;
      transition: all 0.4s;
      min-width: 50%; }
      .welcome__menue-btn--admin {
        margin: 1rem 1rem; }
        @media only screen and (max-width: 37.5em) {
          .welcome__menue-btn--admin {
            width: 30rem;
            margin-right: 0; } }
      .welcome__menue-btn--dean {
        padding: 2rem;
        flex: 1 0 35%;
        margin: 1rem 1rem; }
        @media only screen and (max-width: 37.5em) {
          .welcome__menue-btn--dean {
            width: 30rem; } }
      .welcome__menue-btn:hover {
        cursor: pointer;
        background-image: linear-gradient(to right, #57b846, #1f943c);
        transform: translateY(-0.5rem);
        box-shadow: 0 1rem 0.5rem rgba(0, 0, 0, 0.2); }
      .welcome__menue-btn:active {
        box-shadow: 0 1.5rem 0.5rem rgba(0, 0, 0, 0.4); }

.hr__middleText {
  display: flex;
  justify-content: center;
  margin: 1rem 0; }

.hr__text {
  font-family: "Lato", sans-serif;
  font-size: 2rem;
  color: #57b846;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-weight: 700; }
  .hr__text::after, .hr__text::before {
    content: "";
    height: 1px;
    display: inline-block;
    background-color: #333;
    width: 10rem;
    margin: 0 1rem; }

.table {
  width: 100%;
  padding: 4rem;
  border: none; }
  .table--academic {
    width: 70%;
    margin: 1rem auto; }
    @media only screen and (max-width: 75em) {
      .table--academic {
        width: 80%; } }
    @media only screen and (max-width: 56.25em) {
      .table--academic {
        width: 100%;
        padding: 1rem; } }
  .table--allUsers {
    width: 100%;
    margin: 1rem auto; }
    @media only screen and (max-width: 75em) {
      .table--allUsers {
        width: 100%; } }
    @media only screen and (max-width: 56.25em) {
      .table--allUsers {
        width: 100%;
        padding: 0.5rem; } }
  .table__head {
    background-image: linear-gradient(to top right, #333, #333); }
    .table__head--academic {
      background-image: linear-gradient(to top right, #333, #333); }
    .table__head--allUsers {
      background-image: linear-gradient(to top right, #333, #333); }
  .table__headingTitle {
    font-family: "Lato", sans-serif;
    font-size: 1.3rem;
    color: #fff;
    padding: 1rem;
    letter-spacing: 0.1rem;
    text-transform: uppercase; }
    .table__headingTitle--academic {
      font-size: 1.3rem; }
    .table__headingTitle--allUsers {
      font-size: 1.3rem; }
      @media only screen and (max-width: 37.5em) {
        .table__headingTitle--allUsers-hide {
          display: none;
          background-color: red; } }
      @media only screen and (max-width: 20em) {
        .table__headingTitle--allUsers-hide {
          display: none;
          background-color: red; } }
  .table__data {
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-size: 1.3rem;
    color: #333;
    padding: 1rem;
    border-bottom: 2px solid #57b846; }
    .table__data--link {
      color: #333;
      text-align: center;
      display: inline;
      text-decoration: underline;
      font-weight: bold; }
    .table__data--actionBtns {
      min-width: 15rem; }
    @media only screen and (max-width: 37.5em) {
      .table__data--hide {
        display: none;
        background-color: red; } }
    @media only screen and (max-width: 20em) {
      .table__data--hide {
        display: none;
        background-color: red; } }
  .table__icon {
    width: 1.5rem;
    height: 1.5rem;
    fill: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none; }
  .table__btn-action {
    background-color: #333;
    border: none;
    padding: 0.5rem;
    transition: all 0.3s; }
    .table__btn-action:not(:last-child) {
      margin-right: 1rem; }
    .table__btn-action:hover {
      cursor: pointer;
      background-image: linear-gradient(to top right, #57b846, #1f943c); }
    .table__btn-action:active {
      outline: none;
      box-shadow: 0 0.5rem 0.2rem rgba(0, 0, 0, 0.5); }

.content {
  width: 100%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap; }
  .content__group {
    background-color: #333;
    flex: 0 1 30%;
    margin: 3rem 1rem;
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
    text-transform: uppercase;
    outline: none;
    border: none;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
    transition: all 0.2s; }
    .content__group--report {
      padding: 1.5rem 2rem;
      flex: 0 1 22%; }
    @media only screen and (max-width: 37.5em) {
      .content__group {
        flex: 0 1 70%; } }
    @media only screen and (max-width: 20em) {
      .content__group {
        flex: 0 1 60%; } }
    .content__group:hover {
      cursor: pointer;
      background-image: linear-gradient(to right, #57b846, #1f943c);
      box-shadow: 0 1rem 0.5rem rgba(0, 0, 0, 0.2);
      transform: translateY(-0.2rem); }
    .content__group:active {
      box-shadow: 0 1rem 0.5rem rgba(0, 0, 0, 0.4); }
  .content__group:hover .content__notification {
    background-color: #333; }
  .content__group:hover .content__notification--empty {
    background-color: #d3d3d3; }
  .content__text {
    color: #eee;
    font-size: 1.3rem;
    font-family: "Lato", sans-serif;
    margin-right: auto;
    font-weight: 600;
    letter-spacing: 0.15rem; }
    @media only screen and (max-width: 37.5em) {
      .content__text {
        font-size: 1.2rem; } }
  .content__notification {
    padding: 0.5rem;
    background-color: #57b846;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s; }
    .content__notification--empty {
      background-color: #d3d3d3;
      color: #333; }
  .content__notification-text {
    color: white;
    font-weight: 600; }
    @media only screen and (max-width: 37.5em) {
      .content__notification-text {
        font-size: 1.3rem; } }
    @media only screen and (max-width: 20em) {
      .content__notification-text {
        font-size: 1.3rem; } }
    .content__notification-text--empty {
      color: #333; }

.popup {
  position: fixed;
  width: 100%;
  min-height: 100vh;
  background-color: rgba(51, 51, 51, 0.8);
  backface-visibility: hidden;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
  animation: popupAnimation 0.5s cubic-bezier(0.08, 1.4, 0.79, 1.07);
  z-index: 1000;
  color: #333; }
  .popup--active {
    display: flex; }
  .popup__container {
    flex: 0 1 70%;
    max-height: 80vh;
    background-color: #eeeeee;
    display: flex;
    padding: 5rem 10rem;
    flex-wrap: wrap;
    overflow-y: scroll;
    position: relative;
    z-index: 1002; }
    @media only screen and (max-width: 75em) {
      .popup__container {
        padding: 4rem 5rem;
        flex: 0 1 60%; } }
    @media only screen and (max-width: 56.25em) {
      .popup__container {
        padding: 4rem 5rem;
        flex: 0 1 80%; } }
    @media only screen and (max-width: 37.5em) {
      .popup__container {
        padding: 4rem 2rem;
        flex: 0 1 90%; } }
    .popup__container::-webkit-scrollbar {
      width: 0.8rem; }
      .popup__container::-webkit-scrollbar-thumb {
        background-color: #57b846; }
  .popup__row {
    align-items: center;
    margin-top: 3rem;
    display: flex;
    flex: 0 1 100%;
    border-bottom: 2px solid #57b846;
    padding: 1rem 0;
    align-items: flex-start; }
  .popup__title-container {
    flex: 0 1 50%;
    letter-spacing: 0.2rem;
    margin-right: 1rem; }
  .popup__title {
    font-family: "Lato", sans-serif;
    text-transform: uppercase;
    font-size: 1.8rem; }
  .popup__data-container {
    letter-spacing: 0.05rem;
    flex: 0 1 50%; }
  .popup__data {
    font-family: "Montserrat", sans-serif;
    font-size: 1.8rem;
    line-height: 2.2rem; }
  .popup__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-image: linear-gradient(to right, #57b846, #1f943c);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.7rem;
    border-radius: 100px;
    border: none;
    transition: all 0.2s;
    box-shadow: 0 0.3rem 0.5rem rgba(255, 255, 255, 0.2); }
    .popup__close:hover {
      cursor: pointer;
      transform: scale(1.2); }
    .popup__close:active {
      outline: none;
      box-shadow: 0 0.5rem 0.9rem rgba(255, 255, 255, 0.3); }
  .popup__close:hover .popup__close-icon {
    fill: #333; }
  .popup__close-icon {
    width: 2rem;
    height: 2rem;
    fill: #eee;
    transition: all 0.3s; }
  .popup__spinner-container {
    min-height: 30vh; }
    @media only screen and (max-width: 37.5em) {
      .popup__spinner-container {
        min-height: 20vh; } }
    @media only screen and (max-width: 20em) {
      .popup__spinner-container {
        min-height: 10vh; } }
  .popup__spinner--1 {
    width: 10vw;
    height: 10vw;
    border: none;
    border: 8px solid transparent;
    border-bottom-color: #57b846;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: spinnerOne 1.2s linear infinite; }
    @media only screen and (max-width: 37.5em) {
      .popup__spinner--1 {
        width: 15vw;
        height: 15vw; } }
    @media only screen and (max-width: 20em) {
      .popup__spinner--1 {
        width: 20vw;
        height: 20vw;
        border: 5px solid transparent;
        border-bottom-color: #57b846; } }
  .popup__spinner--2 {
    width: 10vw;
    height: 10vw;
    border: none;
    border: 8px solid transparent;
    border-top-color: #28b44b;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: spinnerTwo 1.2s linear infinite; }
    @media only screen and (max-width: 37.5em) {
      .popup__spinner--2 {
        width: 15vw;
        height: 15vw; } }
    @media only screen and (max-width: 20em) {
      .popup__spinner--2 {
        width: 20vw;
        height: 20vw;
        border: 5px solid transparent;
        border-top-color: #28b44b; } }

.confirmation {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  min-height: 100vh;
  background-color: rgba(51, 51, 51, 0.8);
  display: flex;
  justify-content: center;
  display: none; }
  .confirmation--active {
    display: flex; }
  .confirmation__emoji {
    font-size: 5rem;
    text-align: center; }
  .confirmation__container {
    position: relative;
    animation: confirmationAnimation 0.2s linear;
    flex: 0 1 30%;
    max-height: 25rem;
    background-color: #333;
    padding: 2rem 1rem;
    margin-top: 10rem;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly; }
    @media only screen and (max-width: 75em) {
      .confirmation__container {
        flex: 0 1 40%; } }
    @media only screen and (max-width: 56.25em) {
      .confirmation__container {
        flex: 0 1 60%; } }
    @media only screen and (max-width: 37.5em) {
      .confirmation__container {
        flex: 0 1 80%; } }
    @media only screen and (max-width: 20em) {
      .confirmation__container {
        max-height: 30vh; } }
  .confirmation__title {
    display: flex;
    justify-content: center;
    font-family: "Lato", sans-serif;
    text-align: center;
    font-size: 1.7rem;
    color: #fff;
    position: relative;
    letter-spacing: 0.1rem;
    font-weight: 300; }
    @media only screen and (max-width: 75em) {
      .confirmation__title {
        font-size: 1.8rem; } }
    @media only screen and (max-width: 37.5em) {
      .confirmation__title {
        font-size: 1.6rem; } }
    @media only screen and (max-width: 20em) {
      .confirmation__title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        padding: 2rem 1rem; } }
  .confirmation__btn-group {
    display: flex;
    justify-content: space-evenly;
    padding: 0 6rem; }
    @media only screen and (max-width: 37.5em) {
      .confirmation__btn-group {
        padding: 0 2rem; } }
  .confirmation__btn {
    background-image: linear-gradient(to right, #57b846, #1f943c);
    position: relative;
    z-index: 10002;
    color: #fff;
    flex: 0 1 30%;
    padding: 0.5rem;
    letter-spacing: 0.1rem;
    transition: all 0.2s;
    font-weight: 800;
    font-family: "Lato", sans-serif;
    border: none; }
    @media only screen and (max-width: 37.5em) {
      .confirmation__btn {
        font-size: 1.4rem;
        flex: 0 1 30%; } }
    .confirmation__btn:hover {
      cursor: pointer;
      color: #fff;
      transform: translateY(-0.3rem); }
      .confirmation__btn:hover::after {
        opacity: 0; }
    .confirmation__btn:active {
      outline: none;
      box-shadow: 0 0.5rem 0.9rem rgba(255, 255, 255, 0.3);
      transform: translateY(0.1rem); }
  .confirmation__spinner--1 {
    width: 100px;
    height: 100px;
    border: none;
    border: 8px solid transparent;
    border-bottom-color: #57b846;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: spinnerOne 1.2s linear infinite; }
  .confirmation__spinner--2 {
    width: 100px;
    height: 100px;
    border: none;
    border: 8px solid transparent;
    border-top-color: #28b44b;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: spinnerTwo 1.2s linear infinite; }
  .confirmation__icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto;
    fill: #57b846;
    font-size: 5rem; }

.error__container {
  min-height: 95vh;
  padding: 1rem;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center; }

.error__icon {
  display: flex;
  justify-content: center;
  padding: 5rem 0;
  flex: 0 1 100%;
  align-items: center; }
  @media only screen and (max-width: 75em) {
    .error__icon {
      max-width: 40rem; } }
  @media only screen and (max-width: 56.25em) {
    .error__icon {
      max-width: 30rem; } }
  @media only screen and (max-width: 37.5em) {
    .error__icon {
      padding: 1rem 2rem;
      max-height: 20rem; } }
  @media only screen and (max-width: 20em) {
    .error__icon {
      padding: 0rem 3rem; } }

.error__text {
  font-family: "Lato", sans-serif;
  font-size: 3.5rem;
  text-align: center;
  margin: 1rem 0 2rem;
  animation: fadeDown 0.6s;
  letter-spacing: 0.2rem; }
  @media only screen and (max-width: 75em) {
    .error__text {
      font-size: 3rem; } }
  @media only screen and (max-width: 56.25em) {
    .error__text {
      font-size: 2.5rem; } }
  @media only screen and (max-width: 37.5em) {
    .error__text {
      font-size: 2rem; } }
  @media only screen and (max-width: 20em) {
    .error__text {
      font-size: 2rem; } }
  .error__text--primary {
    color: #57b846;
    font-family: "Lato", sans-serif; }
  @media only screen and (max-width: 75em) {
    .error__text--secondary {
      font-size: 4rem; } }
  @media only screen and (max-width: 56.25em) {
    .error__text--secondary {
      font-size: 3rem; } }
  @media only screen and (max-width: 37.5em) {
    .error__text--secondary {
      font-size: 2.5rem; } }
  @media only screen and (max-width: 20em) {
    .error__text--secondary {
      font-size: 2.5rem; } }

.footer {
  margin: 0 auto 2rem; }
  @media only screen and (max-width: 56.25em) {
    .footer {
      display: none; } }
  .footer p {
    letter-spacing: 0.1rem; }

.section-spinner {
  min-width: 100vw;
  min-height: 100vh;
  background-color: rgba(255, 255, 255, 0.288);
  position: fixed;
  z-index: 10000; }

.section-login {
  position: relative;
  background-image: url("../img/login-cover.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0; }
  @media only screen and (max-width: 75em) {
    .section-login {
      min-height: 100vh; } }
  .section-login::before {
    z-index: 1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px); }

.section-main {
  width: 100%;
  min-height: 100vh;
  padding: 4rem 6rem;
  background-color: #eee;
  display: flex; }
  @media only screen and (max-width: 75em) {
    .section-main {
      padding: 2rem 3rem; } }
  @media only screen and (max-width: 56.25em) {
    .section-main {
      flex-direction: column;
      padding: 2rem 3rem; } }

.sidebar {
  color: #eee;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 0 0 24%;
  background-color: #333; }
  @media only screen and (max-width: 56.25em) {
    .sidebar {
      flex-direction: row;
      position: relative; } }

.main-content {
  position: relative;
  flex: 1;
  padding: 4rem 6rem;
  background-color: #fff;
  z-index: 1; }
  @media only screen and (max-width: 56.25em) {
    .main-content {
      padding: 2rem 2rem; } }
