:root {
  --red-glow: #ff5470;
  --dark-blue: #00214d;
  --bezier: cubic-bezier(0.5, 0, 0.5, 1);
  --desktop-nav-height: 9.2rem;
  --mobile-nav-height: 5.5rem;
}

/* animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes moveInTop {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes moveInBottomLeft {
  0% {
    opacity: 0;
    transform: translateX(100px) translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px) translateY(0);
  }
}
.fadeIn {
  animation-name: fadeIn;
}

.moveInTop {
  animation-name: moveInTop;
}

.moveInLeft {
  animation-name: moveInLeft;
}

.moveInRight {
  animation-name: moveInRight;
}

.moveInBottom {
  animation-name: moveInBottom;
}

.moveInBottomLeft {
  animation-name: moveInBottomLeft;
}

.duration--0_5 {
  animation-duration: 0.5s;
}

.duration--1 {
  animation-duration: 1s;
}

.duration--1_5 {
  animation-duration: 1.5s;
}

.duration--2 {
  animation-duration: 2s;
}

.delay--1 {
  animation-delay: 1s;
}

.delay--1_5 {
  animation-delay: 1.5s;
}

/* Custom Animations */
@keyframes moveInRightDash {
  0% {
    opacity: 0;
    transform: translateX(-100px) translateY(-25%);
  }
  100% {
    opacity: 1;
    transform: translateX(0px) translateY(-25%);
  }
}
.moveInRightDash {
  animation-name: moveInRightDash;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

a {
  background-color: transparent;
}

img {
  border-style: none;
}

input {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

input {
  overflow: visible;
}

[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 10px;
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden;
  overflow-y: scroll;
  background-color: white;
  scroll-behavior: smooth;
}

@media (-webkit-min-device-pixel-ratio: 1.25) and (min-width: 1280px) {
  html {
    font-size: 8px;
  }
}
img {
  width: auto;
}

h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  margin-top: 0rem;
}

p {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.65;
}

.footer {
  background: #001534;
  color: #b7c9e4;
}

.footer__container {
  display: flex;
  flex-direction: column;
  padding: 2.4rem 0;
  align-items: center;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  margin: 0 auto;
  max-width: 33.5rem;
}
@media only screen and (min-width: 1280px) {
  .footer__container {
    max-width: 128rem;
    flex-direction: row;
    padding: 3rem 4rem;
    height: 18rem;
  }
}

.footer__container > * + * {
  margin-top: 1.5rem;
}
@media only screen and (min-width: 1280px) {
  .footer__container > * + * {
    margin-top: 0;
    margin-left: 10.2rem;
  }
}

@media only screen and (min-width: 1280px) {
  .footer__description {
    font-weight: 400;
    width: 56.1rem;
  }
}

.footer__right {
  width: 100%;
}
@media only screen and (min-width: 1280px) {
  .footer__right {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 52.9rem;
  }
}

.footer__right--top > * + * {
  margin-top: 1.8rem;
}
@media only screen and (min-width: 1280px) {
  .footer__right--top {
    display: flex;
    flex-direction: row;
  }
  .footer__right--top > * + * {
    margin-top: 0;
    margin-left: 10.6rem;
  }
}

.footer-nav__section {
  width: 100%;
}
@media only screen and (min-width: 1280px) {
  .footer-nav__section {
    display: flex;
    flex-direction: row;
  }
  .footer-nav__section > * + * {
    margin-left: 7.2rem;
  }
}

.footer-nav__section > * + * {
  margin-top: 1.2rem;
}
@media only screen and (min-width: 1280px) {
  .footer-nav__section > * + * {
    margin-top: 0;
  }
}

.footer-nav__menu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media only screen and (min-width: 1280px) {
  .footer-nav__menu {
    flex-direction: column;
    justify-content: flex-start;
  }
  .footer-nav__menu > * + * {
    margin-top: 0.4rem;
  }
}

.footer-nav__menu--items {
  font-size: 1.2rem;
  font-weight: 400;
}
.footer-nav__menu--items > * + * {
  margin-top: 0.4rem;
}

.footer-nav__icon {
  background: #b7c9e4;
  color: #001534;
  border-radius: 1.5rem;
}

.footer-icon__section {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (min-width: 1280px) {
  .footer-icon__section {
    align-items: flex-start;
  }
}

.footer-icon__section > * + * {
  margin-top: 0.5rem;
}

.footer-icon__container {
  display: flex;
  flex-direction: row;
}

.footer-icon__container > * + * {
  margin-left: 1.5rem;
}
@media only screen and (min-width: 1280px) {
  .footer-icon__container > * + * {
    margin-left: 0.5rem;
  }
}

.footer-icon__item {
  background: var(--red-glow);
  color: var(--dark-blue);
  width: 3rem;
  height: 3rem;
  padding: 0.5rem;
  border-radius: 1.5rem;
}
@media only screen and (min-width: 1280px) {
  .footer-icon__item {
    background: white;
    color: var(--dark-blue);
  }
}

.footer__copyright {
  font-size: 1.2rem;
  font-weight: 400;
  text-align: center;
  margin-top: 2rem;
}
@media only screen and (min-width: 411px) {
  .footer__copyright {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 1280px) {
  .footer__copyright {
    margin-top: 0;
    text-align: right;
  }
}

.project-box__container {
  display: flex;
  flex-direction: column;
  padding: 1.8rem 2.5rem;
  background: #f2f4f6;
  border-radius: 1rem;
}

.project-box__top-container {
  display: flex;
  flex-direction: row;
}
.project-box__top-container > * + * {
  margin-left: 1.6rem;
}
@media only screen and (min-width: 1280px) {
  .project-box__top-container > * + * {
    margin-left: 2.6rem;
  }
}

.project-box__img {
  width: 5rem;
  height: 5rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
  background-image: url("/images/missing-avatar.svg");
  background-size: cover;
}
@media only screen and (min-width: 1280px) {
  .project-box__img {
    width: 10rem;
    height: 10rem;
  }
}

.project-box__content--container {
  display: inline-grid;
  width: 100%;
}
@media only screen and (min-width: 1280px) {
  .project-box__content--container {
    display: block;
  }
}

.project-box__content {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  overflow: hidden;
  line-height: 1.15;
}
@media only screen and (min-width: 1280px) {
  .project-box__content {
    margin-bottom: 1rem;
  }
}

.project-box__name {
  font-weight: 700;
}

.project-box__name-action {
  font-weight: 400;
}
@media only screen and (min-width: 1280px) {
  .project-box__name-action {
    font-weight: 700;
  }
}

.project-box__bottom-container {
  margin-top: 2.2rem;
}
@media only screen and (min-width: 1280px) {
  .project-box__bottom-container {
    margin: auto 0 auto 2.5rem;
  }
}

.project-box__details--container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.project-box__close-button {
  width: 1.4rem;
  height: 1.4rem;
  color: #9d9d9d;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}

.project-box__details {
  text-decoration: underline;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}

.project-box__project-title {
  color: var(--dark-blue);
  font-weight: bold;
}

.project-box__project-link {
  text-align: center;
  display: block;
  margin: 1rem 0;
  padding: 1rem 0;
  font-size: 1.2rem;
  font-weight: bold;
  color: black;
}

.project-box__agree-button {
  padding: 1rem 0;
  background: var(--dark-blue);
  color: white;
  border-radius: 1rem;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.project-box__decline-button {
  padding: 1rem 0;
  background: #eb2d2d;
  color: white;
  border-radius: 1rem;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
}

.project-box__message {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media only screen and (min-width: 1280px) {
  .project-box__message {
    font-weight: 400;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

.project-box__item--container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}
@media only screen and (min-width: 1280px) {
  .project-box__item--container > * + * {
    margin-top: 1.2rem;
  }
}

.project-box__item--img {
  width: 9rem;
  height: 10rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
  background-image: url("/images/img-placeholder.png");
  background-size: cover;
  background-position: center;
}
@media only screen and (min-width: 411px) {
  .project-box__item--img {
    width: 10rem;
  }
}

.project-box__item--status {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 1.36rem;
  font-weight: bold;
}
.project-box__item--status > * + * {
  margin-left: 0.5rem;
}
@media only screen and (min-width: 411px) {
  .project-box__item--status {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 1280px) {
  .project-box__item--status {
    margin-top: 0.8rem;
    margin-bottom: 0.4rem;
  }
}

.project-box__item--lecture-statuses {
  display: flex;
  flex-direction: column;
}
.project-box__item--lecture-statuses > * + * {
  margin-top: 0.4rem;
}
@media only screen and (min-width: 1280px) {
  .project-box__item--lecture-statuses {
    flex-direction: row;
  }
  .project-box__item--lecture-statuses > * + * {
    margin-top: 0;
    margin-left: 2rem;
  }
}

.project-box__item--status-lecturer {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 1.1rem;
}
.project-box__item--status-lecturer > * + * {
  margin-left: 0.5rem;
}

.project-box__item--status-blue {
  color: var(--dark-blue);
}

.project-box__item--status-red {
  color: #eb2d2d;
}

.project-box__item--icon {
  width: 1.8rem;
  height: 1.8rem;
}
@media only screen and (min-width: 411px) {
  .project-box__item--icon {
    width: 2rem;
    height: 2rem;
  }
}
@media only screen and (min-width: 1280px) {
  .project-box__item--icon {
    width: 1.2rem;
    height: 1.2rem;
  }
}

.project-box__item--lecturer-icon {
  width: 1rem;
  margin-left: 0.2rem;
}

.project-box__item--title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #020201;
  line-height: 1.25;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media only screen and (min-width: 411px) {
  .project-box__item--title {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 1280px) {
  .project-box__item--title {
    font-size: 2.4rem;
  }
}

.project-box__item--details {
  font-size: 1.4rem;
  text-decoration: underline;
  font-weight: bold;
}

.project-box__item--p {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 2rem;
}

.project-box__item--button-group {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 411px) {
  .project-box__item--button-group {
    flex-direction: row;
  }
}
@media only screen and (min-width: 1280px) {
  .project-box__item--button-group {
    flex-direction: column;
  }
}

.project-box__item--button-group > * + * {
  margin-top: 1rem;
}
@media only screen and (min-width: 411px) {
  .project-box__item--button-group > * + * {
    margin-left: 1rem;
    margin-top: 0;
  }
}
@media only screen and (min-width: 1280px) {
  .project-box__item--button-group > * + * {
    margin-left: 0;
    margin-top: 1rem;
  }
}

.project-box__item--icon {
  min-width: 3.5rem;
}
.project-box__item--icon > * + * {
  margin-top: 0.5rem;
}
@media only screen and (min-width: 1280px) {
  .project-box__item--icon {
    min-width: unset;
  }
}

.project-box__item--text {
  font-size: 1.2rem;
}
@media only screen and (min-width: 1280px) {
  .project-box__item--text {
    font-size: 1.1rem;
  }
}

.project-box__item--summaries {
  display: flex;
  flex-direction: column;
}
.project-box__item--summaries > * + * {
  margin-top: 0.5rem;
}
@media only screen and (min-width: 1280px) {
  .project-box__item--summaries {
    flex-direction: row;
  }
  .project-box__item--summaries > * + * {
    margin-top: 0;
    margin-left: 2rem;
  }
}

.candidates__modal--h4 {
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
}

.candidates__modal--h5 {
  font-size: 2rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.candidates__waiting--avatar {
  width: 4.5rem;
  height: 4.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  background-image: url("/images/missing-avatar.svg");
  background-size: cover;
}
@media only screen and (min-width: 1280px) {
  .candidates__waiting--avatar {
    width: 6.5rem;
    height: 6.5rem;
  }
}

.candidates__avatar {
  width: 6.5rem;
  height: 6.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  background-image: url("/images/missing-avatar.svg");
  background-size: cover;
}

.candidates__name {
  font-size: 1.8rem;
  font-weight: 700;
}

.candidates__expertise {
  font-size: 1.8rem;
  font-weight: 600;
}

.candidates__list {
  display: flex;
  flex-direction: column;
}
.candidates__list > * + * {
  margin-top: 1.6rem;
}

button {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}

.btn-loading {
  position: relative;
  pointer-events: none;
  color: transparent !important;
}
.btn-loading:after {
  animation: spinAround 500ms infinite linear;
  border: 0.2rem solid #fff;
  border-radius: 50%;
  border-right-color: transparent;
  border-top-color: transparent;
  content: "";
  display: block;
  height: 1em;
  width: 1em;
  position: absolute;
  left: calc(50% - 0.5em);
  top: calc(50% - 0.5em);
}

@keyframes spinAround {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.btn {
  font-size: 1.8rem;
  font-weight: 700;
  width: 100%;
  border: none;
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 4.5rem;
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  letter-spacing: 0.02em;
}
@media only screen and (min-width: 1280px) {
  .btn {
    width: 20rem;
  }
}
.btn > :not(:last-child) {
  margin-right: 0.5rem;
}
.btn:disabled {
  color: #80807e;
  background-color: #f1f1f1;
  border-color: #f1f1f1;
}
.btn:active, .btn:focus {
  outline: none;
  border: none;
}

.btn--min {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.btn--red {
  background-color: var(--red-glow);
  color: #020201;
}

.btn--decline {
  background-color: #ffc7d1;
  color: #c50000;
}

.btn--blue {
  background-color: var(--dark-blue);
  color: #ffffff;
}

.btn--white {
  background-color: #ffffff;
  color: var(--dark-blue);
  border: 0.1rem solid var(--dark-blue);
}
.btn--white:active, .btn--white:focus {
  outline: none;
  border: 0.1rem solid var(--dark-blue);
}

.btn--border {
  color: var(--dark-blue);
  border: 0.1rem solid var(--dark-blue);
  background-color: transparent;
}

.btn--grey {
  background: #f1f1f1;
  color: var(--dark-blue);
}

.btn--green {
  background-color: #dcedc8;
  color: #558b2f;
}

.btn--accepted {
  width: 9rem;
  height: 3rem;
  background-color: #dcedc8;
  color: #558b2f;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.4rem;
}
@media only screen and (min-width: 1280px) {
  .btn--accepted {
    width: 12rem;
    height: 3.5rem;
    font-size: 1.8rem;
  }
}

.btn--accept {
  width: 9rem;
  height: 3rem;
  background-color: var(--dark-blue);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.4rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media only screen and (min-width: 1280px) {
  .btn--accept {
    width: 12rem;
    height: 3.5rem;
    font-size: 1.8rem;
  }
}

.btn--cancel {
  width: 9rem;
  height: 3rem;
  background-color: #ffc7d1;
  color: #c50000;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.4rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media only screen and (min-width: 1280px) {
  .btn--cancel {
    width: 12rem;
    height: 3.5rem;
    font-size: 1.8rem;
  }
}

.btn--details {
  width: 9rem;
  height: 3rem;
  background-color: var(--dark-blue);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.4rem;
}
@media only screen and (min-width: 1280px) {
  .btn--details {
    width: 12rem;
    height: 3.5rem;
    font-size: 1.8rem;
  }
}

.btn--grey-2 {
  background: #c6c5c5;
  color: #020201;
}

.btn--small {
  height: 4rem;
  border-radius: 1rem;
  font-size: 1.4rem;
}

.btn--large {
  height: 6rem;
  border-radius: 1.5rem;
}

.btn--clear {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.btn--clear:active, .btn--clear:focus {
  outline: none;
  border: none;
}

.btn--link {
  text-decoration: underline;
  border: unset;
  background-color: unset;
  font-weight: 400;
  color: var(--dark-blue);
}

.btn--group {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 1280px) {
  .btn--group {
    flex-direction: row;
  }
}

@media only screen and (min-width: 1280px) {
  .btn__small--xl {
    height: 4rem;
    border-radius: 1rem;
    font-size: 1.4rem;
  }
}

.page-enter-active,
.page-leave-active {
  transition: opacity 0.2s;
}

.page-enter,
.page-leave-to {
  opacity: 0;
}

.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.15s;
}

.fade-enter,
.fade-leave-to {
  opacity: 0;
}

.blue {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.65;
  padding: 0.5rem 1.5rem;
  border-radius: 1rem;
  color: #ffffff;
  background-color: var(--dark-blue);
  letter-spacing: 0.02em;
}
@media only screen and (min-width: 1280px) {
  .blue {
    font-size: 1.6rem;
    padding: 0.8rem 2.4rem;
  }
}

.red {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.65;
  padding: 0.5rem 1.5rem;
  border-radius: 1rem;
  background-color: var(--red-glow);
  color: white;
}
@media only screen and (min-width: 1280px) {
  .red {
    font-size: 1.6rem;
  }
}

.bubble-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.bubble-wrap > * + * {
  margin-left: 0.6rem;
}

.bubble-icon {
  width: 1.2rem;
  height: 1.2rem;
}

.bubble__button--delete {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: none;
  padding-left: 1.8rem;
  padding-right: 4rem;
  margin: 0;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  cursor: inherit;
  line-height: inherit;
  z-index: 1;
  outline: none;
}
select::-ms-expand {
  display: none;
}

select option {
  padding: 1rem;
}

option:checked {
  display: none;
}

option {
  background-color: #f1f1f1;
}

.select {
  display: grid;
  grid-template-areas: "select";
  align-items: center;
  position: relative;
  max-width: 100%;
  cursor: pointer;
  border: unset;
  border-radius: 1rem;
  background-color: #f1f1f1;
  font-size: 1.4rem;
  line-height: 4.5rem;
}
.select select, .select::after {
  grid-area: select;
}
@media only screen and (min-width: 1280px) {
  .select {
    font-size: 1.8rem;
  }
}
.select::after {
  content: "";
  justify-self: end;
  width: 0.5em;
  height: 0.5em;
  margin-right: 1.8rem;
  margin-bottom: 0.1rem;
  border: 0.2rem solid #b0aeae;
  border-width: 0 0.2rem 0.2rem 0;
  transform: rotate(45deg);
}

select:focus + .focus {
  position: absolute;
  top: -0.1rem;
  left: -0.1rem;
  right: -0.1rem;
  bottom: -0.1rem;
  border: 0.2rem solid var(--dark-blue);
  border-radius: inherit;
}

.select--small {
  width: 100%;
  max-width: unset;
}
@media only screen and (min-width: 1280px) {
  .select--small {
    max-width: 20rem;
  }
}

.select--border {
  border: 1px solid #b0aeae;
  background-color: unset;
  line-height: 4rem;
}
.select--border option {
  background-color: #fff;
}

.snack-bar-wrap {
  position: fixed;
  left: 0rem;
  bottom: 0.5rem;
  z-index: 1000;
  width: min(100%, 100vw) !important;
  padding: 0rem 2rem;
  pointer-events: none;
  text-align: center;
}
@media only screen and (min-width: 1280px) {
  .snack-bar-wrap {
    right: 0.5rem;
    border-radius: 10rem;
  }
}

.snack-bar {
  display: inline-block;
  width: auto;
  min-width: 10rem;
  max-width: calc(100vw - 4rem);
  padding: 1.5rem 2rem;
  margin: 0rem 0rem 0.5rem;
  border-radius: 0.2rem;
  line-height: 2rem;
  color: rgb(255, 255, 255);
  background: rgb(51, 51, 51);
  box-shadow: rgba(0, 0, 0, 0.15) 0rem 0.1rem 0.25rem;
  cursor: pointer;
  text-align: center;
  pointer-events: all;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 1.4rem;
}
@media only screen and (min-width: 1280px) {
  .snack-bar {
    font-size: 1.8rem;
    padding: 1.2rem 3rem;
  }
}

.checkbox-group {
  margin-left: 0.5rem;
}

.checkbox-group > * + * {
  margin-top: 0.8rem;
}

.checkbox-group--filters > * + * {
  margin-top: 1.2rem;
}

.checkbox {
  display: flex;
  align-items: center;
}

.checkbox > * + * {
  margin-left: 0.8rem;
}

/* Customize the label (the container) */
.checkbox-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 2.5rem;
  color: #484848;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media only screen and (min-width: 1280px) {
  .checkbox-container {
    font-size: 1.8rem;
  }
}

.checkbox-container--filters .checkbox-checkmark {
  border: unset;
  background-color: var(--dark-blue);
}
.checkbox-container--filters p {
  font-size: 1.4rem;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkbox-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 2.5rem;
  width: 2.5rem;
  background-color: white;
  border-radius: 0.5rem;
  border: 0.3rem solid #020201;
}

.checkbox-checkmark--small {
  height: 1.4rem;
  width: 1.4rem;
}

.checkbox-checkmark-remember {
  border: 0.2rem solid #020201;
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkbox-checkmark {
  background-color: #ccc;
}

.checkbox-container--filters:hover input ~ .checkbox-checkmark {
  background-color: var(--dark-blue);
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkbox-checkmark {
  background-color: var(--dark-blue);
  border: unset;
}

.checkbox-container--filters input:checked ~ .checkbox-checkmark {
  background-color: var(--red-glow);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkbox-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkbox-checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkbox-checkmark:after {
  left: 0.75rem;
  top: 0.2rem;
  width: 0.7rem;
  height: 1.4rem;
  border: solid white;
  border-radius: 0.2rem;
  border-width: 0 0.3rem 0.3rem 0;
  transform: rotate(45deg);
}

.checkbox-container--filters .checkbox-checkmark:after {
  border: solid var(--dark-blue);
  border-radius: 0.2rem;
  border-width: 0 0.3rem 0.3rem 0;
  transform: rotate(45deg);
}

.checkbox-container--post {
  padding-left: 3.5rem;
}

.checkbox-group--filter > * + * {
  margin-left: 1rem;
}

.checkbox-checkmark--filter {
  background-color: #f1f1f1;
  width: 12.8rem;
  height: 4rem;
  color: #020201;
  padding: 0.7rem;
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  cursor: pointer;
}

.checkbox-container input:checked ~ .checkbox-checkmark--filter {
  background-color: var(--dark-blue);
  color: white;
  font-weight: bold;
}

input.hide-radio {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.radio-group {
  margin-left: 1.5rem;
}

.radio-container {
  display: flex;
  flex-direction: row;
  line-height: 2.5rem;
  align-items: center;
  color: #484848;
  position: relative;
  padding-left: 3.5rem;
  margin-bottom: 1.2rem;
  cursor: pointer;
  font-size: 1.4rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.radio-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.radio-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 2.5rem;
  width: 2.5rem;
  background-color: #eee;
  border-radius: 50%;
  border: 0.2rem solid #020201;
}

/* On mouse-over, add a grey background color */
.radio-container:hover input ~ .radio-checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.radio-container input:checked ~ .radio-checkmark {
  background-color: white;
  border: 0.2rem solid var(--red-glow);
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radio-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio-container input:checked ~ .radio-checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.radio-container .radio-checkmark:after {
  top: 0;
  left: 0;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  background: var(--red-glow);
  border: 0.1rem solid white;
}

.shortlisted__container {
  max-width: 107rem;
  width: 100%;
  margin: 0 auto;
}

.shorlisted-top__container {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 1280px) {
  .shorlisted-top__container {
    flex-direction: row-reverse;
    margin-bottom: 5.8rem;
  }
}

.shortlisted-top__left {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 1280px) {
  .shortlisted-top__left {
    justify-content: flex-end;
  }
}

.shortlisted--h1 {
  font-size: 2.8rem;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
}
@media only screen and (min-width: 411px) {
  .shortlisted--h1 {
    font-size: 3.6rem;
  }
}
@media only screen and (min-width: 768px) {
  .shortlisted--h1 {
    margin-top: 2rem;
  }
}
@media only screen and (min-width: 1280px) {
  .shortlisted--h1 {
    font-size: 9.6rem;
    font-weight: 800;
    line-height: 8rem;
    text-align: left;
    z-index: 1;
    margin: 0;
    margin-right: -14rem;
    max-width: 76.8rem;
  }
}

.shortlisted--h3 {
  font-weight: 800;
  font-size: 2.4rem;
  text-align: center;
}
@media only screen and (min-width: 1280px) {
  .shortlisted--h3 {
    font-size: 3.6rem;
    font-weight: 800;
    text-align: left;
  }
}

.shortlisted-top__image-container img {
  background-image: url("/images/img-placeholder.png");
  background-size: cover;
  background-position: center;
}
.shortlisted-top__image-container > .shortlisted--image {
  height: 22rem;
}
@media only screen and (min-width: 411px) {
  .shortlisted-top__image-container > .shortlisted--image {
    height: 26rem;
  }
}
@media only screen and (min-width: 1280px) {
  .shortlisted-top__image-container > .shortlisted--image {
    height: 37.4rem;
  }
}
@media only screen and (min-width: 1280px) {
  .shortlisted-top__image-container {
    width: 50.9rem;
  }
}

.shortlist-container {
  height: max(38.5rem, 30vh);
  overflow-y: scroll;
}
.shortlist-container > * + * {
  margin-top: 1.5rem;
}
@media only screen and (min-width: 1280px) {
  .shortlist-container {
    overflow-y: auto;
    height: unset;
    max-height: 38rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, 44rem);
    justify-content: space-between;
  }
}

.shortlist-avatar {
  width: 6.5rem;
  height: 6.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  background-image: url("/images/missing-avatar.svg");
  background-size: cover;
}
@media only screen and (min-width: 1280px) {
  .shortlist-avatar {
    width: 7.5rem;
    height: 7.5rem;
  }
}

.shortlist-item__left-container {
  display: flex;
  flex-direction: row;
}
.shortlist-item__left-container > * + * {
  margin-left: 1.5rem;
}
@media only screen and (min-width: 1280px) {
  .shortlist-item__left-container {
    align-items: center;
  }
}

.shortlist-item__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.shortlist-item__body {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 7.5rem;
  line-height: 1.15;
}

.shortlist-item__body-top > * + * {
  margin-top: 0.2rem;
}

.shortlist-item__name {
  font-size: 1.2rem;
  font-weight: 700;
}
@media only screen and (min-width: 411px) {
  .shortlist-item__name {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 1280px) {
  .shortlist-item__name {
    font-size: 1.8rem;
  }
}

.shortlist-item__expertise {
  font-size: 1.2rem;
  font-weight: 600;
}
@media only screen and (min-width: 411px) {
  .shortlist-item__expertise {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 1280px) {
  .shortlist-item__expertise {
    font-size: 1.8rem;
  }
}

.shortlist-item__details {
  text-decoration: underline;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}
@media only screen and (min-width: 1280px) {
  .shortlist-item__details {
    font-size: 1.8rem;
  }
}

.shortlist-modal__heading {
  font-size: 1.8rem;
  font-weight: 800;
  text-align: center;
  width: 14rem;
  text-transform: uppercase;
}

.shortlist-modal__stabilizier {
  visibility: none;
  width: 3rem;
}

.top-img__container {
  margin-bottom: 2.5rem;
}
@media only screen and (min-width: 1280px) {
  .top-img__container {
    margin-bottom: 3.2rem;
  }
}

.top-img__background {
  height: 7.5rem;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 1.5rem;
  margin: 2rem 0;
}
@media only screen and (min-width: 1280px) {
  .top-img__background {
    height: 10rem;
  }
}

.top-img__logo {
  background: url(/images/logo.svg);
  height: 7.5rem;
  background-size: 5.7rem;
  background-position: center;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 1280px) {
  .top-img__logo {
    height: 10rem;
    background-size: 8.7rem;
  }
}

.top-img__type--1 {
  background: url(/images/top-img-1.png);
}

.top-img__type--2 {
  background: url(/images/top-img-2.png);
}

@keyframes navOpen {
  0% {
    transform: translateX(-100%);
    position: fixed;
  }
  100% {
    transform: translateX(0%);
    position: fixed;
  }
}
@keyframes navClose {
  0% {
    transform: translateX(0%);
    position: fixed;
  }
  100% {
    transform: translateX(-100%);
    position: fixed;
  }
}
@keyframes overlayOpen {
  0% {
    transform: translateX(0%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
@keyframes overlayClose {
  0% {
    transform: translateX(0%);
    opacity: 1;
  }
  99% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
    opacity: 0;
  }
}
.nav-base {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 0 2rem;
  height: 5.5rem;
  position: fixed;
  width: 100%;
  background-color: #ffffff;
  z-index: 5;
  box-shadow: 0 0.2rem 0.4rem 0 rgba(0, 0, 0, 0.1);
}
.nav-base a {
  text-decoration: none;
}

.nav--top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.nav--brand-container {
  text-align: center;
}

.nav-stabilizer {
  width: 3.6rem;
}

.navbar {
  font-size: 1.8rem;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-top: 0.5rem solid var(--dark-blue);
  position: absolute;
  opacity: 1;
  width: min(35.8rem, 100vw);
  height: 100vh;
  min-height: 50rem;
  background-color: #ffffff;
  overflow-y: scroll;
  z-index: 20;
  transform: translateX(-100%);
}
.navbar a {
  text-decoration: none;
  color: var(--dark-blue);
}

.nav--animate-open {
  animation: navOpen 0.3s var(--bezier) forwards;
}

.nav--animate-close {
  animation: navClose 0.2s var(--bezier) forwards;
}

.nav--overlay {
  position: fixed;
  filter: brightness(0.5);
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.5);
  z-index: 15;
  opacity: 0;
  transform: translateX(-100%);
}

.nav--overlay-open {
  animation: overlayOpen 0.25s var(--bezier) forwards;
}

.nav--overlay-close {
  animation: overlayClose 0.2s var(--bezier) forwards;
}

.nav-toggler {
  font-weight: 700;
  color: var(--dark-blue);
}

.nav--profile-guest {
  display: flex;
  flex-direction: row;
  margin-bottom: 2rem;
}
.nav--profile-guest > :not(:last-child) {
  margin-right: 2rem;
}

.nav__profile--guest-desc {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  color: var(--dark-blue);
}

.nav--profile {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 2rem;
}
.nav--profile > :not(:last-child) {
  margin-right: 2rem;
}

.nav--profile-img {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: drop-shadow(0.1rem 0.4rem 0.4rem rgba(2, 2, 1, 0.3));
  background-image: url("/images/missing-avatar.svg");
  background-size: cover;
}
@media only screen and (min-width: 1280px) {
  .nav--profile-img {
    width: 3rem;
    height: 3rem;
    filter: none;
  }
}

.nav--profile-desc {
  color: var(--dark-blue);
}
.nav--profile-desc p {
  margin: 0 0 0.75rem 0;
}
.nav--profile-desc p:last-child {
  margin: 0;
}

.nav--profile-name {
  font-size: 1.8rem;
  line-height: 1.15;
}

.nav--profile-expertise {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
}
.nav--profile-expertise > :not(:last-child) {
  margin-right: 0.5rem;
}
.nav--profile-expertise .iconify {
  width: 1em;
  height: 1em;
}

.nav--profile-points {
  font-size: 1.4rem;
}

.nav--profile-link {
  width: 100%;
  display: inline-block;
  text-align: center;
  margin: 0 0 0.5rem;
  padding: 1rem 0;
}

a.nav--profile-link {
  color: #ff758b;
}

a.nav--profile-link-active {
  color: var(--dark-blue);
}

.nav-link {
  display: flex;
  padding: 1.2rem 2rem;
  align-items: center;
}
.nav-link > :not(:last-child) {
  margin-right: 3rem;
}

.nav-group {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 0;
}

.link-login {
  width: 100%;
  background-color: var(--red-glow);
  text-align: center;
  padding: 1.2rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.2rem 2rem;
}

.link-register {
  width: 100%;
  text-align: center;
  padding: 1.2rem;
  border-radius: 1rem;
  padding: 1.2rem 2rem;
  border: 0.1rem solid var(--dark-blue);
}

a.nav--active-link {
  background: var(--dark-blue);
  border-radius: 1rem;
  color: #ffffff;
}

.nav-separator {
  border-style: solid;
  border: none;
  border-bottom: 0.1rem solid var(--dark-blue);
}

.button-logout {
  width: 100%;
  background-color: var(--red-glow);
  color: white;
  text-align: center;
  padding: 1.2rem;
  border-radius: 1rem;
  margin-top: 2.5rem;
}

/* For Adaptive Desktop */
.desktop-nav {
  display: flex;
  flex-direction: row;
  padding: 0 3rem;
  align-items: center;
  height: 9.2rem;
  position: fixed;
  width: min(100%, 100vw);
  background-color: #ffffff;
  z-index: 5;
  box-shadow: 0 0.2rem 0.4rem 0 rgba(0, 0, 0, 0.1);
}

.desktop-nav__container {
  width: 100%;
  max-width: 128rem;
  margin: 0 auto;
}

.desktop-nav__right {
  margin-left: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.desktop-nav__right .desktop-nav__link {
  padding: 0;
}

.desktop-nav__right-container {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.desktop-nav__right-container > * + * {
  margin-left: 1.2rem;
}

.desktop-nav__right-icon {
  background-color: var(--dark-blue);
  padding: 0 1rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.desktop-nav__right-icon a {
  display: flex;
}
.desktop-nav__right-icon .desktop-nav__link {
  color: white;
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  padding: 0 0.2rem;
  transition: all 0.1s;
}
.desktop-nav__right-icon .desktop-nav__link:not(:last-child):hover {
  transform: scale(1.5);
}
.desktop-nav__right-icon > * + * {
  margin-left: 1.5rem;
}

.desktop-nav__logo {
  height: 4.2rem;
  width: 9.5rem;
  margin-bottom: 1.4rem;
}

.desktop-nav__link--container {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-left: 5.5rem;
}
.desktop-nav__link--container > * + * {
  margin-left: 3.5rem;
}
.desktop-nav__link--container > .desktop-nav__link:hover {
  border-radius: 0.5rem;
  background-color: #f2f4f6;
}

a.desktop-nav__link {
  text-decoration: unset;
}

.desktop-nav__link {
  font-size: 1.8rem;
  color: var(--dark-blue);
  height: 4rem;
  font-weight: 600;
  padding: 1rem 2rem;
}

.desktop-nav__active-link {
  background-color: var(--dark-blue);
  color: white;
  font-weight: bold;
  border-radius: 1rem;
}
.desktop-nav__active-link:hover {
  background-color: var(--dark-blue) !important;
  color: white !important;
}

.profile-photo {
  width: 2rem;
  height: 2rem;
  margin: -0.375rem 0;
}

.navbar__box-shadow {
  box-shadow: 0 0.2rem 0.4rem 0 rgba(0, 0, 0, 0.1);
}

@media only screen and (min-width: 1280px) {
  .btn--sign-in {
    margin-left: 3rem;
    width: 11rem;
  }
}

.tooltip {
  display: none;
  background: var(--dark-blue);
  padding: 0.6em 1em;
  border-radius: 0.4rem;
  position: absolute;
  z-index: 1;
  top: 3.2em;
  left: -1em;
  font-size: 0.8em;
  font-weight: 600;
}

.desktop-nav__link:hover .tooltip {
  display: block;
}

.dropdown {
  position: relative;
  display: flex;
  padding: 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 4.2em;
  right: -0.8rem;
  background-color: white;
  border-top: 0.5rem solid var(--dark-blue);
  min-width: 18rem;
  box-shadow: 0.2rem 0.5rem 2rem rgba(0, 0, 0, 0.1);
  z-index: 1;
  border-radius: 0.5rem;
}

.dropdown-content a {
  color: var(--dark-blue);
  padding: 1.2rem 1.6rem;
  text-decoration: none;
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
}

.dropdown-content a:hover {
  background-color: #f2f4f6;
}

.dropdown-hover .dropdown-content {
  display: block;
}

.btn-text--decline {
  font-size: 1.4rem;
  padding: 1.2rem 1.6rem;
  width: 100%;
  text-align: left;
  font-weight: 400;
}
.btn-text--decline:hover {
  background-color: #ffc7d1;
  color: #c50000;
}

/* Make clicks pass-through */
#nprogress {
  pointer-events: none;
}

#nprogress .bar {
  background: var(--dark-blue);
  position: fixed;
  z-index: 1031;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.4rem;
}

.nprogress-custom-parent {
  overflow: hidden;
  position: relative;
}

.nprogress-custom-parent #nprogress .bar {
  position: absolute;
}

.pagination {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.pagination > * + * {
  margin-left: 0.5rem;
}

.page-item {
  list-style: none;
  background: #C4C4C4;
  color: #020201;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border-radius: 0.5rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.page-item--link {
  padding: 0.5em 0.8em;
}

.page-item--active {
  background: #001534;
  color: #FFFFFF;
}

.slide {
  scroll-snap-align: center;
}

.slide-1__background {
  background: #f2f4f6;
}

.slide-1__container {
  height: 100vh;
  min-height: 64rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  overflow: hidden;
  letter-spacing: 0.02em;
}
@media only screen and (min-width: 1280px) {
  .slide-1__container {
    flex-direction: row;
    justify-content: unset;
    max-width: 128rem;
    margin: 0 auto;
    padding-left: 9.5rem;
  }
}

.slide-1__first-block {
  display: flex;
  align-items: center;
  flex-direction: column;
  top: 7rem;
  position: relative;
  width: 100%;
  z-index: 3;
  padding-top: 2vh;
}
.slide-1__first-block a {
  text-decoration: none;
}
@media only screen and (min-width: 1280px) {
  .slide-1__first-block {
    padding-top: 4rem;
    top: 0;
    align-items: flex-start;
    margin-right: -10rem;
  }
}

.slide-1__heading {
  margin-top: 0;
  color: var(--dark-blue);
  font-size: 3.6rem;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  line-height: 0.9;
  margin-bottom: 1.2rem;
}
@media only screen and (min-width: 360px) {
  .slide-1__heading {
    font-size: 4.8rem;
  }
}
@media only screen and (min-width: 1280px) {
  .slide-1__heading {
    text-align: left;
    font-size: 8rem;
    margin-bottom: 2rem;
  }
}

.slide-1__paragraph {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
}
@media only screen and (min-width: 1280px) {
  .slide-1__paragraph {
    font-size: 1.8rem;
    margin-left: 0.6rem;
  }
}

.slide-1__button {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 1.5rem 3.5rem;
  border-radius: 4rem;
  border: none;
  background-color: var(--dark-blue);
  color: white;
  text-decoration: unset;
}
.slide-1__button svg {
  width: 1.5em;
  height: 1.5em;
}
.slide-1__button :not(:last-child) {
  margin-right: 1rem;
}
.slide-1__button:active, .slide-1__button:focus {
  outline: none;
  border: none;
}
@media only screen and (min-width: 1280px) {
  .slide-1__button {
    margin-left: 0.6rem;
  }
}

.slide-1__ornament {
  overflow: hidden;
}

.slide-1__triangle {
  position: absolute;
  transform: translate(150%, -100%);
  color: var(--red-glow);
  width: 7.6rem;
  height: 6.9rem;
}
@media only screen and (min-width: 1280px) {
  .slide-1__triangle {
    width: 18.3rem;
    height: 16.6rem;
    transform: translate(312%, -194%);
  }
}

.slide-1__left-dashed {
  position: absolute;
  width: 20vmin;
  max-width: 7.5rem;
  left: 0;
  transform: translateY(-25%);
}
@media only screen and (min-width: 1280px) {
  .slide-1__left-dashed {
    max-width: unset;
    bottom: -4rem;
  }
}

.slide-1__right-dashed {
  position: absolute;
  right: 0;
  top: -10%;
  max-width: 8rem;
}
@media only screen and (min-width: 1280px) {
  .slide-1__right-dashed {
    top: 24vh;
    max-width: unset;
  }
}

.slide-1__image-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}
@media only screen and (min-width: 1280px) {
  .slide-1__image-container {
    z-index: 4;
    height: 100%;
  }
}

.slide-1__dot-1 {
  position: absolute;
  z-index: 1;
  transform: translate(-9rem, 10rem);
}
@media only screen and (min-width: 1280px) {
  .slide-1__dot-1 {
    transform: translate(-20.6rem, 8rem);
  }
}

.slide-1__dot-2 {
  position: absolute;
  z-index: 1;
  transform: translate(8rem, 0);
}

.slide-1__image {
  z-index: 2;
  max-height: 45vh;
}
@media only screen and (min-width: 1280px) {
  .slide-1__image {
    max-height: unset;
    width: 62.4rem;
    z-index: 3;
  }
}

.slide-2__container {
  padding: 0 1.2rem;
  letter-spacing: 0.02em;
  max-width: 128rem;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 1280px) {
  .slide-2__container {
    min-height: 100vh;
  }
  .slide-2__container > * + * {
    margin-left: 5.05rem;
  }
}

.slide-2__image {
  z-index: 2;
  max-height: 45vh;
}
@media only screen and (min-width: 1280px) {
  .slide-2__image {
    max-height: unset;
    width: 45rem;
    z-index: 3;
  }
}

@media only screen and (min-width: 1280px) {
  .slide-2__left {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
}

@media only screen and (min-width: 1280px) {
  .slide-2__right {
    width: 66.4rem;
  }
}

.slide-2__heading {
  font-size: 3.2rem;
  color: var(--dark-blue);
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  line-height: 3.6rem;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 411px) {
  .slide-2__heading {
    font-size: 3.6rem;
    line-height: 3.72rem;
  }
}
@media only screen and (min-width: 1280px) {
  .slide-2__heading {
    line-height: 0.96;
    font-size: 8rem;
    text-align: left;
  }
}

.slide-2__paragraph {
  font-size: 1.8rem;
  line-height: 2.35rem;
  max-width: 28.2rem;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 4rem;
}
@media only screen and (min-width: 1280px) {
  .slide-2__paragraph {
    max-width: unset;
    text-align: left;
  }
}

.slide-2__facts {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media only screen and (min-width: 1280px) {
  .slide-2__facts {
    width: 49.2rem;
    margin: 0 auto;
  }
}

.slide-2__facts > * + * {
  margin-left: 2.4rem;
}
@media only screen and (min-width: 360px) {
  .slide-2__facts > * + * {
    margin-left: 4rem;
  }
}
@media only screen and (min-width: 1280px) {
  .slide-2__facts > * + * {
    margin-left: 8rem;
  }
}

.slide-2__fact-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--dark-blue);
  width: 7.8em;
}
@media only screen and (min-width: 1280px) {
  .slide-2__fact-item {
    width: 10.8em;
  }
}

.slide-2__fact-item > * + * {
  margin-top: 0.72rem;
}

.slide-2__fact--icon {
  color: var(--dark-blue);
  width: 5rem;
  height: 5rem;
}
@media only screen and (min-width: 1280px) {
  .slide-2__fact--icon {
    width: 7.2rem;
    height: 7.2rem;
  }
}

.slide-2__fact--number {
  font-weight: 800;
  font-size: 2.4rem;
}
@media only screen and (min-width: 1280px) {
  .slide-2__fact--number {
    font-size: 4.8rem;
  }
}

.slide-2__fact--name {
  font-weight: bold;
  font-size: 1.8rem;
  text-align: center;
}
@media only screen and (min-width: 1280px) {
  .slide-2__fact--name {
    font-size: 2.4rem;
  }
}

.slide-3__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.02em;
  max-width: 128rem;
  margin: 0 auto;
  padding-top: 3rem;
  margin-bottom: 6rem;
}
@media only screen and (min-width: 1280px) {
  .slide-3__container {
    min-height: 100vh;
  }
}

.slide-3__heading {
  font-size: 3.6rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
@media only screen and (min-width: 1280px) {
  .slide-3__heading {
    font-size: 4.8rem;
    margin-bottom: 2.6rem;
  }
}

.slide-3__paragraph {
  font-size: 1.8rem;
  line-height: 2.35rem;
  text-align: center;
  margin-bottom: 1.4rem;
  max-width: 34rem;
}
@media only screen and (min-width: 1280px) {
  .slide-3__paragraph {
    max-width: unset;
    margin-bottom: 3.2rem;
  }
}

.slide-3__leaderboard--card {
  background: #f2f4f6;
  border-radius: 1.5rem;
  max-width: 32.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 2.8rem 0 2.8rem;
  box-shadow: 0.2rem 1.6rem 2rem rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
}

.slide-3__leaderboard--img {
  border-radius: 50%;
  width: 12.5rem;
  height: 12.5rem;
}

.slide-3__leaderboard--name {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 2.4rem;
  margin-top: 1.2rem;
  text-align: center;
}

.slide-3__leaderboard--hr {
  border-top: 0.25rem solid var(--dark-blue);
  width: 100%;
  margin: 1.5rem 0;
}

.slide-3__leaderboard--facts {
  display: flex;
  flex-direction: row;
}

.slide-3__leaderboard--facts > * + * {
  margin-left: 0.5rem;
}

.slide-3__leaderboard--fact-item {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.slide-3__leaderboard--fact-item > * + * {
  margin-left: 0.5rem;
}

.slide-3__leaderboard--fact-icon {
  width: 4.5rem;
  height: 4.5rem;
  color: var(--red-glow);
  filter: drop-shadow(0rem 0.4rem 0.4rem rgba(0, 0, 0, 0.25));
}

.slide-3__leaderboard--fact-text {
  font-size: 1.3rem;
  font-weight: bold;
}

.slide-3__leaderboard--points {
  margin-top: 1.3rem;
}

.slide-3__leaderboard--text {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
}

.slide-3__leaderboard--point {
  font-size: 4.8rem;
  font-weight: bold;
  color: var(--dark-blue);
  text-align: center;
}

.slide-3__leaderboard--title {
  background: var(--red-glow);
  color: var(--dark-blue);
  height: 4rem;
  width: 18rem;
  font-weight: bold;
  font-size: 1.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1rem;
  position: relative;
  top: 2rem;
}

.slide-3__button {
  width: 30rem;
}

.profile--container {
  margin-top: 0.7rem;
  max-width: 111rem;
  margin: 0 auto;
}
@media only screen and (min-width: 1280px) {
  .profile--container {
    margin-top: 2rem;
  }
}

.profile__info--container {
  margin-bottom: 2rem;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 411px) {
  .profile__info--container {
    padding: 1.5rem 2.5rem 1.5rem 1.5rem;
    flex-direction: row;
  }
}
@media only screen and (min-width: 1280px) {
  .profile__info--container > * + * {
    margin-left: 4rem;
  }
}

.profile__info--img {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 2rem;
  background-image: url("/images/missing-avatar.svg");
  background-size: cover;
}
@media only screen and (min-width: 411px) {
  .profile__info--img {
    margin-right: 3rem;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1280px) {
  .profile__info--img {
    margin-right: 0;
    width: 17.5rem;
    height: 17.5rem;
  }
}

@media only screen and (min-width: 1280px) {
  .profile__info--desc > p + p,
  .profile__info--desc p + div,
  .profile__info--desc div + p {
    margin-top: 1.2rem;
  }
}

.profile__info--name {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.3rem;
}
@media only screen and (min-width: 1280px) {
  .profile__info--name {
    font-size: 3.6rem;
  }
}

.profile__info--occupation {
  color: #757575;
  margin: 0 0 0.5rem;
  line-height: 1.45;
}
@media only screen and (min-width: 1280px) {
  .profile__info--occupation {
    font-size: 1.8rem;
  }
}

.profile__info--expertise {
  font-weight: 600;
  margin: 0 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.45;
}
@media only screen and (min-width: 1280px) {
  .profile__info--expertise {
    font-size: 1.8rem;
  }
}

.profile__info--icon {
  width: 1.5rem;
  height: 1.5rem;
}
@media only screen and (min-width: 1280px) {
  .profile__info--icon {
    width: 2rem;
    height: 2rem;
  }
}

.profile__info--available {
  color: #7ffa53;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.45;
}
@media only screen and (min-width: 1280px) {
  .profile__info--available {
    font-size: 1.8rem;
  }
}

.profile__info--unavailable {
  color: #eb2d2d;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  line-height: 1.45;
}
.profile__info--unavailable > * + * {
  margin-left: 0.5rem;
}
@media only screen and (min-width: 1280px) {
  .profile__info--unavailable {
    font-size: 1.8rem;
  }
}

.profile__info--verified {
  color: #3051df;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  line-height: 1.45;
  font-style: italic;
}
.profile__info--verified > * + * {
  margin-left: 0.5rem;
}
@media only screen and (min-width: 1280px) {
  .profile__info--verified {
    font-size: 1.8rem;
  }
}

.profile__info--buttons {
  display: flex;
  flex-direction: row;
}
.profile__info--buttons > * + * {
  margin-left: 1.2rem;
}

.profile__info--edit-profile {
  margin-bottom: 3.5rem;
  width: 100%;
  padding: 1rem 2rem;
  background: var(--dark-blue);
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 0.5rem;
  color: white;
  border: unset;
}
@media only screen and (min-width: 1280px) {
  .profile__info--edit-profile {
    justify-content: center;
    margin-bottom: inherit;
    padding: 0;
    width: 15rem;
    height: 4.5rem;
    font-size: 1.8rem;
  }
}

.profile__info--settings {
  margin-bottom: 3.5rem;
  width: 100%;
  padding: 1rem 2rem;
  background: var(--dark-blue);
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 0.5rem;
  color: white;
}
@media only screen and (min-width: 1280px) {
  .profile__info--settings {
    justify-content: center;
    margin-bottom: inherit;
    padding: 0;
    width: 4.5rem;
    height: 4.5rem;
  }
}

.profile__sub-menu--container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 3.5rem;
}

.profile__sub-menu--item {
  background-color: #f9f9f9;
  padding: 0.8rem;
  border-radius: 0.5rem;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  color: #001534;
}

.profile__sub-menu--active {
  background-color: var(--dark-blue);
  font-weight: 700;
  color: white;
}

.edit-profile__top-decore {
  background: url(/images/edit-profile-top.png);
  height: 7.5rem;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 1.5rem;
  margin: 2rem 0;
}

.edit-profile__inside-top-decore {
  background: url(/images/logo.svg);
  height: 7.5rem;
  background-size: 5.7rem;
  background-position: center;
  background-repeat: no-repeat;
}

.tagname {
  font-weight: 600;
}

.edit-profile__container {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
}

.stepper-wrap {
  width: 100%;
  margin-bottom: 3rem;
}

.stepper-wrap:after {
  clear: both;
  height: 0;
  width: 100%;
  content: "";
  display: block;
}

.stepper {
  padding-left: 0;
}

.stepper li {
  counter-increment: step;
  list-style-type: none;
  float: left;
  width: 33%;
  position: relative;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  color: #c8c8c8;
}

.stepper li:before {
  content: counter(step);
  font-weight: 800;
  font-size: 2.8rem;
  line-height: 3.6rem;
  border-radius: 50%;
  width: 3.6rem;
  height: 3.6rem;
  border: 0.8rem double #c8c8c8;
  display: block;
  text-align: center;
  margin: 0 auto 1rem;
  background-color: white;
  color: #c8c8c8;
}

.stepper li:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.4rem;
  background-color: #ddd;
  top: 2.4rem;
  left: -50%;
  z-index: -1;
}

.stepper li:first-child:after {
  content: none;
}

.stepper li.active {
  color: #020201;
}

.stepper li.active:before {
  border-color: #020201;
  background-color: white;
  color: #020201;
}

.stepper .active:after {
  background-color: #020201;
}

.form-avatar-group__container {
  margin-bottom: 1rem;
}
@media only screen and (min-width: 1280px) {
  .form-avatar-group__container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
  .form-avatar-group__container > * + * {
    margin-left: 5rem;
  }
}

.form-tag__group {
  display: flex;
  flex-direction: row-reverse;
  font-size: 1.4rem;
  align-items: center;
  background: #f1f1f1;
  border-radius: 1rem;
}
@media only screen and (min-width: 1280px) {
  .form-tag__group {
    font-size: 1.8rem;
  }
  .form-tag__group > .form-tag {
    padding: 0 1rem 0 1.8rem;
  }
}

.form-tag__input {
  border: unset;
  border-radius: 0 1rem 1rem 0;
  background-color: #f1f1f1;
  padding: 0 1.8rem 0 0;
  width: 100%;
  font-size: 1.4rem;
  line-height: 4.1rem;
  border-top: 0.2rem solid transparent;
  border-right: 0.2rem solid transparent;
  border-bottom: 0.2rem solid transparent;
}
@media only screen and (min-width: 1280px) {
  .form-tag__input {
    font-size: 1.8rem;
  }
}

.form-tag__input:focus {
  outline: none !important;
  border-top: 0.2rem solid var(--dark-blue);
  border-right: 0.2rem solid var(--dark-blue);
  border-bottom: 0.2rem solid var(--dark-blue);
}

.form-tag__input:focus ~ .form-tag {
  border-top: 0.2rem solid var(--dark-blue);
  border-left: 0.2rem solid var(--dark-blue);
  border-bottom: 0.2rem solid var(--dark-blue);
}

.form-tag {
  text-align: center;
  font-weight: 700;
  font-size: 1.6rem;
  color: #484848;
  padding: 0 0.5rem 0 1.8rem;
  border-radius: 1rem 0 0 1rem;
  line-height: 4.1rem;
  border-top: 0.2rem solid transparent;
  border-left: 0.2rem solid transparent;
  border-bottom: 0.2rem solid transparent;
  margin-right: -0.1rem;
  display: flex;
  align-items: center;
  height: 4.5rem;
}
@media only screen and (min-width: 1280px) {
  .form-tag {
    font-size: 2rem;
  }
}

.edit-profile--img {
  width: 12.5rem;
  height: 12.5rem;
  margin: 0 auto 3rem;
  display: block;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  background-image: url("/images/missing-avatar.svg");
  background-size: cover;
}
@media only screen and (min-width: 1280px) {
  .edit-profile--img {
    margin: 0;
  }
}

.form__file-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  margin-bottom: 0;
  text-align: center;
  gap: 1rem;
}
@media only screen and (min-width: 1280px) {
  .form__file-container {
    display: flex;
    gap: 0;
  }
  .form__file-container > * + * {
    margin-left: 2rem;
  }
}

.form__label-file {
  background: var(--red-glow);
  color: #001534;
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-size: 1.8rem;
  font-weight: 700;
  display: block;
}

.form__input-file {
  display: none;
}

.button__add-skill--icon {
  width: 2rem;
  height: 2rem;
}

.button__add-skill--text {
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
}
@media only screen and (min-width: 1280px) {
  .button__add-skill--text {
    font-size: 1.6rem;
  }
}

.month-picker__month.selected,
.month-picker__month.selected-range-first,
.month-picker__month.selected-range-second {
  background-color: var(--dark-blue) !important;
}

.month-picker__month {
  font-size: 1.4rem;
}

.month-picker__year p {
  font-size: 1.68rem !important;
}

.experiences-list > * + * {
  margin-top: 1rem;
}

.open-hire {
  display: flex;
  flex-direction: row;
  justify-self: end;
}
.open-hire > * + * {
  margin-left: 1rem;
}

.open-hire__radio-container input:checked ~ .open-hire__radio {
  background-color: var(--dark-blue);
  color: white;
}

.open-hire__radio {
  display: block;
  text-align: center;
  width: 6rem;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 3rem;
  border: 0.1rem solid #020201;
  border-radius: 0.5rem;
  cursor: pointer;
}
@media only screen and (min-width: 1280px) {
  .open-hire__radio {
    width: 10rem;
  }
}

.edit-profile__buttons {
  display: flex;
  flex-direction: column;
}
.edit-profile__buttons > * + * {
  margin-top: 1rem;
}
@media only screen and (min-width: 1280px) {
  .edit-profile__buttons {
    flex-direction: row;
    justify-content: space-between;
  }
  .edit-profile__buttons > * + * {
    margin-top: 0;
  }
}

.edit-profile__link {
  text-decoration: none;
}

.edit-profile__requirement-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}
.edit-profile__requirement-item svg {
  margin-top: 0.15em;
  min-width: 2.4rem;
}

.experience-item__delete {
  font-size: 1.2rem;
  padding: 0 1.2rem;
  height: 3.5rem;
  width: auto;
}
.experience-item__delete > * + * {
  margin-left: 0.5rem;
}
@media only screen and (min-width: 1280px) {
  .experience-item__delete {
    font-size: 1.4rem;
    height: 4rem;
    padding: 0 2.4rem;
  }
}

.edit__hire--container {
  display: grid;
  grid-template-columns: 1.8fr 2fr;
  gap: 2.5rem;
  align-items: center;
  background: #f1f1f1;
  padding: 1.6rem;
  border-radius: 1rem;
}
@media only screen and (min-width: 1280px) {
  .edit__hire--container {
    padding: 2.3rem 2.8rem;
  }
}

.edit__cv--container {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f1f1f1;
  padding: 1.6rem;
  border-radius: 1rem;
}

.edit__cv--heading {
  font-size: 1.8rem;
  font-weight: bold;
}

.newcomer__container {
  padding: 1.2rem 3.2rem 4rem;
  min-height: 100vh;
  display: flex;
  max-width: 72rem;
  width: 100%;
  margin: 0 auto;
  flex-direction: column;
  justify-content: space-between;
}

.stepper-wrap {
  width: 100%;
  margin-bottom: 3rem;
}

.stepper-wrap:after {
  clear: both;
  height: 0;
  width: 100%;
  content: "";
  display: block;
}

.stepper {
  padding-left: 0;
}

.stepper li {
  counter-increment: step;
  list-style-type: none;
  float: left;
  width: 33%;
  position: relative;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  color: #c8c8c8;
}
@media only screen and (min-width: 1280px) {
  .stepper li {
    font-size: 2.4rem;
  }
}

.stepper li:before {
  content: counter(step);
  font-weight: 800;
  font-size: 2.8rem;
  line-height: 3.4rem;
  border-radius: 50%;
  width: 3.6rem;
  height: 3.6rem;
  border: 0.8rem double #c8c8c8;
  display: block;
  text-align: center;
  margin: 0 auto 1rem;
  background-color: white;
  color: #c8c8c8;
}
@media only screen and (min-width: 1280px) {
  .stepper li:before {
    font-size: 4.8rem;
    line-height: 7.2rem;
    width: 7.2rem;
    height: 7.2rem;
  }
}

.stepper li:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.3rem;
  background-color: #ddd;
  top: 2.4rem;
  left: -50%;
  z-index: -1;
}
@media only screen and (min-width: 1280px) {
  .stepper li:after {
    top: 4.4rem;
  }
}

.stepper li:first-child:after {
  content: none;
}

.stepper li.active {
  color: #020201;
}

.stepper li.active:before {
  border-color: #020201;
  background-color: white;
  color: #020201;
}

.newcomer__h2 {
  font-weight: 800;
  font-size: 2.4rem;
  text-align: center;
}
@media only screen and (min-width: 1280px) {
  .newcomer__h2 {
    font-size: 4.8rem;
    font-weight: 800;
  }
}

.newcomer__hire--container {
  display: grid;
  grid-template-columns: 1.8fr 2fr;
  gap: 2.5rem;
  align-items: center;
  background: #f1f1f1;
  margin-bottom: 5rem;
  padding: 1.6rem;
  border-radius: 1rem;
}

.newcomer__hire--text {
  font-weight: 600;
  font-size: 1.6rem;
}

.newcomer__hire--button-group {
  display: flex;
  flex-direction: row;
  justify-self: end;
}

.newcomer__hire--button-group > * + * {
  margin-left: 1rem;
}

.newcomer__hire--button {
  display: block;
  text-align: center;
  width: 6rem;
  height: 3rem;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 3rem;
  border: 0.1rem solid #020201;
  border-radius: 0.5rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.newcomer__add-experience {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 1.2rem;
}

.newcomer__add-experience > * + * {
  margin-left: 0.5rem;
}

.newcomer__slide-3--container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.newcomer__slide-3--heading {
  margin-top: 0;
  font-size: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
}

.newcomer__slide-3--text {
  font-size: 1.8rem;
  text-align: center;
  line-height: 2.15rem;
}

.newcomer__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.newcomer__footer > * + * {
  margin-top: 0.6rem;
}

@media only screen and (min-width: 1280px) {
  .newcomer__btn--upload {
    width: 22.5rem;
  }
}

@media only screen and (min-width: 1280px) {
  .newcomer__btn--delete {
    width: 12.5rem;
  }
}

.forgot-password__container {
  height: calc(100vh - var(--mobile-nav-height) - 0.5rem - 3rem);
  display: flex;
  flex-direction: column;
  max-width: 72rem;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (min-width: 1280px) {
  .forgot-password__container {
    height: unset;
    margin: auto;
  }
}

.forgot-password__h2 {
  margin-top: 0;
  margin-bottom: 3rem;
  font-weight: 800;
  font-size: 2.4rem;
}

.forgot-password__p {
  font-size: 1.4rem;
  text-align: center;
}
@media only screen and (min-width: 1280px) {
  .forgot-password__p {
    max-width: 53rem;
    margin: 0 auto;
  }
}

.forgot-password__further-information {
  font-size: 1.2rem;
  text-align: center;
}

.invalid-feedback {
  margin-top: 0.4rem;
  font-size: 1.4rem;
  border-radius: 1rem;
  background-color: #ffc7d1;
  color: #c50000;
  padding: 1rem 2.4rem;
}

.forgot-password__form--container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  margin-top: 3rem;
}
@media only screen and (min-width: 1280px) {
  .forgot-password__form--container {
    margin-top: 6rem;
  }
}

.forgot-password__input {
  width: 100%;
  border: unset;
  background-color: #f1f1f1;
  font-size: 1.8rem;
  padding: 0 1.2rem;
  height: 4.5rem;
  border-radius: 1rem;
  line-height: 1.65;
  border-left: 0.6rem solid var(--dark-blue);
}
@media only screen and (min-width: 1280px) {
  .forgot-password__input {
    width: 42rem;
    max-width: 42rem;
  }
}

.input-w-100-sm {
  width: 100%;
}
@media only screen and (min-width: 1280px) {
  .input-w-100-sm {
    width: revert;
  }
}

.verify__container {
  padding: 1.2rem 3.2rem 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 72rem;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (min-width: 1280px) {
  .verify__container {
    justify-content: flex-start;
  }
}

.verify__icon {
  display: flex;
  width: 15rem;
  height: 15rem;
  margin-top: 5.4rem;
  margin-left: auto;
  margin-right: auto;
  color: #00214D;
}
@media only screen and (min-width: 1280px) {
  .verify__icon {
    margin-top: 3rem;
  }
}

.verify__button {
  display: flex;
  margin-top: auto;
  margin-bottom: 4.2rem;
}
@media only screen and (min-width: 1280px) {
  .verify__button {
    margin-top: 2rem;
    margin-left: auto;
    margin-right: auto;
    width: auto;
    padding: 0 2.4rem;
    height: 6rem;
  }
}

.verify__heading {
  margin-top: 2rem;
  text-align: center;
  font-weight: 800;
  font-size: 3rem;
  color: #00214D;
}
@media only screen and (min-width: 1280px) {
  .verify__heading {
    font-size: 4.8rem;
    margin-bottom: 2rem;
  }
}

@keyframes studentRole {
  0% {
    left: 50%;
  }
  50% {
    left: 0%;
    width: 100%;
  }
  100% {
    left: 0%;
    width: 50%;
  }
}
@keyframes lecturerRole {
  0% {
    left: 0%;
  }
  50% {
    left: 0%;
    width: 100%;
  }
  100% {
    left: 50%;
    width: 50%;
  }
}
.login-page--container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
  min-height: 40rem;
  background: url(/images/login-student.jpg);
  background-size: cover;
  background-position-y: -5vw;
  background-position-x: right;
  background-repeat: no-repeat;
  transition: all 0.3s var(--bezier);
  max-width: 113rem;
  margin: 0 auto;
}
@media only screen and (min-width: 1280px) {
  .login-page--container {
    flex-direction: row;
    background: unset;
    display: flex;
    flex-direction: row;
    transition: unset;
    min-height: 62rem;
  }
  .login-page--container > * + * {
    margin-left: 10rem;
  }
}

.login-page--logo {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.login-page--logo a {
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s var(--bezier);
}

.login--h1 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: 800;
  font-size: 2.4rem;
}
@media only screen and (min-width: 1280px) {
  .login--h1 {
    text-align: left;
    text-transform: capitalize;
    margin-bottom: 1.5rem;
  }
}

.login-role--container {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media only screen and (min-width: 1280px) {
  .login-role--container {
    gap: 2rem;
  }
}

.login-radio {
  display: none;
}

@media only screen and (min-width: 1280px) {
  input:checked + .login-radio--label {
    background-color: var(--dark-blue);
    color: white;
  }
}

.login-radio--label {
  display: inline-block;
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.4rem;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media only screen and (min-width: 1280px) {
  .login-radio--label {
    font-size: 1.8rem;
    font-weight: 700;
    border: 0.16rem solid var(--dark-blue);
    border-radius: 1rem;
  }
}

.role--choose-effect {
  margin-bottom: 2rem;
  display: inline-block;
  width: 50%;
  height: 0.4rem;
  position: relative;
  left: 0%;
  background-color: var(--dark-blue);
  border-radius: 1rem;
}

.role--student {
  animation: studentRole 0.3s var(--bezier) forwards;
}
@media only screen and (min-width: 1280px) {
  .role--student {
    animation: unset;
  }
}

.lecturer-bg {
  background: url(/images/login-lecturer.jpg);
  background-size: cover;
  background-position-x: right;
  background-position-y: -25vw;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 1280px) {
  .lecturer-bg {
    background: unset;
  }
}

.lecturer-color {
  color: #020201 !important;
}

.role--lecturer {
  animation: lecturerRole 0.3s var(--bezier) forwards;
}
@media only screen and (min-width: 1280px) {
  .role--lecturer {
    animation: unset;
  }
}

.login-form--container {
  min-height: 40rem;
  padding: 2.2rem 3.2rem;
  background-color: white;
  border-radius: 1.5rem 1.5rem 0 0;
}
@media only screen and (min-width: 1280px) {
  .login-form--container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 42rem;
    padding: 0;
  }
}

.login-input--container {
  margin-bottom: 1.5rem;
}

.login-input {
  width: 100%;
  border: unset;
  background-color: #f1f1f1;
  font-size: 1.8rem;
  padding: 0 1.2rem;
  height: 4.5rem;
  border-radius: 1rem;
  line-height: 1.65;
  border-left: 0.6rem solid var(--dark-blue);
}
.login-input:active, .login-input:focus {
  outline: none;
}

.password--container {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #f1f1f1;
}

.password__hide-icon {
  margin-right: 1.5rem;
}

.input-remember {
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.input-remember > * + * {
  margin-left: 0.6rem;
}

.login-submit--button {
  width: 100%;
  border: unset;
  border-radius: 1rem;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 1rem;
  background: var(--dark-blue);
  transition: all 0.3s var(--bezier);
  color: #ffffff;
  letter-spacing: 0.02em;
}

.login-extra {
  text-align: center;
  font-size: 1.3rem;
  margin-top: 2rem;
}
@media only screen and (min-width: 1280px) {
  .login-extra {
    margin-top: 5rem;
  }
}

.login-link {
  text-decoration: none;
  color: #020201;
}

@media only screen and (min-width: 1280px) {
  .desktop-login__left--container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 59.3rem;
  }
}

.desktop-login__left--img {
  border-radius: 1.5rem;
}

.desktop-login__left-top--img {
  width: 59.3rem;
  height: 10rem;
}

.desktop-login__left-mid-small--img {
  width: 19.3rem;
  height: 19.3rem;
}

.desktop-login__left-mid-big--img {
  width: 37.9rem;
  height: 37.9rem;
}

.desktop-login__left-mid-logo--img {
  width: 17.3rem;
  height: 17.3rem;
}

@media only screen and (min-width: 1280px) {
  .desktop-login__left--h2 {
    font-size: 4.8rem;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 0;
    text-transform: uppercase;
  }
}

@media only screen and (min-width: 1280px) {
  .desktop-login__footer {
    font-size: 1.4rem;
    text-align: center;
    margin-top: 2.7rem;
  }
}

.separator {
  display: flex;
  align-items: center;
  text-align: center;
}
@media only screen and (min-width: 1280px) {
  .separator {
    font-size: 1.4rem;
  }
}

.separator::before,
.separator::after {
  content: "";
  flex: 1;
  border-bottom: 0.1rem solid #000;
}

.separator::before {
  margin-right: 0.4em;
}

.separator::after {
  margin-left: 0.4em;
}

.login--left-border {
  border: unset;
  border-left: 0.6rem solid var(--dark-blue) !important;
}

.right-tag__group {
  display: flex;
  flex-direction: row;
  font-size: 1.4rem;
  align-items: center;
  background: #f1f1f1;
  border-radius: 1rem;
}
@media only screen and (min-width: 1280px) {
  .right-tag__group {
    font-size: 1.8rem;
  }
  .right-tag__group > .form-tag {
    padding: 0 1rem 0 1.8rem;
  }
}

.right-tag__input {
  border: unset;
  border-radius: 1rem 0 0 1rem;
  background-color: #f1f1f1;
  padding: 0 0 0 1.4rem;
  width: 100%;
  font-size: 1.8rem;
  line-height: 4.1rem;
  height: 4.5rem;
  border-top: 0.2rem solid transparent;
  border-left: 0.2rem solid transparent;
  border-bottom: 0.2rem solid transparent;
}

.right-tag__input--form {
  font-size: 1.4rem;
}
@media only screen and (min-width: 1280px) {
  .right-tag__input--form {
    font-size: 1.8rem;
  }
}

.right-tag__input:focus {
  outline: none !important;
  border-top: 0.2rem solid var(--dark-blue);
  border-left: 0.2rem solid var(--dark-blue);
  border-bottom: 0.2rem solid var(--dark-blue);
}

.right-tag__input:focus ~ .right-tag {
  border-top: 0.2rem solid var(--dark-blue);
  border-right: 0.2rem solid var(--dark-blue);
  border-bottom: 0.2rem solid var(--dark-blue);
}

.right-tag {
  text-align: center;
  font-weight: 700;
  font-size: 1.6rem;
  color: #484848;
  padding: 0 0.5rem 0 1.8rem;
  border-radius: 0 1rem 1rem 0;
  line-height: 4.1rem;
  height: 4.5rem;
  border-top: 0.2rem solid transparent;
  border-right: 0.2rem solid transparent;
  border-bottom: 0.2rem solid transparent;
  margin-right: -0.5rem;
  display: flex;
  align-items: center;
  height: 4.5rem;
}
@media only screen and (min-width: 1280px) {
  .right-tag {
    font-size: 2rem;
  }
}

.is-invalid {
  border: 0.2rem solid var(--red-glow);
}

.register-page--container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  background: url(/images/login-lecturer.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 0.3s var(--bezier);
  max-width: 117rem;
  margin: 0 auto;
}
@media only screen and (min-width: 1280px) {
  .register-page--container {
    background: unset;
    display: flex;
    flex-direction: row;
    transition: unset;
  }
  .register-page--container > * + * {
    margin-left: 0.5rem;
  }
}

.resgiter-form--container {
  min-height: 40rem;
  padding: 2.2rem 3.2rem;
  background-color: white;
  border-radius: 1.5rem 1.5rem 0 0;
}
@media only screen and (min-width: 1280px) {
  .resgiter-form--container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 52.3rem;
    padding: 0;
  }
}

.register-input {
  width: 100%;
  border: unset;
  background-color: #f1f1f1;
  font-size: 1.8rem;
  padding: 1rem 1.2rem;
  border-radius: 1rem;
  line-height: 1.65;
  border-radius: 1rem;
}

.auth__input--label {
  font-size: 2.4rem;
  font-weight: 600;
}

.email-check--container {
  padding: 1.2rem 3.2rem 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 72rem;
  margin: 0 auto;
  width: 100%;
}
.email-check--container p {
  font-size: 1.4rem;
}
@media only screen and (min-width: 1280px) {
  .email-check--container p {
    text-align: center;
  }
}

.text__link {
  text-decoration: none;
}

.email-check--heading {
  margin-top: 0;
  font-size: 2.8rem;
  font-weight: 800;
  text-align: center;
}
@media only screen and (min-width: 411px) {
  .email-check--heading {
    font-size: 3rem;
  }
}

.email-check--img {
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 33vmax;
}

.register-extra {
  text-align: center;
  font-size: 1.3rem;
  margin-top: 2rem;
}
@media only screen and (min-width: 1280px) {
  .register-extra {
    margin-top: 3rem;
  }
}

.desktop-register__left--img {
  border-radius: 1.5rem;
}

.desktop-register__left-top--img {
  width: 59.5rem;
  height: 12.9rem;
}

.desktop-register__left-mid-small--img {
  width: 19.2rem;
  height: 38rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.desktop-register__left-mid-big--img {
  width: 38rem;
  height: 38rem;
}

.desktop-register__left-mid-logo--img {
  width: 17.3rem;
  height: 17.3rem;
}

.form-input__info--email {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 1280px) {
  .form-input__info--email {
    flex-direction: row;
    justify-content: space-between;
  }
}

.explore--container {
  margin-top: 1.7rem;
  max-width: 109rem;
  margin: 3rem auto 0;
}
@media only screen and (min-width: 1280px) {
  .explore--container {
    margin: 4.5rem auto 0;
  }
}

.project--container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(26rem, 1fr));
  gap: 2rem;
}
@media only screen and (min-width: 411px) {
  .project--container {
    grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr));
  }
}
@media only screen and (min-width: 768px) {
  .project--container {
    grid-template-columns: repeat(auto-fill, minmax(32rem, 1fr));
  }
}
@media only screen and (min-width: 1280px) {
  .project--container {
    grid-template-columns: repeat(auto-fill, minmax(35rem, 1fr));
  }
}

.explore__top--container {
  text-align: center;
  margin-bottom: 3rem;
}
@media only screen and (min-width: 1280px) {
  .explore__top--container {
    margin-bottom: 7.2rem;
  }
}

.explore__top--h1 {
  margin-top: 0;
  font-size: 2.4rem;
  font-weight: 500;
}

.explore__top--search {
  background-color: #f1f1f1;
  border-radius: 1rem;
  width: 100%;
  height: 4.5rem;
  border: transparent;
  padding-left: 1.3rem;
  padding-right: 1.3rem;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.65;
}
.explore__top--search::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.explore__top--search::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.explore__search--container {
  max-width: 79rem;
  display: flex;
  flex-direction: row;
  margin: 0 auto;
}

.explore__search--form {
  width: 100%;
}

.explore__search--button {
  margin-left: auto;
  border: unset;
  border-radius: 1rem;
  width: 18rem;
  background-color: var(--dark-blue);
  color: white;
}
@media only screen and (min-width: 1280px) {
  .explore__search--button {
    font-size: 1.8rem;
  }
}

.explore__main--container {
  margin-bottom: 2.8rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.explore__main--container .icon {
  background: var(--dark-blue);
  color: #ffffff;
  width: auto;
  height: 3rem;
  padding: 0.2rem;
  border-radius: 0.5rem;
  justify-content: center;
  align-items: center;
  display: flex;
}
@media only screen and (min-width: 1280px) {
  .explore__main--container .icon {
    height: 3.5rem;
    padding: 0.8rem;
  }
}
.explore__main--container .icon svg {
  height: 2.4rem;
  width: 2.4rem;
}

.explore__main--h2 {
  font-size: 2.4rem;
  font-weight: bold;
  margin: 0;
}
@media only screen and (min-width: 1280px) {
  .explore__main--h2 {
    font-size: 3.6rem;
  }
}

.btn__load-more {
  margin: 3rem auto 0;
}
@media only screen and (min-width: 1280px) {
  .btn__load-more {
    min-width: 23rem;
  }
}

.content-placeholders-container {
  margin-bottom: 1rem;
}

@media only screen and (min-width: 1280px) {
  .explore--filter {
    border-top: 1px solid #b0aeae;
    border-bottom: 1px solid #b0aeae;
    padding: 1.2rem 0;
  }
}

.project__card--container {
  width: 100%;
  height: auto;
  box-shadow: 0.1rem 0.4rem 1rem rgba(2, 2, 1, 0.1);
  border-radius: 1rem;
}
@media only screen and (min-width: 1280px) {
  .project__card--container {
    box-shadow: unset;
    border: 0.1rem solid #B0AEAE;
    padding: 1.5rem 2.5rem 0;
  }
}

.project__card--top-container {
  display: flex;
  flex-direction: column;
}
.project__card--top-container img {
  width: 100%;
  height: 15rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem;
  background-image: url("/images/img-placeholder.png");
  background-size: cover;
  background-position: center;
}
@media only screen and (min-width: 1280px) {
  .project__card--top-container img {
    border-radius: 0.5rem;
  }
}
.project__card--top-container button {
  width: 2rem;
  height: 2rem;
}

.project__card--name {
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1.15;
  margin-top: 1.2rem;
  margin-bottom: 1.5rem;
  word-break: break-word;
}

.project__card--body-container {
  display: flex;
  flex-direction: column;
  position: relative;
  bottom: 2.3rem;
  height: calc(100% - 15.2rem);
}

.project__card--info-container {
  padding-left: 2.2rem;
  padding-right: 2.2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
@media only screen and (min-width: 1280px) {
  .project__card--info-container {
    padding: 0;
  }
}

.project__card--info--consistency {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media only screen and (min-width: 1280px) {
  .project__card--info--consistency {
    justify-content: flex-end;
  }
}

.project__card--body-salary {
  display: flex;
  justify-content: center;
  align-self: center;
  background-color: var(--dark-blue);
  color: #FFFFFF;
  font-weight: bold;
  font-size: 1.8rem;
  height: 4rem;
  line-height: 4rem;
  padding: 0 2rem;
  border-radius: 1rem;
}

.project__card--post-info {
  font-size: 1.4rem;
  line-height: 1.5;
  color: #514848;
  margin-bottom: 1.5rem;
}

.project__card--bounty-info {
  display: flex;
  flex-direction: row;
  color: #020201;
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
  flex-wrap: wrap;
}
.project__card--bounty-info > div {
  margin-bottom: 1rem;
}
.project__card--bounty-info > :not(:last-child) {
  margin-right: 0.9rem;
}
@media only screen and (min-width: 411px) {
  .project__card--bounty-info > :not(:last-child) {
    margin-right: 1.5rem;
  }
}

.bounty--span {
  display: inline-block;
  font-weight: 800;
}

.project-card__extra-info--container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.project-card__extra-info {
  display: flex;
  color: #514848;
  flex-direction: row;
  font-size: 1.2rem;
}
.project-card__extra-info > * + * {
  margin-left: 1rem;
}

.project-card__wish {
  color: #C4C4C4;
}

.info-item--container {
  display: flex;
  align-items: center;
}
.info-item--container > :not(:last-child) {
  margin-right: 0.4rem;
}
@media only screen and (min-width: 411px) {
  .info-item--container > :not(:last-child) {
    margin-right: 0.5rem;
  }
}

.info-item--icon {
  width: 1.3em;
  height: 1.3em;
  margin-right: -0.15rem;
}

.card-wish__container {
  display: flex;
  position: absolute;
  right: 4rem;
  justify-content: center;
  text-align: center;
  bottom: 0;
  left: 0;
  box-shadow: 0 0.4rem 0.8rem 0 rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  color: var(--dark-blue);
  border: 0.1rem solid #B0AEAE;
  border-radius: 0.5rem;
}
.card-wish__container:active, .card-wish__container:focus {
  outline: none;
  border: 0.1rem solid #B0AEAE;
}

.card-wish__button {
  height: 2rem;
  font-size: 1.4rem;
  width: 100%;
  padding: 1.4rem 0;
}

.project-details--image {
  -webkit-mask-image: url(/images/mask-image.png);
          mask-image: url(/images/mask-image.png);
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  width: 100%;
  max-width: 51rem;
  margin: 1rem auto;
  background-image: url(/images/img-placeholder.png);
  background-size: cover;
  background-position: center;
  height: 22rem;
}
@media only screen and (min-width: 411px) {
  .project-details--image {
    height: 26rem;
  }
}
@media only screen and (min-width: 1280px) {
  .project-details--image {
    height: 37.4rem;
  }
}

.project-details--container {
  max-width: 109rem;
  margin: 0 auto;
}

.details--top-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: calc(100vh - var(--mobile-nav-height));
}
@media only screen and (min-width: 411px) {
  .details--top-container {
    padding-top: 2rem;
  }
}
@media only screen and (min-width: 1280px) {
  .details--top-container {
    flex-direction: row-reverse;
    min-height: unset;
  }
}

@media only screen and (min-width: 1280px) {
  .details__top--left {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 58rem;
  }
  .details__top--left > * + * {
    margin-top: 4.5rem;
  }
}

.project-details--h1 {
  font-size: 2.8rem;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
}
@media only screen and (min-width: 411px) {
  .project-details--h1 {
    font-size: 3.6rem;
  }
}
@media only screen and (min-width: 768px) {
  .project-details--h1 {
    margin-top: 2rem;
  }
}
@media only screen and (min-width: 1280px) {
  .project-details--h1 {
    font-size: 9.6rem;
    font-weight: 800;
    line-height: 8rem;
    text-align: left;
    z-index: 1;
    margin: 0;
    margin-right: -14rem;
  }
}

.project-details__h2--finished {
  font-size: 2.8rem;
  font-weight: 800;
  text-transform: uppercase;
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  max-width: 17.5rem;
}
@media only screen and (min-width: 411px) {
  .project-details__h2--finished {
    font-size: 3.6rem;
  }
}
@media only screen and (min-width: 768px) {
  .project-details__h2--finished {
    margin-top: 2rem;
  }
}
@media only screen and (min-width: 1280px) {
  .project-details__h2--finished {
    font-size: 9.6rem;
    font-weight: 800;
    line-height: 8rem;
    z-index: 1;
    margin: 0;
  }
}

.project-details__finished-score-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.project-details__finished-score-container > * + * {
  margin-left: 1.5rem;
}

.project-details__score-container {
  width: 12.5rem;
  height: 12.5rem;
  background: #f2f4f6;
  box-shadow: 0 0.3rem 0.6rem 0.1rem rgba(0, 0, 0, 0.25);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.project-details__score-text {
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 1.15;
}

.project-details__score-text--overall {
  max-width: 11rem;
  margin: 0 auto;
}

.project-details__score-number {
  font-weight: 800;
  font-size: 6.4rem;
  line-height: 1.15;
}

.project-details--image-container {
  min-height: 22rem;
}

@media only screen and (min-width: 1280px) {
  .details__image img {
    min-width: 51rem !important;
    min-height: 37.5rem;
  }
}

.body > .expandable-image.expanded > img {
  background-image: url("/images/img-placeholder.png");
  background-size: cover;
  background-position: center;
}

.details__ongoing--p {
  text-align: center;
  font-size: 1.4rem;
  margin-top: 2.2rem;
}
@media only screen and (min-width: 1280px) {
  .details__ongoing--p {
    font-size: 1.8rem;
    text-align: left;
  }
}

.details___ongoing--h2 {
  font-size: 3.6rem;
  font-weight: bold;
  margin: 0;
}

.project-details--action-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.project-details--action-button > * + * {
  margin-top: 1.5rem;
}
@media only screen and (min-width: 1280px) {
  .project-details--action-button {
    flex-direction: row;
    justify-content: flex-start;
  }
  .project-details--action-button > * + * {
    margin-top: 0;
    margin-left: 2rem;
  }
  .project-details--action-button > .btn {
    width: 28rem;
  }
}

.project__apply-button {
  background-color: var(--red-glow);
  color: #020201;
  border: unset;
}

@media only screen and (min-width: 1280px) {
  .project-details--main-body {
    max-width: 61.7rem;
    width: 100%;
  }
}

.project-details--h2 {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.project-details--h2 a {
  color: #020201;
  text-decoration: none;
  padding-top: 1rem;
}
.project-details--h2 svg {
  width: 3rem;
  height: auto;
  margin-bottom: -0.5rem;
  color: var(--dark-blue);
}

.button__project--more {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.project-details__lecturer-info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 1.2rem;
  line-height: 1.6rem;
  margin-bottom: 2rem;
}

.lecturer-info--left {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.lecturer-info--left > * + * {
  margin-left: 1rem;
}

@media only screen and (min-width: 1280px) {
  .details__poster--info p {
    font-size: 1.8rem;
    line-height: 1.24;
  }
}

.lecturer-info--right {
  display: flex;
  align-items: center;
}

.lecturer-info--image-container img {
  border-radius: 50%;
  width: 6.4rem;
  height: 6.4rem;
  -o-object-fit: cover;
     object-fit: cover;
  background-image: url("/images/missing-avatar.svg");
  background-size: cover;
}
@media only screen and (min-width: 1280px) {
  .lecturer-info--image-container img {
    width: 10rem;
    height: 10rem;
  }
}

.lencturer-text-link {
  display: flex;
  flex-direction: row;
  color: #020201;
  text-decoration: none;
}
.lencturer-text-link > :not(:last-child) {
  margin-right: 1rem;
}

.project-description {
  margin-bottom: 2rem;
}
.project-description h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.project-description p {
  font-size: 1.4rem;
  line-height: 1.65;
}
@media only screen and (min-width: 1280px) {
  .project-description h3 {
    font-size: 2.4rem;
  }
  .project-description p {
    font-size: 1.8rem;
  }
}

.project-requirements {
  margin-bottom: 3rem;
}
.project-requirements h3 {
  font-size: 1.4rem;
  font-weight: 700;
}
.project-requirements ul {
  font-size: 1.4rem;
  line-height: 1.65;
  padding-left: 2rem;
}
.project-requirements li:not(:last-child) {
  margin-bottom: 1rem;
}
@media only screen and (min-width: 1280px) {
  .project-requirements h3 {
    font-size: 2.4rem;
  }
  .project-requirements ul {
    font-size: 1.8rem;
  }
}

.project-skills {
  margin-bottom: 2.5rem;
}
.project-skills h3 {
  font-size: 1.4rem;
  font-weight: 700;
}
@media only screen and (min-width: 1280px) {
  .project-skills h3 {
    font-size: 2.4rem;
  }
}

.skills--container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  margin: -0.5rem;
}
.skills--container > * {
  margin: 0.5rem;
}

.details__share--container h2 {
  line-height: 1.15;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}
@media only screen and (min-width: 1280px) {
  .details__share--container {
    margin-top: 3.2rem;
    margin-bottom: 1.6rem;
  }
  .details__share--container h2 {
    font-size: 2.4rem;
  }
}

.share__button--container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media only screen and (min-width: 1280px) {
  .share__button--container {
    margin: -0.5rem;
  }
  .share__button--container > * {
    margin: 0.5rem;
  }
}

.details__share--button {
  background-color: var(--dark-blue);
  color: white;
  font-size: 1.4rem;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  line-height: 2rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
}
.details__share--button > * + * {
  margin-left: 1rem;
}

.details__share--icon {
  width: 2rem;
  height: 2rem;
}

.project-summary {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
@media only screen and (min-width: 1280px) {
  .project-summary {
    margin-bottom: 0;
  }
}

.summary--h2 {
  font-size: 1.8rem;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 0.5rem;
  margin-top: 0;
}
@media only screen and (min-width: 1280px) {
  .summary--h2 {
    font-size: 2.4rem;
  }
}

.summary--items {
  display: flex;
  flex-direction: column;
  font-size: 1.2rem;
  padding-left: 0.8rem;
}
.summary--items > * + * {
  margin-top: 1rem;
}
@media only screen and (min-width: 1280px) {
  .summary--items {
    font-size: 1.6rem;
  }
  .summary--items > * + * {
    margin-top: 1.2rem;
  }
}

.summary--item {
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 1280px) {
  .summary--item > * + * {
    margin-left: 0.4rem;
  }
}

.summary-info {
  padding-left: 0.8rem;
  font-size: 1.2rem;
  line-height: 1.65;
}

.summary-icon {
  min-width: 3rem;
  display: inline-block;
  color: var(--dark-blue);
}
@media only screen and (min-width: 1280px) {
  .summary-icon {
    min-width: 4.2rem;
  }
}

.summary--text-icon {
  font-weight: 800;
}

@media only screen and (min-width: 1280px) {
  .desktop-details__body {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .desktop-details__body > * + * {
    margin-left: 6.8rem;
  }
}

@media only screen and (min-width: 1280px) {
  .desktop__body--right {
    width: 40.1rem;
  }
  .desktop__body--right .btn {
    margin-top: 1.6rem;
    width: 100%;
    font-size: 2.4rem;
  }
}

.desktop__other-projects {
  margin-top: 6.8rem;
}

.other-projects__h2 {
  font-size: 3.6rem;
  font-weight: 700;
  text-align: center;
}

svg.details__svg--title {
  font-size: 9.6rem;
  font-weight: 800;
  line-height: 8rem;
  text-align: left;
  z-index: 1;
  margin: 0;
  margin-right: -14rem;
}

.text-outline--thin {
  text-shadow: 0 0 0 transparent, -0.1rem -0.1rem 0 white, 0rem -0.1rem 0 white, 0.1rem -0.1rem 0 white, -0.1rem 0rem 0 white, 0rem 0rem 0 white, 0.1rem 0rem 0 white, -0.1rem 0.1rem 0 white, 0rem 0.1rem 0 white, 0.1rem 0.1rem 0 white, -0.2rem -0.2rem 0 white, -0.1rem -0.2rem 0 white, 0rem -0.2rem 0 white, 0.1rem -0.2rem 0 white, 0.2rem -0.2rem 0 white, -0.2rem -0.1rem 0 white, -0.1rem -0.1rem 0 white, 0rem -0.1rem 0 white, 0.1rem -0.1rem 0 white, 0.2rem -0.1rem 0 white, -0.2rem 0rem 0 white, -0.1rem 0rem 0 white, 0rem 0rem 0 white, 0.1rem 0rem 0 white, 0.2rem 0rem 0 white, -0.2rem 0.1rem 0 white, -0.1rem 0.1rem 0 white, 0rem 0.1rem 0 white, 0.1rem 0.1rem 0 white, 0.2rem 0.1rem 0 white, -0.2rem 0.2rem 0 white, -0.1rem 0.2rem 0 white, 0rem 0.2rem 0 white, 0.1rem 0.2rem 0 white, 0.2rem 0.2rem 0 white;
}

.participant-reviews__container > * + * {
  margin-top: 3rem;
}

.participant-review__container {
  background-color: #f2f4f6;
  padding: 1.2rem;
}
@media only screen and (min-width: 1280px) {
  .participant-review__container {
    padding: 1.8rem;
  }
}

.participant-review__top-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: -2.5rem;
}

.participant-review__top-left-container {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.participant-review__top-left-container > * + * {
  margin-left: 1.6rem;
}

.participant-review__img {
  width: 6.5rem;
  height: 6.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  background-image: url("/images/missing-avatar.svg");
  background-size: cover;
}

.participant-review__info p {
  font-size: 1.4rem;
  line-height: 2rem;
}
.participant-review__info p:last-child {
  font-size: 1.2rem;
}
@media only screen and (min-width: 1280px) {
  .participant-review__info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }
  .participant-review__info p {
    line-height: 1.65;
  }
}

.participant-review__score-text {
  max-width: 7rem;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.05;
}

.participant-review__score-number {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.15;
}

@keyframes openReview {
  0% {
    margin-top: 0rem;
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    margin-top: 4.5rem;
    position: static;
    opacity: 1;
  }
}
@keyframes closeReview {
  0% {
    margin-top: 4.5rem;
  }
  33% {
    opacity: 0;
  }
  50% {
    position: absolute;
  }
  100% {
    margin-top: 0rem;
    position: absolute;
    opacity: 0;
  }
}
.participant-review__bottom--open {
  animation: openReview 0.2s var(--bezier) forwards;
}
.participant-review__bottom--close {
  animation: closeReview 0.2s var(--bezier) forwards;
}

.participant-review__button {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--dark-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3.5rem auto -2.5rem;
  transition: 0.3s all;
  transform: rotate(90deg);
}
.participant-review__button--icon {
  width: 2.5rem;
  height: 2.5rem;
}
.participant-review__button--active {
  transform: rotate(-90deg);
}
@media only screen and (min-width: 1280px) {
  .participant-review__button {
    margin-bottom: -3rem;
  }
}

.h-timeline__container {
  display: flex;
  flex-direction: row;
}

.h-timeline__time-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 6rem;
}
.h-timeline__time-container > * + * {
  margin-top: 0.5rem;
}
@media only screen and (min-width: 1280px) {
  .h-timeline__time-container {
    min-width: 9rem;
  }
}

.h-timeline__top {
  font-size: 1.4rem;
  font-weight: bold;
  text-transform: uppercase;
}
@media only screen and (min-width: 1280px) {
  .h-timeline__top {
    font-size: 1.8rem;
  }
}

.h-timeline_middle {
  width: 1.9rem;
  height: 1.9rem;
}
@media only screen and (min-width: 1280px) {
  .h-timeline_middle {
    width: 3rem;
    height: 3rem;
  }
}

.h-timeline__bottom {
  font-size: 1.2rem;
  font-weight: 600;
}
@media only screen and (min-width: 1280px) {
  .h-timeline__bottom {
    font-size: 1.4rem;
    font-weight: 400;
  }
}

.h-timeline__separator {
  width: 100%;
  border: none;
  border-bottom: 0.2rem dashed var(--dark-blue);
  margin-bottom: 1rem;
  margin-left: -1.2rem;
  margin-right: -1.2rem;
}

.info__h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  margin-top: 0rem;
}
@media only screen and (min-width: 1280px) {
  .info__h3 {
    font-size: 2.4rem;
  }
}

.info__p {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.65;
}
@media only screen and (min-width: 1280px) {
  .info__p {
    font-size: 1.4rem;
  }
}

.info-container {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 1280px) {
  .info-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .info-container > * + * {
    margin-left: 4.5rem;
  }
}

.info--left > * + * {
  margin-top: 2.5rem;
}
@media only screen and (min-width: 1280px) {
  .info--left {
    max-width: 72.8rem;
  }
  .info--left > * + * {
    margin-top: 2.5rem;
  }
}

.info--right > * + * {
  margin-top: 2.5rem;
}
@media only screen and (min-width: 1280px) {
  .info--right {
    width: 32.4rem;
  }
  .info--right > * + * {
    margin-top: 2.5rem;
  }
}

.info__share--button {
  background-color: var(--dark-blue);
  color: white;
  font-size: 1.4rem;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  line-height: 2rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.info__share--button > * + * {
  margin-left: 0.6rem;
}
@media only screen and (min-width: 1280px) {
  .info__share--button {
    padding: 0.6rem 1.6rem;
  }
}

.info__skill-container {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.2rem;
  margin: -0.5rem;
}
.info__skill-container div.bubble-wrap {
  margin: 0.5rem;
}

.record--items {
  display: flex;
  flex-direction: column;
  font-size: 1.2rem;
  padding-left: 0.8rem;
}
.record--items > * + * {
  margin-top: 1rem;
}

.record--container {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.record--icon {
  min-width: 3.5rem;
  color: var(--dark-blue);
}

.record--icon-visited {
  min-width: 3.5rem;
  color: var(--dark-blue);
}

.experience-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.experience-item > * + * {
  margin-left: 1rem;
}

.experience__image--container img {
  width: 5rem;
  height: 5rem;
  -o-object-fit: cover;
     object-fit: cover;
  background-image: url("/images/img-placeholder.png");
  background-size: cover;
  background-position: center;
}
@media only screen and (min-width: 1280px) {
  .experience__image--container img {
    width: 7.5rem;
    height: 7.5rem;
  }
}

.experience__desc {
  display: flex;
  flex-direction: column;
}
.experience__desc > * + * {
  margin-top: 0.5rem;
}
@media only screen and (min-width: 1280px) {
  .experience__desc > * + * {
    margin-top: 1rem;
  }
}

.experience__heading {
  font-size: 1.1rem;
  font-weight: 700;
}
@media only screen and (min-width: 1280px) {
  .experience__heading {
    font-size: 1.8rem;
  }
}

.experience__job {
  font-size: 1rem;
}
@media only screen and (min-width: 1280px) {
  .experience__job {
    font-size: 1.4rem;
  }
}

.experience__date {
  font-size: 1rem;
  color: #757575;
}
@media only screen and (min-width: 1280px) {
  .experience__date {
    font-size: 1.2rem;
  }
}

.social-media__edit-input--container {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.social-media__edit-input--container > * + * {
  margin-left: 2rem;
}

.social-media__input-container {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.social-media__input-container > * + * {
  margin-left: 2rem;
}
@media only screen and (min-width: 1280px) {
  .social-media__input-container {
    background-color: var(--dark-blue);
    border-radius: 50%;
  }
}

.social-media__heading {
  font-size: 2.4rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
}
@media only screen and (min-width: 1280px) {
  .social-media__heading {
    font-size: 4.8rem;
  }
}

.social-media__edit--container {
  display: flex;
  flex-direction: column;
}
.social-media__edit--container > * + * {
  margin-top: 2.4rem;
}

.social-media__container {
  display: flex;
  flex-direction: column;
}
.social-media__container > * + * {
  margin-top: 2.4rem;
}
@media only screen and (min-width: 1280px) {
  .social-media__container {
    flex-direction: row;
  }
  .social-media__container > * + * {
    margin-top: 0;
    margin-left: 1rem;
  }
}

.social-media__edit--icon {
  width: 3rem;
  height: 3rem;
  color: var(--dark-blue);
}
@media only screen and (min-width: 1280px) {
  .social-media__edit--icon {
    width: 4.5rem;
    height: 4.5rem;
  }
}

.social-media__icon {
  width: 3rem;
  height: 3rem;
  color: var(--dark-blue);
}
@media only screen and (min-width: 1280px) {
  .social-media__icon {
    color: white;
  }
}

.social-media__icon-visited {
  width: 3em;
  height: 3em;
  color: var(--dark-blue);
}
@media only screen and (min-width: 1280px) {
  .social-media__icon-visited {
    color: white;
    width: 2.5rem;
    height: 2.5rem;
  }
}

.social-media__input {
  width: 100%;
  border: unset;
  background-color: #f1f1f1;
  font-size: 1.4rem;
  padding: 1rem 1.2rem;
  border-radius: 1rem;
  line-height: 1.65;
}
@media only screen and (min-width: 1280px) {
  .social-media__input {
    font-size: 1.8rem;
  }
}

.social-media__a {
  width: 100%;
}
@media only screen and (min-width: 1280px) {
  .social-media__a {
    width: 4.5rem;
    height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.info__cv--container {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: #f1f1f1;
  padding: 0.8rem;
  border-radius: 1rem;
}
.info__cv--container * + * {
  margin-left: 1rem;
}

.info__cv--heading {
  font-size: 1.4rem;
  font-weight: bold;
}
@media only screen and (min-width: 1280px) {
  .info__cv--heading {
    font-size: 1.8rem;
  }
}

.info__cv--icon {
  width: 2.4rem;
  height: 2.4rem;
}
@media only screen and (min-width: 1280px) {
  .info__cv--icon {
    width: 3.2rem;
    height: 3.2rem;
  }
}

.last-sub--h3 {
  margin-bottom: 0rem;
}

.apply__container {
  max-width: 72rem;
  margin: 0 auto;
  width: 100%;
}
@media only screen and (min-width: 1280px) {
  .apply__container {
    padding: 2rem 0 6rem;
  }
}

.apply__top--container {
  margin-bottom: 2.5rem;
}

.apply__top--h1 {
  margin-top: 0;
  font-size: 3rem;
  text-align: center;
  font-weight: 800;
}

.apply__top--p {
  font-size: 1.8rem;
  line-height: 1.65;
  text-align: center;
}

.form-group__container {
  margin-bottom: 2rem;
}

.form-group__input-name {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.15;
  margin-top: 0;
  margin-bottom: 1.2rem;
}
@media only screen and (min-width: 1280px) {
  .form-group__input-name {
    font-size: 2.4rem;
  }
}

.form__input-name {
  font-size: 1.8rem;
}
@media only screen and (min-width: 1280px) {
  .form__input-name {
    font-size: 2.4rem;
  }
}

.form-group__radio-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
  gap: 1rem;
}
@media only screen and (min-width: 1280px) {
  .form-group__radio-container {
    gap: 2.2rem;
  }
}

.form-group__radio {
  display: none;
}
.form-group__radio + a {
  border: 0.12rem solid #020201;
  color: #020201;
  text-decoration: none;
}

.btn--apply {
  width: 100%;
  font-size: 1.4rem;
}
@media only screen and (min-width: 1280px) {
  .btn--apply {
    font-size: 2.4rem;
    font-weight: bold;
    height: 6rem;
  }
}

@media only screen and (min-width: 1280px) {
  .apply__btn-submit {
    margin-top: 5rem;
    width: 20rem;
    margin-left: auto;
  }
}

button.active-type {
  border-color: var(--dark-blue);
  background-color: var(--dark-blue);
  color: white;
}

.radio__square {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.65;
  padding: 1rem 2rem;
  display: inline-block;
  border-radius: 1rem;
  width: 100%;
  text-align: center;
  border: 0.12rem solid #020201;
}

.form__input--group {
  display: grid;
  grid-template-columns: 1fr;
}
@media only screen and (min-width: 1280px) {
  .form__input--group {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.form-group__input-select {
  border: unset;
  border-radius: 1rem;
  background-color: #f1f1f1;
  color: #484848;
  padding: 1.4rem 1.8rem;
  width: 100%;
  font-size: 1.4rem;
  line-height: 1.65;
}
@media only screen and (min-width: 1280px) {
  .form-group__input-select p {
    font-size: 1.8rem;
  }
}

.form-group__input-text {
  border: unset;
  border-radius: 1rem;
  background-color: #f1f1f1;
  padding: 0 1.8rem;
  width: 100%;
  font-size: 1.4rem;
  line-height: 4.5rem;
}
@media only screen and (min-width: 1280px) {
  .form-group__input-text {
    font-size: 1.8rem;
  }
}

.form-group__input-textarea {
  border: unset;
  border-radius: 1rem;
  background-color: #f1f1f1;
  width: 100%;
  padding: 1.5rem;
  font-size: 1.4rem;
  line-height: 1.65;
  font-family: "Open Sans", sans-serif;
}
@media only screen and (min-width: 1280px) {
  .form-group__input-textarea {
    font-size: 1.8rem;
  }
}

.form-group__input-info {
  margin-top: 0.3rem;
  margin-left: 0.3rem;
  font-size: 1.1rem;
  font-weight: 300;
}
@media only screen and (min-width: 1280px) {
  .form-group__input-info {
    margin-top: 1rem;
    margin-left: 0.6rem;
    font-size: 1.4rem;
    font-weight: 400;
  }
}

.form--hr {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.post__container {
  max-width: 72rem;
  width: 100%;
}

.post__h1 {
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
}

.post__h4 {
  font-size: 1.8rem;
}

.post__modal--h4 {
  font-size: 2.4rem;
  font-weight: 600;
}

.post__add-skill {
  margin-bottom: 1.2rem;
}

.post__requirements {
  font-size: 1.4rem;
  line-height: 1.65;
  padding-left: 0rem;
  margin-top: 0;
}
.post__requirements > * + * {
  margin-top: 1rem;
}
@media only screen and (min-width: 1280px) {
  .post__requirements {
    font-size: 1.8rem;
  }
}

.post-salary__group {
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.post-salary__group .form-group__input-name {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}
.post-salary__group > * + * {
  margin-top: 1rem;
}
@media only screen and (min-width: 1280px) {
  .post-salary__group {
    display: flex;
    margin-top: 1.5rem;
  }
  .post-salary__group > * + * {
    margin-top: 0;
    margin-left: 1.5rem;
  }
}

.post__form--parent > .form-group__container {
  margin-bottom: 0;
}

.project-dashboard__container {
  margin-left: -1rem;
  margin-right: -1rem;
}

.project-dashboard__h2 {
  font-size: 2.4rem;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 411px) {
  .project-dashboard__h2 {
    font-size: 3.2rem;
  }
}
@media only screen and (min-width: 992px) {
  .project-dashboard__h2 {
    font-size: 3.2rem;
  }
}

.project-dashboard__h3 {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1.5rem;
}
@media only screen and (min-width: 411px) {
  .project-dashboard__h3 {
    font-size: 2.4rem;
  }
}
@media only screen and (min-width: 1280px) {
  .project-dashboard__h3 {
    font-size: 2.4rem;
  }
}

.project-dashboard__subtitle {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.15;
}
@media only screen and (min-width: 411px) {
  .project-dashboard__subtitle {
    font-size: 1.8rem;
  }
}

.project-dashboard__list-team {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: -1.2rem;
  justify-content: center;
  margin-bottom: 2.4rem;
}
@media only screen and (min-width: 1280px) {
  .project-dashboard__list-team {
    margin: -1.6rem;
  }
}

.project-dashboard__list-team--item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  max-width: 10.92rem;
  margin: 1.2rem;
}
@media only screen and (min-width: 1280px) {
  .project-dashboard__list-team--item {
    margin: 1.6rem;
    max-width: 14rem;
  }
}

.project-dashboard__list-team--img {
  border-radius: 50%;
  width: 6.5rem;
  height: 6.5rem;
  margin-bottom: 0.7rem;
  background-image: url("/images/missing-avatar.svg");
  background-size: cover;
}
@media only screen and (min-width: 1280px) {
  .project-dashboard__list-team--img {
    width: 9rem;
    height: 9rem;
  }
}

.project-dashboard__list-team--name {
  text-align: center;
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.15;
}
@media only screen and (min-width: 1280px) {
  .project-dashboard__list-team--name {
    font-size: 1.8rem;
    font-weight: 600;
  }
}

.project-dashboard__list-team--expertise {
  text-align: center;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.15;
  margin-top: 0.4rem;
}
@media only screen and (min-width: 1280px) {
  .project-dashboard__list-team--expertise {
    font-size: 1.6rem;
  }
}

.project-dashboard__p {
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.review__container {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
}
@media only screen and (min-width: 1280px) {
  .review__container {
    margin: 3rem auto 0;
  }
}

.review__h2 {
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
}
@media only screen and (min-width: 1280px) {
  .review__h2 {
    font-size: 3.6rem;
  }
}

.review-top__container {
  display: flex;
  flex-direction: column;
  margin-bottom: 3rem;
  align-items: center;
}
.review-top__container > * + * {
  margin-top: 2rem;
}

.review__image {
  width: 12.5rem;
  height: 12.5rem;
  margin: 0 auto 3rem;
  display: block;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  background-image: url("/images/img-placeholder.png");
  background-size: cover;
  background-position: center;
}
@media only screen and (min-width: 1280px) {
  .review__image {
    margin: 0;
    width: 20rem;
    height: 20rem;
  }
}

.review__title {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  max-width: 25rem;
}
@media only screen and (min-width: 1280px) {
  .review__title {
    font-size: 6.4rem;
    font-weight: 800;
    max-width: unset;
  }
}

.review__overall--container {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 3rem;
}
.review__overall--container > * + * {
  margin-left: 1rem;
}

.review__overall--score {
  font-size: 2.4rem;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 0;
  text-align: right;
  max-width: 9rem;
}
@media only screen and (min-width: 1280px) {
  .review__overall--score {
    font-size: 4.8rem;
    max-width: unset;
    width: 100%;
  }
}

.review__overall--dots {
  font-size: 2.4rem;
  font-weight: bold;
  margin-left: 1.2rem;
  margin-right: 2rem;
}

.review__participant--list > * + * {
  margin-top: 6rem;
}

@media only screen and (min-width: 1280px) {
  .review-participant__left-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 2.4rem;
  }
}

.review__participant--container {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 1.5rem;
}
.review__participant--container > * + * {
  margin-left: 1.6rem;
}

.review__participant--info p {
  font-size: 1.4rem;
  line-height: 2rem;
}
.review__participant--info p:last-child {
  font-size: 1.2rem;
}
@media only screen and (min-width: 1280px) {
  .review__participant--info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }
  .review__participant--info p {
    font-size: 1.8rem;
    line-height: 1.25;
  }
  .review__participant--info p:last-child {
    font-size: 1.8rem;
  }
}

.review__h4 {
  font-size: 1.4rem;
  font-weight: bold;
}
@media only screen and (min-width: 1280px) {
  .review__h4 {
    font-size: 2.4rem;
    margin-bottom: 3rem;
  }
}

.review__participant--img {
  width: 6.5rem;
  height: 6.5rem;
  border-radius: 50%;
  background-image: url("/images/missing-avatar.svg");
  background-size: cover;
}
@media only screen and (min-width: 1280px) {
  .review__participant--img {
    width: 7.5rem;
    height: 7.5rem;
  }
}

@media only screen and (min-width: 1280px) {
  .review-score__container {
    width: 100%;
    max-width: 40rem;
    margin-bottom: 0;
  }
}

.user__container {
  margin-top: 0.7rem;
  max-width: 110rem;
  margin: 0 auto;
  margin-top: 2.6rem;
}
@media only screen and (min-width: 1280px) {
  .user__container {
    margin-top: 2.6rem;
  }
}

.user__info--container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.user__info--img {
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  margin-bottom: 2rem;
  box-shadow: 0rem 0.3rem 0.6rem 0.1rem rgba(2, 2, 1, 0.2);
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 1280px) {
  .user__info--img {
    width: 17.5rem;
    height: 17.5rem;
    box-shadow: unset;
    margin-bottom: 1rem;
  }
}

.user__info--name {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
  text-align: center;
  color: var(--dark-blue);
}
@media only screen and (min-width: 1280px) {
  .user__info--name {
    font-size: 7.2rem;
    width: 57.4rem;
    line-height: 6.45rem;
    margin-bottom: 1.4rem;
  }
}

.user__info--occupation {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
  line-height: 1.15;
  color: var(--dark-blue);
}

.user__action--container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
  line-height: 1.15;
}
.user__action--container > * + * {
  margin-top: 1rem;
}
@media only screen and (min-width: 411px) {
  .user__action--container {
    flex-direction: row;
  }
  .user__action--container > * + * {
    margin-top: 0;
    margin-left: 1rem;
  }
}
.user__action--container > .action--button {
  font-weight: 700;
  font-size: 1.4rem;
  height: 4.5rem;
  width: 15rem;
  border-radius: 1rem;
}
@media only screen and (min-width: 1280px) {
  .user__action--container > .action--button {
    font-size: 1.8rem;
    width: 18.5rem;
  }
}

.user__sub-menu--container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  text-align: center;
  margin-bottom: 3rem;
  gap: 0.5rem;
}

.user__sub-menu--item {
  font-size: 1.4rem;
  font-weight: 700;
  padding: 1rem;
  background-color: #f9f9f9;
  color: var(--dark-blue);
  border-radius: 1rem;
  text-decoration: none;
}
@media only screen and (min-width: 1280px) {
  .user__sub-menu--item {
    padding: 0;
    font-size: 2.4rem;
    color: #626262;
  }
}

.user__sub-menu--active {
  background-color: var(--dark-blue);
  color: #ffffff;
}
@media only screen and (min-width: 1280px) {
  .user__sub-menu--active {
    background-color: white;
    color: #001534;
  }
}

.user__sub-menu {
  display: flex;
  flex-direction: row;
  margin-bottom: 2rem;
}

@media only screen and (min-width: 1280px) {
  .user__sub-menu--left > * + * {
    margin-left: 5rem;
  }
}

.user__sub-menu--right {
  margin-left: auto;
  display: flex;
  flex-direction: row;
}

.inbox__container {
  display: flex;
  flex-direction: column;
  max-width: 72rem;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (min-width: 1280px) {
  .inbox__container {
    justify-content: center;
    max-width: 112.5rem;
    margin-bottom: 2rem;
  }
}

.inbox__body--container {
  display: flex;
  flex-direction: column;
  max-width: 72rem;
  width: 100%;
}
@media only screen and (min-width: 1280px) {
  .inbox__body--container {
    flex-direction: row;
    justify-content: center;
    max-width: 112.5rem;
    margin: 0;
  }
  .inbox__body--container > * + * {
    margin-left: 2.4rem;
  }
}

.inbox__info--container {
  margin-top: 1rem;
  margin-bottom: 3.2rem;
  display: flex;
  flex-direction: column;
  padding: 2rem 1rem;
  align-items: center;
  justify-content: center;
  background: #f2f4f6;
  border-radius: 2rem;
  box-shadow: 0rem 0.2rem 0.6rem rgba(119, 114, 114, 0.2);
}
@media only screen and (min-width: 411px) {
  .inbox__info--container {
    padding: 1.5rem 2.5rem 1.5rem 1.5rem;
    flex-direction: row;
  }
}
@media only screen and (min-width: 1280px) {
  .inbox__info--container {
    padding: 2.4rem 2rem;
    flex-direction: column;
    text-align: center;
    height: 100%;
    width: 28rem;
    margin-bottom: 0;
  }
  .inbox__info--container > * + * {
    margin-top: 1.6rem;
  }
}

.inbox__right--container {
  width: 100%;
  max-width: 72rem;
}
@media only screen and (min-width: 1280px) {
  .inbox__right--container {
    max-width: 82rem;
  }
}

.inbox--top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.inbox--top-left {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.inbox--left-icon {
  width: 3rem;
  height: 3rem;
  margin-right: 1rem;
}

.inbox--heading {
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
}

.inbox--right-icon {
  width: 3rem;
  height: 3rem;
  padding: 0.3rem;
  border: 0.05rem solid #b0aeae;
  border-radius: 0.5rem;
  color: #b0aeae;
}

.inbox--container {
  display: flex;
  flex-direction: column;
}
.inbox--container > :not(:last-child) {
  margin-bottom: 1.5rem;
}

.inbox__info--img {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 2rem;
  background-image: url("/images/missing-avatar.svg");
  background-size: cover;
}
@media only screen and (min-width: 411px) {
  .inbox__info--img {
    margin-right: 3rem;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1280px) {
  .inbox__info--img {
    width: 12.5rem;
    height: 12.5rem;
    margin-right: 0;
  }
}

@media only screen and (min-width: 1280px) {
  .inbox__info--desc > p + p {
    margin-top: 1.6rem;
  }
}

.inbox__info--name {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.3rem;
}
@media only screen and (min-width: 1280px) {
  .inbox__info--name {
    font-size: 3.6rem;
  }
}

.inbox__info--occupation {
  color: #757575;
  margin: 0 0 0.5rem;
  line-height: 1.45;
}
@media only screen and (min-width: 1280px) {
  .inbox__info--occupation {
    font-size: 1.8em;
  }
}

.inbox__info--expertise-icon {
  width: 1.5rem;
  height: 1.5rem;
}
@media only screen and (min-width: 1280px) {
  .inbox__info--expertise-icon {
    width: 1.8rem;
    height: 1.8rem;
  }
}

.inbox__info--expertise {
  font-weight: 600;
  margin: 0 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.45;
}
@media only screen and (min-width: 1280px) {
  .inbox__info--expertise {
    justify-content: center;
    font-size: 1.8em;
  }
}

.inbox__info--available {
  color: #7ffa53;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.45;
}
@media only screen and (min-width: 1280px) {
  .inbox__info--available {
    font-size: 1.8em;
    justify-content: center;
  }
}

.inbox__info--verified {
  color: #3051df;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.45;
  font-style: italic;
}
@media only screen and (min-width: 1280px) {
  .inbox__info--verified {
    font-size: 1.8em;
    justify-content: center;
  }
}

.desktop-inbox__heading {
  font-size: 3.6rem;
  font-weight: 800;
  margin-bottom: 1.6rem;
  text-transform: uppercase;
}

.message--container {
  background: #EFF1F4;
  overflow-y: scroll;
  width: 100vw;
  margin: -0.4rem -3rem -3rem;
}
@media only screen and (min-width: 1280px) {
  .message--container {
    background: #ffffff;
    width: 108.5rem;
    margin: 0 auto;
    overflow-y: hidden;
  }
}

.chat-input__container {
  display: flex;
  padding: 1.5rem 1.8rem;
  background: #ffffff;
  width: 100%;
  box-shadow: 0rem -0.2rem 0.5rem rgba(2, 2, 1, 0.1);
  border-radius: 2rem 2rem 0 0;
  position: absolute;
  bottom: 0;
}
@media only screen and (min-width: 1280px) {
  .chat-input__container {
    box-shadow: none;
    padding: 1.5rem 1.8rem;
    max-width: 108.5rem;
    margin: 0 auto;
    border: 1px solid #b0aeae;
    border-top: none;
    border-radius: 0 0 1rem 1rem;
    position: static;
  }
}

.chat-input {
  border-radius: 1rem;
  background-color: #cecccc;
  border: none;
  padding: 0.5rem 1.5rem;
  height: 3.2rem;
  font-family: inherit;
  width: 100%;
  font-size: 1.2rem;
  font-weight: 300;
}
@media only screen and (min-width: 1280px) {
  .chat-input {
    padding: 1rem 3rem;
    font-weight: 400;
    font-size: 1.8rem;
    height: 4.6rem;
  }
}

.chat-input::-moz-placeholder {
  font-family: inherit;
}

.chat-input::placeholder {
  font-family: inherit;
}

.message-item--img {
  width: 2.5rem;
  height: 2.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
}
@media only screen and (min-width: 1280px) {
  .message-item--img {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
  }
}

.message-item__container--other {
  display: flex;
  flex-direction: row;
}
@media only screen and (min-width: 1280px) {
  .message-item__container--other {
    align-items: flex-end;
  }
}

.message-item__list {
  margin-bottom: 6.2rem;
  padding: 1.6rem 1.4rem;
  background: #EFF1F4;
}
@media only screen and (min-width: 1280px) {
  .message-item__list {
    border: 1px solid #b0aeae;
    height: 40.5rem;
    overflow-y: scroll;
    padding: 2.7rem 2.4rem;
    border-radius: 1rem 1rem 0 0;
    margin-bottom: 0rem;
  }
}
@media only screen and (min-width: 1366px) {
  .message-item__list {
    height: max(56rem, 58vh);
  }
}

.message-item__container--other + .message-item__container--other {
  margin-top: 1.2rem;
}
@media only screen and (min-width: 1280px) {
  .message-item__container--other + .message-item__container--other {
    margin-top: 1.2rem;
  }
}

.message-item__container--self + .message-item__container--self {
  margin-top: 0.8rem;
}

.message-item__container--self + .message-item__container--other,
.message-item__container--other + .message-item__container--self {
  margin-top: 2.4rem;
}

.message-bubble__container {
  padding: 0.9rem 1.2rem;
  max-width: 30.5rem;
  border-radius: 0.5rem;
  font-size: 1.28rem;
  font-weight: 300;
  line-height: 1.65;
  box-shadow: 0.1rem 0.2rem 0.4rem rgba(0, 0, 0, 0.1);
}
@media only screen and (min-width: 1280px) {
  .message-bubble__container {
    font-size: 1.4rem;
    font-weight: 400;
    max-width: 48rem;
  }
}

.message-bubble__container--other {
  background-color: #ffffff;
  margin-right: 2.5rem;
}

.message-item__container--self {
  display: flex;
  flex-direction: row-reverse;
}

.message-bubble__container--self {
  background: #dcdfff;
}

.mark > br {
  content: "";
  display: block;
  margin-bottom: 1.5em;
}

.mark > img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  max-height: 32rem;
}

.message__info--body-container {
  font-size: 1.4rem;
  font-weight: 400;
}
.message__info--body-container > * + * {
  margin-top: 0.8rem;
}

.message-item__body--name {
  font-size: 1rem;
}
@media only screen and (min-width: 1280px) {
  .message-item__body--name {
    font-size: 1.2rem;
  }
}

.message__info--instruction-icon {
  width: 2rem;
  height: 2rem;
}

.message__info--pre {
  background-color: #f1f1f1;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  margin-left: 1rem;
}

.message-icon {
  width: 3rem;
  height: 3rem;
}
@media only screen and (min-width: 1280px) {
  .message-icon {
    width: 4rem;
    height: 4rem;
  }
}

.message__h1 {
  font-size: 3.6rem;
  font-weight: 700;
}

@media only screen and (min-width: 1280px) {
  .message__info p {
    font-size: 1.4rem;
  }
}

.topboard__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 2.2rem;
  letter-spacing: 0.02em;
  margin: 2rem -3rem;
  width: 100vw;
}

.topboard-list_container {
  display: flex;
  width: 100%;
  overflow-x: hidden;
  scrollbar-width: none;
  transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.topboard-list_container > * + * {
  margin-left: 2rem;
}
.topboard-list_container::-webkit-scrollbar {
  display: none;
}
@media only screen and (min-width: 1280px) {
  .topboard-list_container {
    overflow-x: unset;
    justify-content: center;
  }
}

@media only screen and (min-width: 1280px) {
  .topboard-list_container--leaderboard {
    margin: 6rem 0;
  }
}

@media only screen and (min-width: 1280px) {
  .topboard-list--showAll {
    display: flex;
    justify-content: center;
  }
}

.topboard-list__nav--container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.topboard-list__nav {
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  background: rgba(196, 196, 196, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  bottom: 25.6rem;
}

.topboard-list__nav--item {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
}

.topboard-item {
  min-width: 21.5rem;
  max-width: 25rem;
  min-height: 35rem;
  background: #f2f4f6;
  border-radius: 1rem;
  padding: 1.2rem 1.7rem 2.5rem;
  opacity: 0.25;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  scroll-snap-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: #001534;
  transition: all 0.3s;
}
@media only screen and (min-width: 1280px) {
  .topboard-item:hover {
    opacity: 0.5;
    cursor: pointer;
  }
}

@media only screen and (min-width: 1280px) {
  .topboard-item--home:hover {
    opacity: 1;
    cursor: unset;
  }
}

.leaderboard-item--active {
  opacity: 1;
  -webkit-user-select: unset;
     -moz-user-select: unset;
          user-select: unset;
}
@media only screen and (min-width: 1280px) {
  .leaderboard-item--active {
    margin: 0 2rem 0 4rem;
    transform: scale(1.23255814);
    min-width: 22.5rem;
  }
  .leaderboard-item--active:hover {
    opacity: 1;
    cursor: unset;
  }
}

.topboard-item__title--container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.topboard-item__title--container > * + * {
  margin-left: 1.2rem;
}

.topboard-item__title--icon {
  width: 3rem;
  height: 3rem;
}

.topboard-item__title--name {
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
}

.topboard-item__avatar--container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: -3.6rem;
}

.topboard-item__avatar--rank {
  position: relative;
  border-radius: 50%;
  background: var(--dark-blue);
  color: white;
  width: 5.4rem;
  height: 5.4rem;
  top: 5.2rem;
  left: 5.5rem;
  font-size: 2.4rem;
  font-weight: 800;
  display: flex;
  justify-content: center;
  align-items: center;
}

.topboard-item__avatar--img {
  border-radius: 50%;
  width: 10.8rem;
  height: 10.8rem;
  border: 0.8rem solid var(--dark-blue);
  box-sizing: content-box;
  background-image: url("/images/missing-avatar.svg");
  background-size: cover;
}

.topboard-item__avatar--points {
  font-size: 1.2rem;
  font-weight: 800;
  position: relative;
  width: 12.5rem;
  height: 2.4rem;
  bottom: 2rem;
  background: var(--dark-blue);
  color: white;
  box-shadow: 0.2rem 0.4rem 0.8rem rgba(0, 33, 77, 0.3);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.topboard-item__identifier {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-bottom: 1rem;
}

.topboard-item__identifier-name {
  font-weight: bold;
  font-size: 1.8rem;
}

.topboard-item__identifier-expertise {
  font-weight: 600;
  font-size: 1.8rem;
}

.topboard-item__fact {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.4rem;
}
.topboard-item__fact > * + * {
  margin-left: 0.5rem;
}

.topboard-item__fact--icon {
  width: 4.5rem;
  height: 4.5rem;
}

.topboard-item__fact--name {
  font-size: 1.3rem;
  font-weight: bold;
  width: 7.2rem;
}

.topboard-item__view-button {
  width: 13rem;
  height: 3.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 1rem;
  background: var(--dark-blue);
  color: white;
  margin: 0 auto;
}
.topboard-item__view-button:active, .topboard-item__view-button:focus {
  outline: none;
}

.leaderboard-body__container {
  max-width: 100rem;
  margin: 0 auto;
}

.leaderboard-items__container > * + * {
  margin-top: 1.3rem;
}
@media only screen and (min-width: 1280px) {
  .leaderboard-items__container > * + * {
    margin-top: 2rem;
  }
}

.leaderboard-item__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: #f2f4f6;
  padding: 1.3rem 1.5rem;
  align-items: center;
  border-radius: 1rem;
}
@media only screen and (min-width: 1280px) {
  .leaderboard-item__container {
    padding: 2.3rem 3rem;
  }
}

.leaderboard-item__left-container {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.leaderboard-item__left-container > * + * {
  margin-left: 1.6rem;
}
@media only screen and (min-width: 1280px) {
  .leaderboard-item__left-container > * + * {
    margin-left: 2.8rem;
  }
}

.leaderboard-item__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.85rem;
}
.leaderboard-item__body > * + * {
  margin-top: 0.7rem;
}
@media only screen and (min-width: 1280px) {
  .leaderboard-item__body > * + * {
    margin-top: 1.4rem;
  }
}

@media only screen and (min-width: 1280px) {
  .leaderboard-item__body-top > * + * {
    margin-top: 1rem;
  }
}

.leaderboard-item__img {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background-image: url("/images/missing-avatar.svg");
  background-size: cover;
}
@media only screen and (min-width: 1280px) {
  .leaderboard-item__img {
    width: 9rem;
    height: 9rem;
  }
}

.leaderboard-item__name {
  font-size: 1.4rem;
  font-weight: 800;
}
@media only screen and (min-width: 1280px) {
  .leaderboard-item__name {
    font-size: 2.4rem;
    font-weight: 700;
  }
}

.leaderboard-item__expertise {
  font-size: 1.4rem;
  font-weight: 600;
}
@media only screen and (min-width: 1280px) {
  .leaderboard-item__expertise {
    font-size: 2.4rem;
    font-weight: 400;
  }
}

.leaderboard-item__stat {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.leaderboard-item__stat > * + * {
  margin-left: 0.5rem;
}
@media only screen and (min-width: 1280px) {
  .leaderboard-item__stat > * + * {
    margin-left: 1rem;
  }
}

.leaderboard-item__stat-icon {
  width: 2rem;
  height: 2rem;
  filter: drop-shadow(0 0.4rem 0.4rem rgba(0, 0, 0, 0.25));
}
@media only screen and (min-width: 1280px) {
  .leaderboard-item__stat-icon {
    width: 3rem;
    height: 3rem;
  }
}

.leaderboard-item__stat-text {
  font-weight: bold;
  font-size: 1.2rem;
}
@media only screen and (min-width: 1280px) {
  .leaderboard-item__stat-text {
    font-size: 1.8rem;
  }
}

.leaderboard-item__points-container {
  display: flex;
  flex-direction: column;
  text-align: center;
}
@media only screen and (min-width: 1280px) {
  .leaderboard-item__points-container {
    padding: 1.4rem 1.3rem;
    border-top: 0.1rem solid var(--dark-blue);
    border-right: 0.1rem solid var(--dark-blue);
    border-bottom: 0.1rem solid var(--dark-blue);
    border-left: 0.5rem solid var(--dark-blue);
    border-radius: 1rem;
  }
}

.leaderboard-item__points--number {
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
}
@media only screen and (min-width: 411px) {
  .leaderboard-item__points--number {
    font-size: 2.3rem;
  }
}

.leaderboard-item__points--text {
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
}
@media only screen and (min-width: 411px) {
  .leaderboard-item__points--text {
    font-size: 1.8rem;
  }
}

.leaderboard__h1 {
  font-size: 4.8rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.leaderboard__h2 {
  font-size: 4.8rem;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
}

.party__container {
  display: flex;
  flex-direction: column;
  max-width: 72rem;
  margin: 0 auto;
  width: 100%;
}
@media only screen and (min-width: 1280px) {
  .party__container {
    justify-content: center;
    max-width: 112.5rem;
    margin-bottom: 2rem;
  }
}

.party-body__container {
  display: flex;
  flex-direction: column;
  max-width: 72rem;
  width: 100%;
  min-height: calc(100vh - (var(--mobile-nav-height) + 0.5rem + 3rem));
}
@media only screen and (min-width: 1280px) {
  .party-body__container {
    flex-direction: row;
    justify-content: flex-start;
    max-width: 112.5rem;
    margin: 0;
    min-height: unset;
  }
  .party-body__container > * + * {
    margin-left: 2.4rem;
  }
}

.party-info__container {
  margin-top: 1rem;
  margin-bottom: 3.2rem;
  display: flex;
  flex-direction: column;
  padding: 2rem 1rem;
  align-items: center;
  justify-content: center;
  background: #f2f4f6;
  border-radius: 2rem;
  box-shadow: 0rem 0.2rem 0.6rem rgba(119, 114, 114, 0.2);
}
@media only screen and (min-width: 411px) {
  .party-info__container {
    padding: 1.5rem 2.5rem 1.5rem 1.5rem;
    flex-direction: row;
  }
}
@media only screen and (min-width: 1280px) {
  .party-info__container {
    padding: 2.4rem 2rem;
    flex-direction: column;
    text-align: center;
    height: 100%;
    width: 28rem;
    margin-bottom: 0;
  }
  .party-info__container > * + * {
    margin-top: 1.6rem;
  }
}

.party-right__container {
  width: 100%;
  max-width: 72rem;
}
@media only screen and (min-width: 1280px) {
  .party-right__container {
    max-width: 60rem;
  }
}

.party-item__container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.party-item__container > * + * {
  margin-left: 2rem;
}

.party-item__left-container {
  display: flex;
  flex-direction: row;
  overflow-x: scroll;
}
.party-item__left-container > * + * {
  margin-left: 1rem;
}
.party-item__left-container::-webkit-scrollbar {
  display: none;
}

.party-item__left-container--shortlist {
  max-width: 28.5rem;
}

.party-item__avatar {
  width: 6.5rem;
  height: 6.5rem;
  border-radius: 50%;
  background-image: url("/images/missing-avatar.svg");
  background-size: cover;
}
@media only screen and (min-width: 1280px) {
  .party-item__avatar {
    margin-right: 1rem;
  }
}

.party-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (min-width: 1280px) {
  .party-item {
    margin-right: 1rem;
  }
}

.party-item--accepted {
  border: 3px solid #50CD24;
}

@media only screen and (min-width: 1280px) {
  .member-item__list > * + * {
    margin-top: 1.5rem;
  }
}

.member-item_container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (min-width: 1280px) {
  .member-item_container {
    margin-right: 1rem;
  }
}

.member-item__left-container {
  display: flex;
  flex-direction: row;
}
.member-item__left-container > * + * {
  margin-left: 1.5rem;
}
@media only screen and (min-width: 1280px) {
  .member-item__left-container {
    align-items: center;
  }
}

.member-item__avatar {
  width: 4.5rem;
  height: 4.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  background-image: url("/images/missing-avatar.svg");
  background-size: cover;
}
@media only screen and (min-width: 1280px) {
  .member-item__avatar {
    width: 6.5rem;
    height: 6.5rem;
  }
}

.party-members__container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(24rem, 1fr));
  gap: 1.2rem;
}
.party-member__left-container {
  display: flex;
  flex-direction: row;
}
.party-member__left-container > * + * {
  margin-left: 1.5rem;
}
@media only screen and (min-width: 1280px) {
  .party-member__left-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .party-member__left-container > * + * {
    margin-left: 0;
  }
}

.party-member__avatar {
  width: 6.5rem;
  height: 6.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  background-image: url("/images/missing-avatar.svg");
  background-size: cover;
}
@media only screen and (min-width: 1280px) {
  .party-member__avatar {
    width: 8.5rem;
    height: 8.5rem;
  }
}

.party-member__info > * + * {
  margin-top: 0.4rem;
}

.notfound__container {
  min-height: calc(100vh - (var(--mobile-nav-height) + 0.5rem + 3rem));
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 1280px) {
  .notfound__container {
    min-height: calc(100vh - (var(--desktop-nav-height) + 0.5rem + 3rem + 18rem));
  }
}

.notfound__h2 {
  font-size: 3rem;
  font-weight: 800;
  margin: 0;
}

.newcomer__p {
  font-size: 1.4rem;
  font-weight: 400;
}

.notfound__body > * + * {
  margin-top: 3rem;
}
@media only screen and (min-width: 1280px) {
  .notfound__body {
    margin-top: 2rem;
    margin: auto;
  }
}

.notfound__img {
  height: 19rem;
  width: 19rem;
  margin: 0 auto;
}
@media only screen and (min-width: 411px) {
  .notfound__img {
    width: 21.4rem;
    height: 21.4rem;
  }
}

.settings__container {
  max-width: 72rem;
  margin: 0 auto;
  width: 100%;
}

.settings__h3 {
  margin: 0 0 2.5rem 0;
  font-size: 2.4rem;
  font-weight: 800;
}
@media only screen and (min-width: 1280px) {
  .settings__h3 {
    margin-bottom: 4rem;
  }
}

.settings-form--container {
  min-height: 40rem;
  background-color: white;
  border-radius: 1.5rem 1.5rem 0 0;
  margin-top: 4rem;
}
@media only screen and (min-width: 1280px) {
  .settings-form--container {
    display: flex;
    flex-direction: column;
    width: 42rem;
    padding: 0;
  }
}

.ellipsies {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.mb-0 {
  margin-bottom: 0rem;
}

.mb-0_5 {
  margin-bottom: 0.5rem;
}

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

.mb-1_5 {
  margin-bottom: 1.5rem;
}

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

.mb-2_5 {
  margin-bottom: 2.5rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mb-5 {
  margin-bottom: 5rem;
}

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

.mt-1_5 {
  margin-top: 1.5rem;
}

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

.mt-2_5 {
  margin-top: 2.5rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mt-4_5 {
  margin-top: 4.5rem;
}

.mt-5 {
  margin-top: 5rem;
}

.mr-0_5 {
  margin-right: 0.5rem;
}

.mr-1_5 {
  margin-right: 1.5rem;
}

.mr-2_5 {
  margin-right: 2.5rem;
}

.ml-1 {
  margin-left: 1rem;
}

.ml-1_5 {
  margin-left: 1.5rem;
}

.ml-2 {
  margin-left: 2rem;
}

.mt-auto {
  margin-top: auto;
}

.ml-auto {
  margin-left: auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.pl-0 {
  padding-left: 0;
}

.pt-5 {
  padding-top: 5rem;
}

.flex {
  display: flex;
}

.flex-row {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.flex-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flex-start {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

.flex-center {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.space-between {
  justify-content: space-between;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.link--clean {
  text-decoration: none;
  color: #020201;
}

.ph-2 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.align-self-end {
  align-self: flex-end;
}

.text-center {
  text-align: center;
}

.text-normal {
  text-transform: unset;
}

.invisible {
  visibility: hidden;
}

.none {
  display: none;
}

.pointer {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.unselectable {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.overflow-hidden {
  overflow: hidden;
}

.justify-center {
  justify-content: center;
}

.flex-center-column {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.flex-start {
  justify-content: flex-start;
}

.row-reverse {
  flex-direction: row-reverse;
}

.uppercase {
  text-transform: uppercase;
}

.separator-short {
  border-style: solid;
  border: none;
  border-bottom: 0.05rem solid var(--dark-blue);
}

.img {
  width: 100%;
}

.h100 {
  height: 100%;
}

.w-100 {
  width: 100%;
}

.round {
  border-radius: 50%;
}

.z-1 {
  z-index: 1;
}

.opacity-1 {
  opacity: 1;
}

.margin-0_5 {
  margin: 0.5rem;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-bold {
  font-weight: bold;
}

.text-italic {
  font-style: italic;
}

.font-size-1_2 {
  font-size: 1.2rem !important;
}

.pre {
  white-space: pre;
}

.primary-color {
  color: #00214D;
}
.container[data-v-775951ab] {
  display: flex;
  min-height: 100vh;
  justify-content: space-between;
  flex-direction: column;
  padding: calc(var(--mobile-nav-height) + 0.5rem) 3rem 3rem;
}
@media only screen and (min-width: 1280px) {
.container[data-v-775951ab] {
    padding-top: calc(var(--desktop-nav-height) + 0.5rem);
}
}
.main-layout[data-v-775951ab] {
  min-height: 100vh;
  background: #ffffff;
}
@media only screen and (min-width: 1280px) {
.footer-backward[data-v-775951ab] {
    margin: 7rem -3rem -3rem;
}
}
.container[data-v-53695c0e] {
  display: flex;
  height: 100vh;
  padding: calc(var(--mobile-nav-height) + 0.5rem) 3rem 3rem;
}
@media only screen and (min-width: 1280px) {
.container[data-v-53695c0e] {
    min-height: 100vh;
    height: unset;
    padding-top: calc(var(--desktop-nav-height) + 0.5rem);
}
}
.main-layout[data-v-53695c0e] {
  min-height: 100vh;
  background: #FFFFFF;
}
.container[data-v-06bc2b2d] {
  padding: calc(var(--mobile-nav-height) + 0.5rem) 3rem 3rem;
}
@media only screen and (min-width: 1280px) {
.container[data-v-06bc2b2d] {
    padding-top: calc(var(--desktop-nav-height) + 0.5rem);
}
}
.main-layout[data-v-06bc2b2d] {
  min-height: 100vh;
}
.main-container[data-v-06bc2b2d] {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.wide-layout[data-v-b537b4d2] {
  min-height: 100vh;
}

.modal[data-v-53ab54d2] {
  overflow-x: hidden;
  overflow-y: auto;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9;
}
.modal__backdrop[data-v-53ab54d2] {
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.modal__dialog[data-v-53ab54d2] {
  background-color: #ffffff;
  position: relative;
  width: 90%;
  margin: 5rem auto;
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  z-index: 2;
}
@media only screen and (min-width: 1280px) {
.modal__dialog[data-v-53ab54d2] {
    max-width: 108rem;
}
}
.modal__dialog--small[data-v-53ab54d2] {
  max-width: 48rem;
}
.modal__dialog--medium[data-v-53ab54d2] {
  max-width: 72rem;
}
.modal__close[data-v-53ab54d2] {
  position: relative;
  bottom: 1.5rem;
  width: 3rem;
  height: 3rem;
  color: #9D9D9D;
}
.modal__header[data-v-53ab54d2] {
  padding: 3.4rem 2rem 1rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.modal__body[data-v-53ab54d2] {
  padding: 1rem 2rem 1rem;
  overflow: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.modal__footer[data-v-53ab54d2] {
  padding: 1rem 2rem 2.6rem;
  display: flex;
}
.fade-enter-active[data-v-53ab54d2],
.fade-leave-active[data-v-53ab54d2] {
  transition: opacity 0.2s;
}
.fade-enter[data-v-53ab54d2],
.fade-leave-to[data-v-53ab54d2] {
  opacity: 0;
}
.backwards[data-v-b3c5cf30] {
  margin: -6rem -3rem -3rem;
}
@media only screen and (min-width: 1280px) {
.backwards[data-v-b3c5cf30] {
    margin-top: calc(-1 * var(--desktop-nav-height));
}
}

.month-picker__container {
    width: 400px;
    position: relative;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}
.month-picker__container.year-picker {
    width: 20rem;
}
.month-picker {
    box-sizing: border-box;
    flex: 1;
    width: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.1);
    font-family: sans-serif;
    border-radius: 5px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
.month-picker__year {
    padding: 0.2rem;
    background-color: #fcfcfc;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}
.month-picker__year p {
    width: 100%;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 1.2rem;
    margin: 1rem 0;
}
.month-picker__year input {
    padding: 0;
    font-weight: 600;
    border-radius: 5px 5px 0 0;
    outline: none;
    border: none;
    font-size: 1.2rem;
    width: auto;
    text-align: center;
    box-sizing: border-box;
    width: 100%;
    height: 3.5rem;
    position: relative;
    z-index: 1;
}
.month-picker__year input:focus {
    border: 1px solid #55b0f2;
}
.month-picker__year div,
.month-picker__year button,
.month-picker__year p {
    text-align: center;
    flex: 1;
}
.month-picker__year button {
    background-color: #f4f4f4;
    position: absolute;
    width: 5rem;
    height: 2.75rem;
    font-size: 2rem;
    border-radius: 5px;
    outline: none;
    border: 0;
    top: 0.5rem;
    border: 1px solid #e8e8e8;
    z-index: 2;
    color: #686868;
}
.month-picker__year button:hover {
    background-color: rgba(0, 0, 0, 0.025);
}
.month-picker__year button:active {
    background-color: rgba(0, 0, 0, 0.04);
}
.month-picker__year button:first-child {
    left: 10px;
}
.month-picker__year button:last-child {
    right: 10px;
}
.month-picker__month {
    padding: 0.85rem 0.25rem;
    flex-basis: calc(33.333% - 10px);
    padding: 0.75rem 0.25rem;
    cursor: pointer;
    text-align: center;
    border: 1px solid rgba(245, 245, 245, 0.75);
    transition: all 250ms cubic-bezier(0.165, 0.84, 0.44, 1);
    background-color: #fefefe;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    position: relative;
}
.month-picker__month:hover::after {
    display: block;
    content: '';
    position: absolute;
    width: 95%;
    height: 95%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
}
.month-picker__month.selected,
.month-picker__month.selected-range-first,
.month-picker__month.selected-range-second {
    background-color: #55b0f2;
    color: #ffffff;
    border-radius: 5px;
    box-shadow: inset 0 0 3px #3490d2, 0px 2px 5px rgba(85, 176, 242, 0.2);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}
.month-picker__month.selected-range-first,
.month-picker__month.selected-range-second {
    border-color: transparent;
}
.month-picker__month.selected-range {
    background-color: #7eb9e2;
    color: #ffffff;
    border-color: transparent;
}
.month-picker__month.inactive {
    background-color: #f0f0f0;
    color: #8a8a8a;
    cursor: not-allowed;
    box-shadow: none;
    text-shadow: none;
}
.month-picker__month.inactive:hover {
    box-shadow: none;
}

/* Dark threme */
.month-picker--dark {
    background-color: #5f5f5f;
}
.month-picker--dark .month-picker__year {
    background-color: #2f2f30;
}
.month-picker--dark .month-picker__year p,
.month-picker--dark .month-picker__year input {
    color: #ebebeb;
}
.month-picker--dark .month-picker__year input {
    background-color: #5f5f5f;
}
.month-picker--dark .month-picker__year button {
    background-color: #505050;
    color: #c9c9c9;
    border-color: #1e1e1e;
}
.month-picker--dark .month-picker__year button:hover {
    background-color: rgba(0, 0, 0, 0.3);
}
.month-picker--dark .month-picker__year button:active {
    background-color: rgba(0, 0, 0, 0.6);
}
.month-picker--dark .month-picker__month {
    background-color: #2f2f30;
    border-color: rgba(245, 245, 245, 0.15);
    color: #c9c9c9;
}
.month-picker--dark .month-picker__month.selected,
.month-picker--dark .month-picker__month.selected-range-first,
.month-picker--dark .month-picker__month.selected-range-second {
    background-color: #505050;
    box-shadow: inset 0 0 3px #505050, 0px 2px 5px #505050;
    color: #ffffff;
    border-color: #1d1b1b;
}
.month-picker--dark .month-picker__month.selected-range {
    background-color: #636363;
    color: #ffffff;
    border-color: transparent;
}
.month-picker--dark .month-picker__month:hover {
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
    z-index: 10;
}
.month-picker--dark .month-picker__month.inactive {
    background-color: #3f3f3f;
    color: #8a8a8a;
    cursor: not-allowed;
    box-shadow: none;
    text-shadow: none;
}
@media only screen and (max-width: 768px) {
.month-picker__container {
        width: 100%;
}
}


.month-picker-input-container[data-v-201d773d] {
    position: relative;
    width: 180px;
    min-width: 140px;
}
.month-picker-input[data-v-201d773d] {
    padding: 1em 1.5em;
    font-size: 0.85em;
    border-radius: 5px;
    outline: none;
    border: 1px solid rgba(0, 0, 0, 0.15);
    transition: all 350ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.month-picker-input[data-v-201d773d]:focus {
    border-color: rgba(0, 0, 0, 0.25);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.month-picker__container[data-v-201d773d] {
    position: absolute;
    top: 3.5em;
}

