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

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

.account-layout__sidebar {
  width: 300px;
  margin: 0 10px 15px 0;
}

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

.account-layout__main--full {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .account-layout__content {
    flex-direction: column;
    margin-top: 0;
  }

  .account-layout__sidebar {
    order: 1;
    width: 100%;
    margin: 0 0 15px;
  }

  .account-layout__main {
    order: 2;
    width: 100%;
  }
}

/* [project]/app/src/components/dialog/styles.css [app-client] (css) */
.dialog-overlay {
  z-index: 50;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  display: flex;
  position: fixed;
  inset: 0;
}

.dialog-overlay__mask {
  cursor: pointer;
  background: #00000080;
  position: absolute;
  inset: 0;
}

.dialog {
  text-align: left;
  background: #fff;
  border-radius: .5rem;
  width: 100%;
  max-width: 32rem;
  padding: 1.5rem;
  position: relative;
  box-shadow: 0 25px 50px -12px #00000040;
}

.dialog--compact {
  padding: 1rem;
}

.dialog__header {
  justify-content: space-between;
  align-items: flex-start;
  gap: .5rem;
  margin-bottom: 1rem;
  display: flex;
}

.dialog__title {
  text-align: left;
  color: #27282d;
  margin: 0;
  font-family: Poppins, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
}

.dialog__close {
  color: #666;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: .25rem;
  margin-left: auto;
  padding: .25rem;
  font-size: 1.25rem;
  line-height: 1;
}

.dialog__close:hover {
  color: #374151;
  background: #f3f4f6;
}

.dialog__body {
  color: #374151;
}

.dialog__footer {
  justify-content: flex-end;
  gap: .5rem;
  margin-top: 1rem;
  display: flex;
}

.dialog__details {
  color: #666;
  margin-top: .5rem;
  padding-left: 1rem;
  font-size: .875rem;
  list-style: inside;
}

.dialog__message {
  text-align: center;
  margin: 10px 0;
  padding: 0 30px;
}

.dialog__control {
  justify-content: center;
  width: 100%;
  display: flex;
}

.dialog__error-attach, .dialog__error {
  text-align: left;
  color: red;
  width: 100%;
  padding-top: 6px;
  font-size: .8571rem;
}

.dialog__error-attach {
  margin-left: 30px;
}

.dialog__form {
  width: 100%;
  position: relative;
}

.dialog__subject, .dialog__comments {
  margin-bottom: 25px;
}

@media screen and (max-width: 767px) {
  .dialog {
    width: 100%;
  }
}

/* [project]/app/src/components/ui/BasicButton/styles.module.css [app-client] (css) */
.styles-module__pBqAiq__basic-button {
  z-index: 10;
  cursor: pointer;
  text-transform: uppercase;
  color: #27282d;
  background: none;
  border: 2px solid #f40;
  outline: 0;
  justify-content: center;
  align-items: center;
  min-width: 100px;
  margin: 0;
  padding: 0 20px;
  font-weight: 600;
  text-decoration: none;
  transition: background .3s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.styles-module__pBqAiq__basic-button__text {
  letter-spacing: -.02em;
  text-transform: uppercase;
  height: 100%;
  color: inherit;
  border-color: inherit;
  align-items: center;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  transition: color .3s;
  display: flex;
  position: relative;
}

.styles-module__pBqAiq__basic-button__icon-arrow {
  text-transform: none;
  width: 35px;
  margin-left: 15px;
  display: inline-block;
  position: relative;
}

.styles-module__pBqAiq__basic-button__icon-arrow:before {
  content: "";
  height: 100%;
  color: inherit;
  font-variant: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  speak: none;
  align-items: center;
  font-family: icons;
  font-size: 2rem;
  font-style: normal;
  font-weight: normal;
  transition: color .3s;
  display: flex;
  position: relative;
}

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