@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes shake-anim {
  0% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10%, 30% {
    -moz-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20%, 40% {
    -moz-transform: rotate(25deg) scale(1) skew(1deg);
  }
  100%, 50% {
    -moz-transform: rotate(0) scale(1) skew(1deg);
  }
}
/* Main */
:root {
  --color-main: #8c5826;
  --color-static: #00a657;
  --color-static-2: #ED8800;
  --color-red: #ec2d3f;
  --color-medium-red: #cc2c32;
  --color-dark-red: #c31829;
  --color-green: #28a745;
  --color-dark-green: #207d36;
  --color-black: #212529;
  --color-gray: #6c757d;
  --background-btn-active: #e1f1f2;
  --background-static: #00701d;
  --background-hover: #eceb1b;
  --color-hover: #ec2d3f;
  --mxh: #00701d;
  --box-bg: #F4F4F4;
}

@font-face {
  font-family: GoogleSans;
  src: url(../fonts/frontend/GoogleSans-Medium.woff), url(../fonts/frontend/GoogleSans-Medium.woff2);
  font-weight: 600;
}
@font-face {
  font-family: GoogleSans;
  src: url(../fonts/frontend/GoogleSans-Bold.woff), url(../fonts/frontend/GoogleSans-Bold.woff2);
  font-weight: bold;
}
/*@font-face {
    font-family: GoogleSans;
    src: url(../fonts/frontend/GoogleSans-Black.woff), url(../fonts/frontend/GoogleSans-Black.woff2);
    font-weight: 800;
}*/
@font-face {
  font-family: GoogleSans;
  src: url(../fonts/frontend/GoogleSans-Regular.woff), url(../fonts/frontend/GoogleSans-Regular.woff2);
  font-weight: 300;
}
@font-face {
  font-family: GoogleSans;
  src: url(../fonts/frontend/GoogleSans-Regular.woff), url(../fonts/frontend/GoogleSans-Regular.woff2);
  font-weight: normal;
}
/* Main */
body {
  font-family: GoogleSans;
  font-size: 14px;
}
body.hasbg {
  background-color: var(--background-btn-active);
}

.wrap-content {
  max-width: 1250px;
  margin: auto;
  width: calc(100% - 30px);
}

.header-bizapp {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.04);
}

.header-bizapp .wrap-content {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 4px;
  padding-bottom: 4px;
}

.header-bizapp__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.header-bizapp__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.header-bizapp__logo img {
  display: block;
  max-height: 64px;
  width: auto;
}

.header-bizapp__search {
  flex: 1 1 auto;
  min-width: 280px;
}

.header-bizapp__searchbox {
  display: flex;
  align-items: center;
  height: 40px;
  padding: 0 14px 0 16px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 999px;
  background: #f7f7f7;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.header-bizapp__searchbox i {
  color: #6c757d;
  font-size: 15px;
  flex: 0 0 auto;
}

.header-bizapp__searchbox input {
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  border: 0;
  outline: none;
  background: transparent;
  padding: 0 12px;
  font-size: 15px;
  color: #111;
}

.header-bizapp__searchbox input::-moz-placeholder {
  color: #6c757d;
}

.header-bizapp__searchbox input::placeholder {
  color: #6c757d;
}

.header-bizapp__searchbtn {
  flex: 0 0 auto;
  height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: var(--color-main);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

.header-bizapp__searchbtn:hover {
  background: var(--color-main);
}

.header-bizapp__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  margin-left: auto;
}

.header-bizapp__icon,
.menu_mobi__button,
.header-bizapp__pill,
.header-bizapp__profile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 0;
  outline: none;
  cursor: pointer;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}

.header-bizapp__icon,
.menu_mobi__button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: #111;
  border: 1px solid rgba(17, 17, 17, 0.12);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  font-size: 18px;
  flex: 0 0 auto;
}

.header-bizapp__pill {
  height: 40px;
  border-radius: 999px;
  padding: 0 18px;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
  flex: 0 0 auto;
  border: 1px solid rgba(17, 17, 17, 0.14);
}

.header-bizapp__pill--light {
  background: #fff;
  color: #111;
}

.header-bizapp__pill--light:hover {
  color: #111;
}

