/* [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/features/dashboard/components/FeedPostForm/styles.css [app-client] (css) */
.new-feed-post {
  justify-content: space-between;
  width: 100%;
  margin-bottom: 10px;
  display: flex;
}

.new-feed-post__container {
  background: #fff;
  border: 1px solid #d5d5d5;
  width: 100%;
  max-width: 815px;
  padding: 20px;
  position: relative;
  box-shadow: 0 0 32px #0000000d;
}

.new-feed-post__container:before, .new-feed-post__container:after {
  content: "";
  border-top: 9px solid #0000;
  border-bottom: 9px solid #0000;
  margin-left: 1px;
  position: absolute;
  top: 72px;
  left: -12px;
}

.new-feed-post__container:before {
  border-right: 12px solid #d5d5d5;
  left: -14px;
}

.new-feed-post__container:after {
  z-index: 1;
  border-right: 12px solid #fff;
}

.new-feed-post__avatar {
  flex-direction: column;
  justify-content: flex-start;
  margin-right: 12px;
  padding-top: 55px;
  display: flex;
  position: relative;
}

.new-feed-post__label {
  color: #27282d;
  min-width: 80px;
  margin-right: 15px;
  font-size: .9286rem;
  font-weight: 600;
  display: inline-block;
}

.new-feed-post__content {
  text-align: left;
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.new-feed-post__controls {
  justify-content: space-between;
  align-items: center;
  margin-top: .75rem;
  display: flex;
}

.new-feed-post__sharing-options {
  color: #27282d;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  font-size: .9286rem;
  display: flex;
  position: relative;
}

.new-feed-post textarea {
  resize: vertical;
  width: 100%;
  font-size: 1rem;
  font-family: var(--font-family);
  color: #27282d;
  background: #f8f8f8;
  border: 1px solid #d9d9d9;
  padding: 8px 45px 3px 20px;
  overflow-y: scroll;
}

.new-feed-post textarea::placeholder {
  color: #666;
  font-family: var(--font-family);
  font-size: 1rem;
}

.new-feed-post .new-feed-post__submit-btn {
  color: #fff;
  cursor: pointer;
  background: #f40;
  border: 1px solid #f40;
  min-width: 120px;
  min-height: 35px;
  padding: 0 1rem;
  font-family: Poppins, sans-serif;
  font-size: .8571rem;
  font-weight: 600;
}

.new-feed-post .new-feed-post__submit-btn:disabled {
  color: #f40;
  cursor: not-allowed;
  background: #fff;
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
  .new-feed-post__controls {
    flex-direction: column;
  }

  .new-feed-post__sharing-options {
    margin-bottom: 15px;
  }

  .new-feed-post .new-feed-post__submit-btn {
    justify-content: flex-end;
    width: 100%;
    display: flex;
  }
}

@media screen and (max-width: 767px) {
  .new-feed-post__avatar, .new-feed-post__container:before, .new-feed-post__container:after {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .new-feed-post__controls {
    flex-direction: column;
  }

  .new-feed-post__sharing-options {
    margin-bottom: 15px;
  }

  .new-feed-post .new-feed-post__submit-btn {
    justify-content: flex-end;
    width: 100%;
    display: flex;
  }
}

/* [project]/app/src/features/dashboard/components/FeedList/styles.css [app-client] (css) */
.list {
  position: relative;
}

.list__control {
  justify-content: center;
  align-items: center;
  margin: 52px 0 22px;
  display: flex;
}

@media screen and (max-width: 767px) {
  .list {
    margin: 0 0 15px;
  }
}

.feed-post {
  justify-content: space-between;
  width: 100%;
  margin-bottom: 10px;
  display: flex;
  position: relative;
}

.feed-post__container {
  width: 100%;
  max-width: 815px;
  display: flex;
  position: relative;
}

.feed-post__container:before, .feed-post__container:after {
  content: "";
  border-top: 9px solid #0000;
  border-bottom: 9px solid #0000;
  margin-left: 1px;
  position: absolute;
  top: 52px;
  left: -12px;
}

.feed-post__container:before {
  border-right: 12px solid #d5d5d5;
  left: -14px;
}

.feed-post__container:after {
  z-index: 1;
  border-right: 12px solid #fff;
}

.feed-post__avatar {
  background: none;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 56px;
  margin-right: 20px;
  padding-top: 35px;
  display: flex;
  position: relative;
}

.feed-post__content-wrapper {
  text-align: left;
  background: #fff;
  border: 1px solid #d5d5d5;
  flex: 1;
  min-height: 100px;
  padding: 20px 20px 15px;
  box-shadow: 0 0 32px #0000000d;
}

.feed-post__content-wrapper .feed-post__title {
  color: #27282d;
  margin: 0 0 .25rem;
  font-size: 1rem;
  font-weight: 500;
}

.feed-post__content-wrapper .feed-post__excerpt {
  color: #666;
  font-size: .9286rem;
  font-family: var(--font-family);
  margin: 0;
}

@media screen and (max-width: 767px) {
  .feed-post__avatar, .feed-post__container:before, .feed-post__container:after {
    display: none;
  }

  .feed-post__content-wrapper {
    padding: 25px 20px;
  }
}

/* [project]/app/src/features/dashboard/components/Sidebar/styles.css [app-client] (css) */
.sidebar {
  width: 300px;
  position: relative;
}

.sidebar__content ~ div:first-child {
  margin-top: 0;
}

.sidebar__panel {
  background: #fff;
  border: 1px solid #d5d5d5;
  width: 100%;
  margin-bottom: 15px;
  box-shadow: 0 0 32px #0000000d;
}

.sidebar__widget {
  background: #fff;
  border: 1px solid #d5d5d5;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  min-height: 140px;
  margin-bottom: 15px;
  padding: 20px;
  font-family: Poppins, sans-serif;
  display: flex;
  position: relative;
  box-shadow: 0 0 32px #0000000d;
}

.sidebar__block {
  text-align: left;
  position: relative;
}

.sidebar__title {
  text-align: left;
  letter-spacing: -1px;
  color: #27282d;
  margin: 0 0 15px;
  font-size: 1.429rem;
  font-weight: 400;
}

.sidebar__subtitle {
  text-align: left;
  font-family: var(--font-family);
  color: #27282d;
  margin: 0 0 15px;
  font-size: .9286rem;
}

.sidebar__button {
  margin-bottom: 3px;
}

.sidebar .add-review-button {
  color: #27282d;
  text-align: center;
  background: #fff;
  border: none;
  border-bottom: 1px solid #d5d5d5;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 52px;
  padding: 0 60px;
  font-family: icons, Poppins, sans-serif;
  font-weight: normal;
  text-decoration: none;
  transition: color .3s;
  display: flex;
  position: relative;
}

.sidebar .add-review-button:before {
  content: "";
  color: inherit;
  font-size: 1.857rem;
  font-weight: lighter;
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translate(0, -50%);
}

.sidebar .add-review-button:last-of-type {
  border-bottom: none;
}

.sidebar .add-review-button__text {
  text-transform: uppercase;
  color: inherit;
  font-family: Poppins, sans-serif;
  font-size: .8571rem;
  font-weight: 600;
}

.sidebar .add-review-button:hover:not(:disabled), .sidebar .add-review-button:focus:not(:disabled), .sidebar .add-review-button:active:not(:disabled) {
  color: #f40;
}

.sidebar .add-review-button:disabled {
  cursor: not-allowed;
  opacity: .8;
}

.sidebar .basic-button {
  color: #374151;
  cursor: not-allowed;
  text-align: center;
  width: 100%;
  font-size: .875rem;
  font-weight: 500;
  font-family: var(--font-family);
  background: #fff;
  border: 1px solid #d5d5d5;
  padding: .625rem 1rem;
  text-decoration: none;
}

.sidebar__table {
  flex-direction: column;
  align-items: flex-start;
  font-size: .8571rem;
  display: flex;
}

.sidebar__table-row {
  justify-content: space-between;
  width: 100%;
  margin: 5px 0;
  display: flex;
}

.sidebar__table-row--head {
  border-bottom: 1px solid #d5d5d5;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.sidebar__text {
  text-align: left;
  word-break: break-word;
}

@media screen and (max-width: 1000px) {
  .sidebar {
    width: 270px;
  }

  .sidebar__button {
    justify-content: center;
    display: flex;
  }

  .sidebar__panel {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    display: flex;
  }
}

@media (min-width: 768px) and (max-width: 1000px) {
  .sidebar .basic-button, .sidebar .add-review-button {
    max-width: 320px;
    width: 100% !important;
    min-width: 100% !important;
  }
}

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

  .sidebar__panel {
    padding: 25px 0;
  }

  .sidebar .basic-button, .sidebar .add-review-button {
    max-width: 320px;
    width: 100% !important;
  }

  .sidebar .add-review-button {
    border-left: 1px solid #d5d5d5;
    border-right: 1px solid #d5d5d5;
  }

  .sidebar .add-review-button:first-child {
    border-top: 1px solid #d5d5d5;
  }

  .sidebar .add-review-button:last-child {
    border-bottom: 1px solid #d5d5d5;
  }
}

/* [project]/app/src/features/dashboard/components/DiscountWidget/styles.css [app-client] (css) */
.discount-widget {
  background: #fff;
  border: 1px solid #d5d5d5;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  margin: 0 0 15px;
  padding: 20px;
  display: flex;
  position: relative;
  box-shadow: 0 0 32px #0000000d;
}

.discount-widget__title {
  text-align: left;
  letter-spacing: -1px;
  text-transform: capitalize;
  color: #27282d;
  margin: 0 0 15px;
  font-size: 1.429rem;
  font-weight: 400;
}

.discount-widget__content {
  color: #27282d;
  text-align: left;
  font-size: .9286rem;
  font-family: var(--font-family);
  margin: 0 .5em 5px 0;
  padding: 0;
}

.discount-widget__link {
  color: #f40;
  font-size: .9286rem;
  font-family: var(--font-family);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-weight: 700;
  text-decoration: underline;
  display: inline;
}

/* [project]/app/src/features/dashboard/styles/home-page.css [app-client] (css) */
.home-page {
  text-align: center;
  padding: 0 0 50px;
}

.home-page__feed {
  flex-direction: column;
  justify-content: flex-start;
  align-self: flex-start;
  height: 100%;
  display: flex;
}

.home-page__feed--controls {
  justify-content: center;
  margin-top: 10px;
  padding-left: 77px;
  display: flex;
}

.home-page__feed--loader {
  justify-content: center;
  padding-left: 55px;
  display: flex;
  position: relative;
}

.home-page__feed--empty {
  color: var(--color-text-muted, #666);
  padding: 1rem;
}

.home-page__feed--meta {
  color: var(--color-text-muted, #666);
  margin-left: .5rem;
  font-size: .9rem;
}

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

  .home-page__feed--loader, .home-page__feed--controls {
    padding-left: 0;
  }

  .home-page__feed .list {
    margin-bottom: 0;
  }
}

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