/* [project]/app/src/app/(platform)/platform-shell.css [app-client] (css) */
.platform-shell {
  background: #efefef;
  flex-direction: column;
  min-height: 100vh;
  display: flex;
}

.platform-shell__main {
  flex: 1;
  padding: 1.5rem 1rem;
}

/* [project]/app/src/components/ui/Header/styles.module.css [app-client] (css) */
.styles-module__J942wq__header {
  background-color: hsl(var(--gbs-secondary-600));
  color: hsl(var(--gbs-default-200));
  z-index: 70;
  padding: 12px 24px;
  box-shadow: 0 1px 2px #0000000d;
}

@media screen and (max-width: 1024px) {
  .styles-module__J942wq__header {
    padding: 12px;
  }
}

.styles-module__J942wq__header__content {
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
}

.styles-module__J942wq__header__logo {
  display: block;
}

@media screen and (max-width: 460px) {
  .styles-module__J942wq__header__content {
    gap: 12px;
  }

  .styles-module__J942wq__header__logo {
    max-width: 150px;
  }
}

.styles-module__J942wq__header__logo svg {
  width: 100%;
  display: block;
}

.styles-module__J942wq__header__navigation {
  flex: 1;
}

@media screen and (max-width: 1024px) {
  .styles-module__J942wq__header__navigation {
    display: none;
  }
}

.styles-module__J942wq__header__menu {
  align-items: center;
  gap: 12px;
  display: flex;
}

@media screen and (max-width: 1024px) {
  .styles-module__J942wq__header__menu {
    flex: 1;
    justify-content: flex-end;
  }
}

.styles-module__J942wq__header__menu-trigger {
  cursor: pointer;
  background: none;
  border: none;
  border-radius: .375rem;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: background-color .25s;
  display: flex;
}

.styles-module__J942wq__header__menu-trigger:hover {
  background-color: hsl(var(--gbs-default-200) / 10%);
}

@media screen and (min-width: 1025px) {
  .styles-module__J942wq__header__menu-trigger {
    display: none;
  }
}

.styles-module__J942wq__header__search {
  max-width: 765px;
  margin: 0 auto;
  padding: 24px 0 12px;
}

.styles-module__J942wq__navigation-pane .styles-module__J942wq__pane__content, .styles-module__J942wq__navigation-pane .styles-module__J942wq__pane__header {
  background-color: hsl(var(--gbs-secondary-600));
}

.styles-module__J942wq__navigation-pane .styles-module__J942wq__pane__close {
  color: hsl(var(--gbs-default-200));
}

.styles-module__J942wq__header .styles-module__J942wq__react-autosuggest__suggestions-container--open {
  background: hsl(var(--gbs-secondary-500));
  box-shadow: 0 4px 6px -1px hsl(var(--gbs-secondary-400) / 30%), 0 2px 4px -2px hsl(var(--gbs-secondary-400) / 30%);
  border: none;
  border-radius: 14px;
}

.styles-module__J942wq__header .styles-module__J942wq__react-autosuggest__suggestion--highlighted {
  color: #fff;
  background-color: hsl(var(--gbs-default-200) / 10%);
}

/* [project]/app/src/components/GbsUI/UI/Pane.css [app-client] (css) */
.pane-overlay {
  z-index: 40;
  background: #00000080;
  position: fixed;
  inset: 0;
}

.pane-panel {
  z-index: 50;
  background: #fff;
  border: 1px solid #d5d5d5;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  box-shadow: 0 25px 50px -12px #00000040;
}

.pane-panel--left {
  left: 0;
}

.pane-panel--right {
  right: 0;
}

.pane-panel--sm {
  max-width: 24rem;
}

.pane-panel--md {
  max-width: 28rem;
}

.pane-panel__inner {
  flex-direction: column;
  height: 100%;
  padding: 1rem;
  display: flex;
}

/* [project]/app/src/components/search/GlobalSearch/styles.css [app-client] (css) */
.global-search {
  background-color: hsl(var(--gbs-default-200) / 10%);
  width: 100%;
  color: hsl(var(--gbs-default-200));
  display: flex;
  position: relative;
}

.global-search__form {
  border: 1px solid hsl(var(--gbs-default-200));
  border-radius: .375rem;
  width: 100%;
  height: 42px;
  transition: border-color .2s;
  display: flex;
}