.header-bizapp__pill--dark {
  background: var(--background-btn-active);
  color: var(--color-main);
}

.header-bizapp__pill--dark:hover {
  color: #fff;
  background: var(--color-main);
  border-color: var(--color-main);
}

.header-bizapp__profile {
  height: 40px;
  border-radius: 999px;
  padding: 0 14px;
  background: #fff;
  color: #111;
  gap: 10px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  flex: 0 0 auto;
}

.header-bizapp__profile .fa-user-circle {
  font-size: 18px;
}

.header-bizapp__profile .fa-chevron-down {
  font-size: 12px;
}

.header-bizapp .menu_mobi {
  background: transparent;
  color: #111;
  position: static;
  top: auto;
  z-index: auto;
  border-radius: 0;
}

.header-bizapp .icon_menu_mobi {
  margin: 0;
}

.header-bizapp .menu_mobi__button:hover {
  color: #111;
}

.mmenu-hover {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.mmenu-hover > #menu {
  position: absolute;
  top: calc(100% + 10px);
  margin-top: 2px;
  left: 0;
  width: 290px;
  max-width: calc(100vw - 30px);
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  pointer-events: none;
  z-index: 1200;
}

.mmenu-hover > #menu::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.mmenu-hover:hover > #menu,
.mmenu-hover.is-open > #menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mmenu-post,
.mmenu-post ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mmenu-post > li {
  position: relative;
}

.mmenu-post > li > ul {
  position: absolute;
  top: 0;
  left: 100%;
  width: 260px;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  display: none;
  padding: 8px 0;
}

.mmenu-post > li:hover > ul {
  display: block;
}

.mmenu-post__title {
  padding: 12px 22px 12px;
  font-size: 16px;
  font-weight: 700;
  color: #222;
}

.mmenu-post__link {
  display: flex !important;
  align-items: center;
  gap: 12px;
  min-height: 32px;
  color: #666 !important;
  font-size: 14px;
  padding: 0 18px;
  text-decoration: none !important;
}

.mmenu-post__link:hover {
  background: #f7f7f7;
  color: #222 !important;
}

.mmenu-post__link.has-child::after {
  content: "\f105";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  margin-left: auto;
  color: #999;
  font-size: 13px;
}

.mmenu-post__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  color: #333;
  font-size: 21px;
}

.mmenu-post__icon img {
  display: block;
  max-width: 24px;
  max-height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}

.post-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 18px;
}

.post-filter-tabs,
.post-filter-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.post-filter-chip,
.post-filter-sort__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  color: #222;
  font-size: 14px;
  text-decoration: none !important;
  white-space: nowrap;
  background: #f5f6f7;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 999px;
}

.post-filter-chip--ghost {
  background: #fff;
}

.post-filter-chip--active {
  color: #fff;
  background: #111;
  border-color: #111;
}

.post-filter-chip--active i {
  font-size: 13px;
}

.post-filter-tabs a.active {
  font-weight: 700;
}

.post-filter-sort {
  min-width: 0;
}

.post-filter-sort {
  position: relative;
}

.post-filter-sort__toggle {
  width: 100%;
  height: 100%;
  cursor: pointer;
  min-width: 0;
}

.post-filter-sort__menu {
  padding: 12px 0;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 190px;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
  z-index: 50;
}

.post-filter-sort:hover .post-filter-sort__menu,
.post-filter-sort:focus-within .post-filter-sort__menu {
  opacity: 1;
  visibility: visible;
}

.post-filter-sort__menu a {
  justify-content: flex-start;
  width: 100%;
  min-width: 0;
  min-height: 40px;
  padding: 0 14px;
  border: 0;
}

.post-filter-sort__menu a.active {
  font-weight: 700;
  background: #f7f7f7;
}

.post-filter-sort__toggle:hover,
.post-filter-chip:hover {
  color: #111;
  background: #fafafa;
}

.post-filter-sort__toggle i {
  font-size: 13px;
}

.post-filter-view i {
  font-size: 17px;
}

.post-filter-view.active {
  color: #ee4d2d;
  font-weight: 700;
  border-bottom-color: #ee4d2d;
}

.post-result-wrap {
  width: 100%;
}

.post-result-wrap--grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px 16px;
}

.post-result-wrap--list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
}

