/* [project]/app/src/components/layout/PageLayout/styles.css [app-client] (css) */
.page {
  background: #efefef;
  justify-content: center;
  display: flex;
  position: relative;
}

.page__content {
  flex-direction: row;
  justify-content: space-between;
  min-height: 500px;
  margin-top: 15px;
  display: flex;
}

.page__panels {
  width: calc(100% - 300px);
  max-width: 895px;
  margin: 0 10px 15px 0;
}

.page__panels--fullwidth {
  width: 100%;
  margin-bottom: 25px;
}

.page__sidebar {
  width: 300px;
}

.page__description {
  position: relative;
}

.page__subtitle {
  color: #27282d;
  margin: 0 0 15px;
  font-family: Poppins, sans-serif;
  font-size: 1.714rem;
  font-weight: 400;
  line-height: 1.2;
}

.page__fullwidth-content {
  background: #fff;
  width: 100%;
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
  .page__panels {
    width: calc(100% - 290px);
    margin: 0 20px 0 0;
  }

  .page__sidebar {
    width: 270px;
  }
}

@media screen and (max-width: 767px) {
  .page {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .page__content {
    flex-direction: column;
    order: 2;
    margin-top: 0;
  }

  .page__panels {
    width: 100%;
    margin: 0 0 15px;
  }

  .page__sidebar {
    order: 1;
    width: 100%;
    margin: 0;
  }

  .page__description {
    padding: 15px 15px 0;
  }
}

/* [project]/app/src/components/profile/profile-block.css [app-client] (css) */
.profile-block {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 2px #0000000d;
}

.profile-block__inner {
  padding: 16px;
}

.profile-block__title {
  color: #27282d;
  margin-bottom: 8px;
  font-size: 1.125rem;
  font-weight: 600;
}

.profile-block__content {
  color: #4b5563;
  white-space: pre-wrap;
  line-height: 1.6;
}

.profile-block__link {
  color: #2563eb;
  cursor: pointer;
  background: none;
  border: none;
  margin-top: 8px;
  padding: 0;
  font-size: .875rem;
  font-weight: 500;
}

.profile-block__link:hover {
  text-decoration: underline;
}

.profile-header {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 2px #0000000d;
}

.profile-header__cover {
  background: linear-gradient(to right, #3b82f6, #4f46e5);
  height: 128px;
}

.profile-header__body {
  padding: 24px;
}

.profile-header__top {
  justify-content: space-between;
  align-items: flex-end;
  margin-top: -48px;
  margin-bottom: 16px;
  display: flex;
  position: relative;
}

.profile-header__avatar {
  background: #fff;
  border: 4px solid #fff;
  border-radius: 50%;
  width: 128px;
  height: 128px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px #0000001a;
}

.profile-header__avatar img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.profile-header__avatar-initial {
  color: #9ca3af;
  background: #f3f4f6;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 2.25rem;
  font-weight: 700;
  display: flex;
}

.profile-header__actions {
  gap: 8px;
  margin-bottom: 8px;
  display: flex;
}

.profile-header__btn {
  cursor: pointer;
  border: none;
  border-radius: 6px;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: .875rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color .2s, color .2s;
  display: inline-flex;
}

.profile-header__btn--primary {
  color: #fff;
  background: #2563eb;
  border: 1px solid #0000;
}

.profile-header__btn--primary:hover {
  background: #1d4ed8;
}

.profile-header__btn--secondary {
  color: #374151;
  background: #fff;
  border: 1px solid #d1d5db;
}

.profile-header__btn--secondary:hover {
  background: #f9fafb;
}

.profile-header__name {
  color: #27282d;
  margin-bottom: 4px;
  font-size: 1.5rem;
  font-weight: 700;
}

.profile-header__position {
  color: #374151;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-weight: 500;
  display: flex;
}

.profile-header__position svg {
  color: #9ca3af;
  flex-shrink: 0;
}

.profile-header__meta {
  color: #6b7280;
  flex-wrap: wrap;
  gap: 16px;
  font-size: .875rem;
  display: flex;
}

.profile-header__meta-item {
  align-items: center;
  gap: 6px;
  display: flex;
}

.profile-header__meta-item svg {
  color: #9ca3af;
  flex-shrink: 0;
}

.profile-header__meta-item a {
  color: #2563eb;
  text-decoration: none;
}

.profile-header__meta-item a:hover {
  text-decoration: underline;
}

/* [project]/app/src/components/profile/ProfileEducation/styles.css [app-client] (css) */
.profile-item-education__section-title {
  color: #27282d;
  margin-bottom: 12px;
  font-size: 1.125rem;
  font-weight: 600;
}

.profile-item-education {
  text-align: left;
  position: relative;
}

.profile-item-education + .profile-item-education {
  border-top: 2px solid #e2e2e2;
  padding-top: 0;
}

.profile-item-education__header {
  margin: 20px 0;
  display: flex;
}

.profile-item-education__controls {
  flex-direction: column;
  align-items: flex-end;
  margin-left: auto;
  display: flex;
}

.profile-item-education__control .profile-item-education__control + .profile-item-education__control {
  margin-left: 21px;
}

.profile-item-education__school-name {
  margin: 0;
  font-family: Poppins, sans-serif;
  font-size: 1.143rem;
  font-weight: 500;
}

.profile-item-education__type {
  color: #27282d;
  font-family: var(--font-family);
  margin: 0 0 5px;
  font-size: .9286rem;
  font-weight: 400;
  display: flex;
}

.profile-item-education__dates {
  color: #666;
  font-family: var(--font-family);
  margin: 0;
  font-size: .9286rem;
  font-weight: 400;
  display: flex;
}

.profile-item-education__additional {
  padding-top: 25px;
}

.profile-item-education__recommendations {
  margin: 25px 0;
}

.profile-item-education__additional-controls {
  justify-content: flex-end;
  display: flex;
}

.profile-item-education__description {
  text-align: left;
  white-space: pre-wrap;
  margin: 20px 0;
}

@media screen and (max-width: 1000px) {
  .profile-item-education__header {
    flex-direction: column;
  }

  .profile-item-education__controls {
    margin-top: 10px;
    margin-bottom: 15px;
    margin-left: 0;
  }
}

/* [project]/app/src/components/profile/ProfileReferences/styles.css [app-client] (css) */
.profile-item-reference {
  width: 50%;
  margin-top: 10px;
  padding-bottom: 25px;
  display: flex;
  position: relative;
}

.profile-item-reference:nth-child(odd) {
  border-right: 1px solid #e2e2e2;
  padding-right: 30px;
}

.profile-item-reference:nth-child(2n) {
  padding-left: 30px;
}

.profile-item-reference__content {
  text-align: left;
  flex-direction: column;
  flex: auto;
  display: flex;
}

.profile-item-reference__name {
  word-break: break-word;
  font-family: var(--font-family);
  margin: 5px 10px 0 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.profile-item-reference__field {
  margin-bottom: 5px;
}

.profile-item-reference__link {
  word-break: break-word;
  width: auto;
  display: inline-block;
}

.profile-item-reference:only-child {
  border: none;
  padding: 0 0 15px;
}

@media screen and (max-width: 480px) {
  .profile-item-reference {
    border-right: none;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

/* [project]/app/src/components/profile/ProfileAptitudeTests/styles.css [app-client] (css) */
.profile-item-test-result {
  flex-flow: column wrap;
  align-items: flex-start;
  padding: 15px 0;
  font-size: 1rem;
  font-weight: 900;
  display: flex;
  position: relative;
}

.profile-item-test-result ~ .profile-item-test-result {
  margin-left: 30px;
  padding-left: 30px;
}

.profile-item-test-result ~ .profile-item-test-result:after {
  content: "";
  background: #d5d5d5;
  width: 1px;
  height: 70px;
  position: absolute;
  top: 18px;
  left: 0;
}

.profile-item-test-result__text {
  margin-left: .5em;
  font-weight: 400;
}

.profile-item-test-result__text--message {
  text-align: left;
  max-width: 200px;
  margin-top: 2px;
  font-size: 1rem;
}

.profile-item-test-result__percentile {
  justify-content: flex-start;
  display: flex;
}

/*# sourceMappingURL=app_src_components_f5e1afdb._.css.map*/