.global-search__form:focus-within {
  border-color: #f40;
}

.global-search__select {
  flex: 205px;
  min-width: 205px;
  position: relative;
}

.global-search__select:after {
  content: "";
  background: #e4e4e7;
  width: 1px;
  height: 30px;
  display: inline-block;
  position: absolute;
  top: 5px;
  right: 0;
}

.global-search__select-btn {
  width: 100%;
  height: 100%;
  color: inherit;
  cursor: pointer;
  background: none;
  border: none;
  align-items: center;
  gap: .25rem;
  padding: 0 .75rem;
  font-size: .875rem;
  font-weight: 500;
  display: flex;
}

.global-search__select-btn:hover {
  color: #fff;
}

.global-search__select-menu {
  z-index: 100;
  background: #fff;
  border: 1px solid #d5d5d5;
  border-radius: .375rem;
  min-width: 8rem;
  margin-top: .25rem;
  padding: .25rem 0;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  box-shadow: 0 4px 6px -1px #0000001a;
}

.global-search__select--open .global-search__select-menu {
  display: block;
}

.global-search__select-option {
  color: #27282d;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  padding: .5rem 1rem;
  font-size: .875rem;
  display: block;
}

.global-search__select-option:hover {
  background: #f8f8f8;
}

.global-search__input {
  flex: 1;
  align-items: center;
  padding: 0 0 0 .75rem;
  display: flex;
  position: relative;
}

.global-search__btn {
  min-width: 40px;
  height: 100%;
  color: inherit;
  cursor: pointer;
  background: none;
  border: none;
  justify-content: center;
  align-items: center;
  padding: 0;
  transition: color .3s;
  display: flex;
  position: relative;
}

.global-search__btn:hover, .global-search__btn:focus, .global-search__btn:active {
  color: hsl(var(--gbs-primary-300));
}

.global-search__btn-icon {
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  display: flex;
}

.global-search__input-field {
  min-width: 0;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  flex: 1;
  padding: .5rem;
  font-size: .875rem;
}

.global-search__input-field::placeholder {
  color: hsl(var(--gbs-secondary-200));
}

.global-search__input-clear {
  color: inherit;
  opacity: .8;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 9999px;
  justify-content: center;
  align-items: center;
  padding: .25rem;
  display: flex;
}

.global-search__input-clear:hover {
  background: hsl(var(--gbs-default-200) / 20%);
  opacity: 1;
}

.global-search__input-icon {
  color: inherit;
  flex-shrink: 0;
  align-items: center;
  font-size: 1.25rem;
  display: flex;
}

.global-search__results {
  z-index: 100;
  background: #fff;
  border: 1px solid #d5d5d5;
  border-radius: .5rem;
  max-height: 24rem;
  margin-top: .5rem;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow-y: auto;
  box-shadow: 0 10px 15px -3px #0000001a;
}

.global-search__results-loading {
  color: #666;
  justify-content: center;
  padding: 1rem;
  display: flex;
}

.global-search__results-loading svg {
  animation: 1s linear infinite global-search-spin;
}

@keyframes global-search-spin {
  to {
    transform: rotate(360deg);
  }
}

.global-search__results-empty {
  color: #666;
  text-align: center;
  padding: 1rem;
  font-size: .875rem;
}

.global-search__results-group {
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #666;
  background: #f8f8f8;
  padding: .25rem 1rem;
  font-size: .75rem;
  font-weight: 600;
}

.global-search__results-item {
  color: #27282d;
  width: 100%;
  font-size: inherit;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  align-items: center;
  gap: .75rem;
  padding: .5rem 1rem;
  transition: background .15s;
  display: flex;
}

.global-search__results-item:hover {
  background: hsl(var(--gbs-primary-50));
}

.global-search__results-item-avatar {
  object-fit: cover;
  background: #e5e7eb;
  border-radius: 9999px;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
}

.global-search__results-item-name {
  font-size: .875rem;
  font-weight: 500;
}

.global-search__results-item-desc {
  color: #666;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: .75rem;
  overflow: hidden;
}

@media screen and (min-width: 1100px) and (max-width: 1199px) {
  .global-search__select {
    min-width: 145px;
  }
}

@media screen and (max-width: 480px) {
  .global-search__form {
    flex-direction: column;
    height: auto;
    min-height: 90px;
  }
}