.post-result-item {
  position: relative;
  background: #fff;
  overflow: hidden;
}

.post-result-item--grid {
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.post-result-item--list {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) 64px;
  gap: 12px;
  min-height: 176px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}

.post-result-photo {
  position: relative;
  display: block;
  overflow: hidden;
  color: #fff;
  text-decoration: none !important;
}

.post-result-item--grid .post-result-photo {
  aspect-ratio: 1/1;
}

.post-result-item--list .post-result-photo {
  width: 130px;
  height: 168px;
}

.post-result-photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.post-result-badge {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 18px 8px 6px;
  color: #fff;
  font-size: 14px;
  line-height: 1.1;
  background: linear-gradient(180deg, rgba(34, 34, 34, 0), rgba(34, 34, 34, 0.75));
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.post-filter-bar-second {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 16px;
  min-height: 32px;
  margin: 0 0 18px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}
.post-filter-bar-second .post-filter-tabs a,
.post-filter-bar-second .post-filter-sort a {
  text-decoration: none;
  min-width: 96px;
  display: inline-block;
  text-align: center;
  min-height: 34px;
  line-height: 34px;
}
.post-filter-bar-second .post-filter-tabs .post-filter-sort__toggle,
.post-filter-bar-second .post-filter-sort .post-filter-sort__toggle {
  border-radius: 0;
  background: none;
  border: none;
}

.post-filter-actions {
  display: flex;
  align-items: stretch;
}
.post-filter-actions a {
  display: block;
  gap: 8px;
  min-width: 84px;
  padding: 4px 18px;
  color: #222;
  font-size: 14px;
  text-decoration: none !important;
  white-space: nowrap;
  background: #fff;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  min-height: 32px;
}
.post-filter-actions a.active {
  font-weight: 700;
}

.post-result-body {
  min-width: 0;
}

.post-result-item--grid .post-result-body {
  padding: 10px 8px 12px;
}

.post-result-item--list .post-result-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 0 4px;
}

.post-result-title {
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.32;
}

.post-result-item--list .post-result-title {
  font-size: 16px;
  font-weight: 700;
}

.post-result-title a {
  display: -webkit-box;
  overflow: hidden;
  color: #111;
  text-decoration: none !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.post-result-title a:hover {
  color: #ee4d2d;
}

.post-result-category,
.post-result-location,
.post-result-meta {
  color: #858585;
  font-size: 14px;
  line-height: 1.35;
}

.post-result-category {
  display: -webkit-box;
  overflow: hidden;
  min-height: 19px;
  margin-bottom: 6px;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.post-result-price {
  margin-bottom: 8px;
  color: #e91e43;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

.post-result-location,
.post-result-meta {
  display: flex;
  align-items: center;
  gap: 5px;
}

.post-result-location {
  margin-bottom: 6px;
}

.post-result-meta {
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 6px 10px;
  min-height: 20px;
}

.post-result-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.post-result-member,
.post-result-stats {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.post-result-member {
  min-width: 0;
}

.post-result-member-avatar {
  width: 24px;
  height: 24px;
  justify-content: center;
  border-radius: 50%;
  background: #ffcf3a;
  color: #111;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.post-result-member-name {
  max-width: 150px;
  overflow: hidden;
  color: #4b5563;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.post-result-actions {
  gap: 10px;
  width: 40px;
}

.post-result-save,
.post-result-chat {
  padding: 0;
  border: 0;
  background: transparent;
  color: #222;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  text-decoration: none !important;
}

.post-result-save.active {
  color: #e11d48;
}

.post-result-item--grid .post-result-actions {
  position: absolute;
  top: 10px;
  right: 10px;
  gap: 12px;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
  z-index: 2;
}

.post-result-item--grid .post-result-save,
.post-result-item--grid .post-result-chat {
  color: inherit;
  text-shadow: inherit;
}

.post-result-item--grid .post-result-save.active {
  color: #ff4d6d;
}

.post-detail-shell {
  padding-top: 12px;
  padding-bottom: 24px;
}

.post-detail-hero,
.post-section-card,
.post-comment-card {
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.post-gallery-main {
  position: relative;
  overflow: hidden;
  min-height: 520px;
}

.post-gallery-image {
  width: 100%;
  height: 520px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.post-gallery-counter {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
}

.post-gallery-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
}

.post-gallery-thumb {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 4px;
  overflow: hidden;
  border: 3px solid transparent;
  background: #f3f3f3;
}

.post-gallery-thumb.active {
  border-color: #8c5826;
}

.post-gallery-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.post-info-panel {
  display: flex;
  flex-direction: column;
}

.post-title {
  font-size: 26px;
  line-height: 1.15;
  font-weight: 700;
  color: #111;
  margin: 0;
}

.post-subtitle {
  color: #4f5560;
  font-size: 14px;
}

.post-save-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e8e8e8;
  background: #fff;
  color: #111;
  border-radius: 999px;
  padding: 8px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.post-price {
  color: #e61e24;
  font-size: 32px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.post-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.post-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #111;
  font-size: 14px;
}

.post-meta-item i {
  color: #111;
  font-size: 14px;
}

.post-action-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.post-action-btn {
  min-height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
}

.post-action-phone {
  background: #f1f1f1;
  color: #111;
}

.post-action-chat {
  background: #ffcc00;
  color: #111;
}

.post-seller-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  border-top: 1px solid #efefef;
  padding-top: 16px;
}

.post-seller-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffcf3a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #111;
  font-size: 18px;
}

.post-seller-name {
  font-weight: 700;
  color: #111;
  display: flex;
  align-items: center;
  gap: 6px;
}

.post-seller-name i {
  color: #6b7280;
}

.post-seller-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: #6b7280;
  font-size: 13px;
  margin-top: 4px;
}

.post-seller-meta i {
  font-size: 6px;
  position: relative;
  top: -2px;
  margin-right: 4px;
}

.post-seller-stats {
  display: flex;
  align-items: center;
  gap: 14px;
}

.post-seller-stat {
  text-align: center;
  min-width: 56px;
}

.post-seller-stat strong {
  display: block;
  font-size: 20px;
  line-height: 1;
  color: #111;
}

.post-seller-stat span {
  display: block;
  font-size: 12px;
  color: #4b5563;
  margin-top: 4px;
}

.post-seller-view-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f4f4f5;
  color: #111;
  padding: 10px 16px;
  text-decoration: none;
  font-weight: 700;
}

.post-section-title {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
  color: #111;
  margin-bottom: 14px;
}

.post-desc {
  color: #111;
  line-height: 1.7;
}

.post-contact-chip {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  background: #f5f5f7;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
}

.post-contact-chip a {
  text-decoration: none;
  font-weight: 700;
  color: #2f66f5;
}

.post-detail-table {
  border-top: 1px solid #ececec;
}

.post-detail-table th,
.post-detail-table td {
  padding: 12px 0;
  border-top: 1px solid #ececec;
}

.post-detail-table th.post-detail-label {
  width: 160px;
  color: #111;
  font-weight: 600;
  white-space: nowrap;
  padding-right: 16px;
}

.post-detail-table td.post-detail-value {
  color: #111;
}

.post-comment-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #f4f4f5;
  color: #111;
  padding: 0 10px;
}

.comment-empty {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #9ca3af;
}

.comment-empty-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 14px;
  color: #b8b8b8;
}

.comment-empty-title {
  font-weight: 700;
  color: #7c7c7c;
}

.comment-empty-desc {
  margin-top: 4px;
  font-size: 13px;
}

.post-related-item {
  display: block;
  color: inherit;
}

.post-related-thumb {
  aspect-ratio: 1/1;
  border-radius: 14px;
  overflow: hidden;
  background: #f1f1f1;
  margin-bottom: 8px;
}

.post-related-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.post-related-name {
  font-size: 14px;
  line-height: 1.4;
  color: #111;
}

.post-related-price {
  font-size: 13px;
  font-weight: 700;
  margin-top: 2px;
}

@media (max-width: 991px) {
  .post-result-wrap--grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .post-result-wrap--list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575px) {
  .post-filter-bar {
    flex-direction: column;
    gap: 8px;
  }
  .post-filter-actions {
    overflow-x: auto;
  }
  .post-result-wrap--grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .post-result-item--list {
    grid-template-columns: 112px minmax(0, 1fr) 58px;
    min-height: 148px;
  }
  .post-result-item--list .post-result-photo {
    width: 112px;
    height: 140px;
  }
  .post-result-title {
    font-size: 15px;
  }
  .post-result-price {
    font-size: 16px;
  }
}
.form-control {
  font-size: 0.875rem;
}