/* [project]/app/src/components/ui/Header/components/Navigation/styles.module.css [app-client] (css) */
.styles-module__GFdnya__navigation__list {
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.styles-module__GFdnya__navigation__list details {
  width: 100%;
}

.styles-module__GFdnya__navigation__list details[open] > summary > .styles-module__GFdnya__navigation__item > svg {
  transform: rotate(180deg);
}

.styles-module__GFdnya__navigation__list summary {
  width: 100%;
  font-weight: 600;
  display: flex;
}

.styles-module__GFdnya__navigation__list summary .styles-module__GFdnya__navigation__item {
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .styles-module__GFdnya__navigation__list {
    flex-direction: column;
  }

  .styles-module__GFdnya__navigation__list > .styles-module__GFdnya__navigation__list-item > .styles-module__GFdnya__navigation__item {
    font-weight: 600;
  }
}

.styles-module__GFdnya__navigation__list-item {
  position: relative;
}

.styles-module__GFdnya__navigation__item {
  color: hsl(var(--gbs-default-200));
  cursor: pointer;
  border-radius: .375rem;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  text-decoration: none;
  transition: background-color .25s;
  display: flex;
}

@media screen and (max-width: 1140px) {
  .styles-module__GFdnya__navigation__item {
    padding: 6px 10px;
  }
}

@media screen and (max-width: 1025px) {
  .styles-module__GFdnya__navigation__item {
    justify-content: space-between;
  }
}

.styles-module__GFdnya__navigation__item:hover, .styles-module__GFdnya__navigation__item.styles-module__GFdnya__active {
  background-color: hsl(var(--gbs-default-200) / 10%);
}

.styles-module__GFdnya__navigation__sub-list {
  flex-direction: column;
  gap: 6px;
  margin: 0;
  list-style: none;
  display: flex;
}

@media screen and (min-width: 1025px) {
  .styles-module__GFdnya__navigation__sub-list {
    background: hsl(var(--gbs-secondary-500));
    z-index: 5;
    width: 220px;
    box-shadow: 0 4px 6px -1px hsl(var(--gbs-secondary-400) / 30%), 0 2px 4px -2px hsl(var(--gbs-secondary-400) / 30%);
    border-radius: 14px;
    padding: 10px 8px 8px;
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(100%);
  }

  .styles-module__GFdnya__navigation__sub-list .styles-module__GFdnya__navigation__item {
    padding: 6px 8px;
  }

  .styles-module__GFdnya__navigation__list-item:hover > .styles-module__GFdnya__navigation__sub-list, .styles-module__GFdnya__navigation__list-item .styles-module__GFdnya__navigation__item:focus:focus-visible + .styles-module__GFdnya__navigation__sub-list {
    display: flex;
  }
}

@media screen and (max-width: 1025px) {
  .styles-module__GFdnya__navigation__sub-list {
    padding: 8px;
  }
}

/* [project]/app/src/components/layout/footer-layout.css [app-client] (css) */
.footer {
  background-color: hsl(var(--gbs-secondary-600, 220 15% 18%));
  justify-content: center;
  width: 100%;
  padding: 35px 0 25px;
  display: flex;
  position: relative;
}

.footer .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer__top {
  flex-flow: row;
  justify-content: space-between;
  margin-bottom: 30px;
  display: flex;
}

.footer__company-info {
  flex-direction: column;
  padding-right: 150px;
  display: flex;
  position: relative;
}

.footer__company-info:after {
  content: "";
  background: #4b4c4f;
  width: 1px;
  height: 185px;
  display: inline-block;
  position: absolute;
  top: 0;
  right: 50px;
}

.footer__logo {
  margin-bottom: 25px;
  text-decoration: none;
}

.footer__logo-img {
  width: 100%;
  max-width: 200px;
  height: auto;
  max-height: 64px;
}

.footer__link {
  color: #a0a0a0;
  width: 100%;
  height: 20px;
  font-family: var(--font-family);
  margin-bottom: 15px;
  padding-left: 38px;
  font-size: .9286rem;
  text-decoration: none;
  transition: color .3s;
  display: inline-block;
  position: relative;
}

.footer__link + .footer__link {
  margin-bottom: 30px;
}

.footer__link:hover, .footer__link:focus, .footer__link:active, .footer__nav-link:hover, .footer__nav-link:focus, .footer__nav-link:active, .footer__legal-link:hover, .footer__legal-link:focus, .footer__legal-link:active {
  color: #f40;
}

.footer__link span {
  justify-content: center;
  align-self: center;
  width: 20px;
  height: 20px;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.footer__icon {
  width: 20px;
  height: auto;
}

.footer__bottom {
  flex-direction: row;
  justify-content: space-between;
  padding: 30px 0 0;
  display: flex;
  position: relative;
}

.footer__bottom:before {
  content: "";
  background: #4b4c4f;
  width: 100%;
  height: 1px;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

.footer__navs {
  flex-direction: row;
  flex: auto;
  justify-content: space-between;
  display: flex;
}

.footer__nav {
  flex: auto;
}

.footer__nav-title {
  color: #fff;
  margin-top: 0;
  font-family: Poppins, sans-serif;
  font-size: 1.286rem;
  font-weight: 500;
}

.footer__nav-list {
  color: #fff;
  padding-left: 0;
  list-style: none;
}

.footer__nav-item {
  margin: 10px 0;
}

.footer__nav-link {
  color: #a0a0a0;
  font-family: var(--font-family);
  font-size: .9286rem;
  text-decoration: none;
  transition: color .3s;
}

.footer__legal-link {
  color: #a0a0a0;
  font-family: Poppins, sans-serif;
  font-size: .8571rem;
  text-decoration: none;
  transition: color .3s;
}

.footer__legal-link + .footer__legal-link {
  margin-left: 20px;
}

.footer__legal-link + .footer__legal-link:before {
  content: "/";
  color: #a0a0a0;
  position: relative;
  left: -10px;
}

.footer__copyright {
  color: #a0a0a0;
  font-family: Poppins, sans-serif;
  font-size: .8571rem;
  font-weight: 300;
}

.footer__icon-links {
  margin: 0 25px;
  display: inline-block;
}

.footer__icon-link {
  vertical-align: middle;
  color: #636366;
  width: 20px;
  font-size: 1.143rem;
  text-decoration: none;
  transition: color .3s;
  display: inline-block;
  position: relative;
  bottom: 2px;
}

.footer__icon-link:hover, .footer__icon-link:focus, .footer__icon-link:active {
  color: #f40;
}

.footer__icon-link--linkedin {
  margin-right: 10px;
}

.footer__icon-link--envelope:before {
  position: relative;
  top: 2px;
}

@media screen and (max-width: 991px) {
  .footer__company-info {
    padding-right: 75px;
  }
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 30px 20px;
  }

  .footer__company-info {
    margin-right: 25px;
    padding-right: 25px;
  }

  .footer__company-info:after {
    right: 0;
  }

  .footer__top {
    flex-direction: row;
  }

  .footer__nav-title {
    margin-top: 15px;
    font-size: .9286rem;
  }

  .footer__nav-item {
    margin: 5px 0;
  }

  .footer__nav-link {
    font-size: .9286rem;
  }

  .footer__navs {
    justify-content: center;
    width: 100%;
    margin-top: 0;
    padding-top: 0;
    position: relative;
  }

  .footer__logo-img {
    max-width: 195px;
  }
}

@media screen and (max-width: 640px) {
  .footer__top {
    flex-direction: column;
  }

  .footer__navs {
    justify-content: center;
    width: 100%;
    margin-top: 30px;
    padding-top: 5px;
    position: relative;
  }

  .footer__navs:before {
    content: "";
    background: #4b4c4f;
    width: 100%;
    height: 1px;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
  }

  .footer__company-info {
    padding-right: 0;
  }

  .footer__company-info:after {
    display: none;
  }

  .footer__bottom {
    flex-direction: column;
  }
}

@media screen and (max-width: 480px) {
  .footer__navs {
    flex-direction: column;
    justify-content: center;
    width: 100%;
    margin-top: 15px;
  }

  .footer__nav-title {
    margin-top: 15px;
    margin-bottom: 0;
    font-size: 1.143rem;
  }

  .footer__nav-item {
    margin: 10px 0;
  }

  .footer__nav-link {
    font-size: .9286rem;
  }

  .footer__icon-links {
    margin: 0 15px;
  }
}

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