.jFiler-items-grid .jFiler-item .jFiler-item-container {
  margin: 0 0 12px 0;
  padding: 0;
}
.jFiler-items-grid .jFiler-item .jFiler-item-container .jFiler-item-assets {
  position: absolute;
  top: 0;
  right: 0;
  margin-top: 8px;
  margin-right: 8px;
}
.jFiler-items-grid .jFiler-item .jFiler-item-container .jFiler-item-assets ul li a {
  display: block;
  width: 24px;
  height: 24px;
  line-height: 24px;
  background-color: #6c757d;
  border-radius: 3px;
  color: #fff;
}
.jFiler-items-grid .jFiler-item .jFiler-item-container .jFiler-item-assets ul li a:before {
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
}
.jFiler-items-grid .jFiler-item .jFiler-item-container .jFiler-item-thumb {
  width: auto;
  height: auto;
  border: none;
  min-height: auto;
}
.jFiler-items-grid .jFiler-item .jFiler-item-container .jFiler-item-thumb img {
  max-width: 100%;
  max-height: 100%;
}
.jFiler-items-grid .jFiler-item .jFiler-item-container .jFiler-item-thumb .jFiler-item-thumb-image i {
  position: absolute;
  top: calc(50% - 12.5px);
  left: calc(50% - 12.5px);
  width: 25px;
  height: 25px;
  font-size: 25px;
  text-align: center;
  line-height: 25px;
  visibility: hidden;
}
.jFiler-items-grid .jFiler-item.moved .jFiler-item-container .jFiler-item-thumb-image i {
  visibility: visible;
}

.box-header a {
  font-weight: normal;
  vertical-align: center;
  font-size: 0.875rem;
  line-height: normal;
  padding: 6px 12px;
}
.box-header a.active {
  background-color: rgba(140, 87, 38, 0.2196078431);
  border-radius: 4px;
}

/* Photo upload zone */
.photoUpload-zone .photoUpload-detail{text-align:center;display:block;margin-bottom:1.5rem;position: relative;}
.photoUpload-zone .photoUpload-detail img{max-width:100%;max-height:250px;}
.photoUpload-zone .photoUpload-file{cursor:pointer;background-color:#F5F5F5;outline:2px dashed #CDCDCD;outline-offset:0px;padding:2rem 0.75rem;margin-bottom:1rem;border-radius:0.25rem;font-weight:normal!important;display:-webkit-flex;display:-moz-flex;display:-ms-flex;display:-o-flex;display:flex;flex-direction:column;align-items:center;justify-content:center;-webkit-transition:outline-offset .15s ease-in-out,background-color .15s linear;transition:outline-offset .15s ease-in-out,background-color .15s linear;}
.photoUpload-zone .photoUpload-file.drag-over{outline-offset:-10px;background-color:#fff9f9;}
.photoUpload-zone .photoUpload-file input{display:none;}
.photoUpload-zone .photoUpload-file i:hover{opacity:0.9;}
.photoUpload-zone .photoUpload-file i{color:#6C7D8F;font-size:55px;margin-bottom:0.75rem;}
.photoUpload-zone .photoUpload-file p{margin:0;color:#767978;font-size:16px;}
.photoUpload-zone .photoUpload-file .photoUpload-drop{margin-bottom:0.5rem;}
.photoUpload-zone .photoUpload-file .photoUpload-or{font-size:14px;margin-bottom:0.75rem;}
.photoUpload-zone .photoUpload-file .photoUpload-choose{color:#fff;}
.photoUpload-zone .photoUpload-dimension{font-weight:700;}

@media (max-width: 1199px) {
  .header-bizapp .wrap-content {
    gap: 10px;
    min-height: 64px;
  }
  .header-bizapp__search {
    display: none !important;
  }
  .header-bizapp__actions {
    gap: 6px;
  }
  .header-bizapp__brand {
    gap: 10px;
  }
  .header-bizapp__logo img {
    max-height: 38px;
  }
}/*# sourceMappingURL=style.css.map */