@media screen and (max-width: 768px) {
  html.lock-scroll {
    overflow-y: hidden;
  }
}

#CustomerPulseTrigger {
  cursor: pointer;
  position: fixed;
  bottom: 100px;
  right: 12px;
  width: 60px;
  height: 60px;
  background-color: #b68a35;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 9;
  transition: background-color 0.2s ease;
}
#CustomerPulseTrigger:hover {
  background-color: #d1a655;
}
#CustomerPulseTrigger > svg {
  width: 60px;
  height: 60px;
}
#CustomerPulseTrigger.rtl {
  right: unset;
  left: 8px;
  bottom: 16px;
}

button.mof-button,
a.mof-button {
  cursor: pointer;
  user-select: none;
  text-decoration: none !important;
  color: #92722a !important;
  transition: all 0.15s ease;
}
button.mof-button:hover,
button.mof-button:focus,
button.mof-button:active,
a.mof-button:hover,
a.mof-button:focus,
a.mof-button:active {
  outline: none !important;
  color: white !important;
  background: #b68a35 !important;
  border-color: #b68a35 !important;
}
button.mof-button.mof-button_neutral:hover,
button.mof-button.mof-button_neutral:focus,
button.mof-button.mof-button_neutral:active,
a.mof-button.mof-button_neutral:hover,
a.mof-button.mof-button_neutral:focus,
a.mof-button.mof-button_neutral:active {
  color: white !important;
  background: #9ea2a9 !important;
  border-color: #9ea2a9 !important;
}
button.mof-button.mof-button_red:hover,
button.mof-button.mof-button_red:focus,
button.mof-button.mof-button_red:active,
a.mof-button.mof-button_red:hover,
a.mof-button.mof-button_red:focus,
a.mof-button.mof-button_red:active {
  color: white !important;
  background: #d83731 !important;
  border-color: #d83731 !important;
}
button.mof-button.mof-button_contained:hover,
button.mof-button.mof-button_contained:focus,
button.mof-button.mof-button_contained:active,
a.mof-button.mof-button_contained:hover,
a.mof-button.mof-button_contained:focus,
a.mof-button.mof-button_contained:active {
  color: white !important;
  background: #92722a !important;
  border-color: #92722a !important;
}
button.mof-button.mof-button_contained.mof-button_contained_dark:hover,
button.mof-button.mof-button_contained.mof-button_contained_dark:focus,
button.mof-button.mof-button_contained.mof-button_contained_dark:active,
a.mof-button.mof-button_contained.mof-button_contained_dark:hover,
a.mof-button.mof-button_contained.mof-button_contained_dark:focus,
a.mof-button.mof-button_contained.mof-button_contained_dark:active {
  color: white !important;
  background: #b68a35 !important;
  border-color: #b68a35 !important;
}
button.mof-button.mof-button_disabled,
a.mof-button.mof-button_disabled {
  pointer-events: none !important;
}

.mof-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  font-size: 12px;
  line-height: 16px;
  color: #92722a !important;
  border: 1px solid #92722a !important;
  border-radius: 6px;
  font-weight: 400;
}
.mof-button > strong {
  font-weight: 700;
}
.mof-button > svg {
  fill: currentColor;
  width: 16px;
  height: 16px;
  min-width: 16px;
}
.mof-button.mof-button_neutral {
  color: #9ea2a9 !important;
  border: 1px solid #9ea2a9 !important;
}
.mof-button.mof-button_red {
  color: #d83731 !important;
  border: 1px solid #d83731 !important;
}
.mof-button.mof-button_heavy {
  border-width: 2px !important;
  font-weight: 500;
}
.mof-button.mof-button_medium {
  padding: 10px 18px;
  font-size: 14px;
  line-height: 20px;
  gap: 8px;
}
.mof-button.mof-button_large {
  padding: 12px 20px;
  gap: 8px;
  font-size: 16px;
  line-height: 24px;
}
.mof-button.mof-button_large > svg {
  width: 24px;
  height: 24px;
  min-width: 24px;
}
.mof-button.mof-button_contained {
  color: white !important;
  border: 1px solid #b68a35 !important;
  background: #b68a35;
  font-weight: 500;
}
.mof-button.mof-button_contained.mof-button_contained_dark {
  color: white !important;
  border: 1px solid #92722a !important;
  background: #92722a;
  font-weight: 500;
}

.mof-spinner {
  width: 48px;
  height: 48px;
  border: 5px solid #b68a35;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: mof-spinner-rotation 1s linear infinite;
}
.mof-spinner.mof-spinner_small {
  width: 32px;
  height: 32px;
  border-width: 3px;
}

@keyframes mof-spinner-rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.mof-page-survey {
  font-family: Roboto, sans-serif;
  margin: 48px 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.mof-page-survey__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 60%;
}
.mof-page-survey h2,
.mof-page-survey p {
  margin: 0 !important;
}
.mof-page-survey__title {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  color: #232528;
}
.mof-page-survey__text {
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: #5f646d;
}
.mof-page-survey__textp {
  margin: 0;
}
.mof-page-survey__actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}
.mof-page-survey__actions__like.mof-button {
  color: #866a27 !important;
}
.mof-page-survey__actions__dislike.mof-button {
  color: #676d74 !important;
}
.mof-page-survey.rtl {
  direction: rtl;
  font-family: "Droid Arabic Kufi", sans-serif;
}
.mof-page-survey.rtl .mof-page-survey__title {
  color: #7a7a7a;
}
@media screen and (max-width: 768px) {
  .mof-page-survey {
    margin: 32px 0;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .mof-page-survey__content {
    width: 100%;
  }
}

.mof-select {
  position: relative;
}
.mof-select__inner {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  border: 1px solid #e6e6e6;
  color: #c3c6cb;
  border-radius: 4px;
  padding: 0 16px;
  height: 40px;
  background: white;
}
.mof-select__inner > svg {
  position: absolute;
  right: 16px;
  top: 12px;
  width: 16px;
  height: 16px;
  fill: #9ea2a9;
}
@media screen and (max-width: 768px) {
  .mof-select__inner {
    position: unset;
  }
}
.mof-select__list-wrapper {
  display: none;
}
@media screen and (max-width: 768px) {
  .mof-select__list-wrapper:before {
    content: "";
    background: #232528;
    opacity: 0.5;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
  }
}
.mof-select__list-wrapper.mof-select__list-wrapper_active {
  display: block;
}
.mof-select__list {
  visibility: hidden;
  z-index: -1;
  opacity: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  transform: translateY(100%);
  max-height: 320px;
  overflow: hidden;
  background: white;
  box-shadow: 0 8px 8px 0 rgba(35, 37, 40, 0.0392156863);
  padding: 16px 16px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
}
.mof-select__list__header {
  display: none;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .mof-select__list__header {
    display: flex;
  }
}
.mof-select__list__header__title {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  color: #232528;
  margin: 0;
}
.mof-select__list__close {
  border: none !important;
  background: transparent !important;
  outline: none !important;
  width: 16px;
  height: 16px;
  min-width: 16px;
  padding: 0;
  margin: 0;
}
.mof-select__list__close > svg {
  fill: #9ea2a9;
}
.mof-select__list__inner {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  list-style: none;
  padding: 0;
}
.mof-select__list__item {
  cursor: pointer;
  font-size: 14px;
  line-height: 17px;
  color: #232528;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #e6e6e6;
}
.mof-select__list__item > svg {
  visibility: hidden;
  fill: #cba344;
}
.mof-select__list__item_selected {
  font-weight: 700;
}
.mof-select__list__item_selected > svg {
  visibility: visible;
}
.mof-select__list__item:last-child {
  border-bottom: none;
}
.mof-select__list.mof-select__list_active {
  visibility: visible;
  opacity: 1;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .mof-select__list {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: unset;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 12px;
    max-height: 360px;
  }
}
.mof-select:hover .mof-select__inner {
  border-color: #9ea2a9;
}
.mof-select:focus-within .mof-select__inner {
  border-color: #cba344;
}
.mof-select.rtl .mof-select__inner > svg {
  right: unset;
  left: 16px;
}

.mof-breadcrumbs {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #c3c6cb;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
}
.mof-breadcrumbs > a {
  color: inherit !important;
  text-decoration: none !important;
}
.mof-breadcrumbs > a:hover {
  color: #92722a !important;
}
.mof-breadcrumbs > svg {
  width: 10px;
  height: 10px;
  min-width: 10px;
  fill: currentColor;
}
.mof-breadcrumbs__item {
  white-space: nowrap;
}
.mof-breadcrumbs__item.mof-breadcrumbs__item_selected {
  color: #7a7a7a;
  position: relative;
}
.mof-breadcrumbs__item.mof-breadcrumbs__item_selected:after {
  content: "";
  width: 8px;
  height: 2px;
  background: #b68a35;
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 2px;
}

.mof-filters-group {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 32px;
}
.mof-filters-group__item {
  flex: 1;
}
.mof-filters-group__search-button {
  height: 40px;
  min-width: 146px;
  font-size: 14px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .mof-filters-group {
    flex-direction: column;
    gap: 20px;
  }
  .mof-filters-group__item {
    width: 100%;
  }
  .mof-filters-group__search-button {
    width: 100% !important;
  }
}

.mof-input-label {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #7a7a7a;
  margin-bottom: 12px;
}

.mof-input {
  position: relative;
}
.mof-input > input,
.mof-input > input[type="text"] {
  color: #7a7a7a;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  padding: 0 16px;
  height: 40px;
}
.mof-input > input:hover,
.mof-input > input[type="text"]:hover {
  border-color: #9ea2a9;
}
.mof-input > input:focus,
.mof-input > input[type="text"]:focus {
  border-color: #cba344;
}
.mof-input > svg {
  position: absolute;
  right: 16px;
  top: 12px;
  width: 16px;
  height: 16px;
  fill: #9ea2a9;
}
.mof-input.mof-input_ar > svg {
  right: unset;
  left: 16px;
}

.mof-page-content-header {
  margin-top: 24px;
  margin-bottom: 32px;
}
.mof-page-content-header h1 {
  text-decoration: none !important;
}
.mof-page-content-header__title {
  font-size: 48px;
  line-height: 56px;
  font-weight: 600;
  color: #92722a;
  margin-bottom: 12px;
}
.mof-page-content-header__desc {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #9ea2a9;
}

.mof-pagination-meta {
  margin-top: 40px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #7a7a7a;
}
.mof-pagination-meta a.mof-pagination-meta__button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 8px;
  color: #7a7a7a;
  gap: 8px;
  text-decoration: none;
}
.mof-pagination-meta a.mof-pagination-meta__button > svg {
  fill: currentColor;
  width: 20px;
  height: 20px;
  min-width: 20px;
}
.mof-pagination-meta
  a.mof-pagination-meta__button.mof-pagination-meta__button_disabled {
  color: #c3c6cb;
  pointer-events: none;
}
.mof-pagination-meta__total {
  color: #5f646d;
}
.mof-pagination-meta__pages {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
.mof-pagination-meta__pages__count {
  padding: 8px;
}
.mof-pagination-meta.rtl a.mof-pagination-meta__button > svg {
  transform: rotate(180deg);
}
@media screen and (max-width: 768px) {
  .mof-pagination-meta {
    flex-direction: column-reverse;
    margin-top: 24px;
    justify-content: flex-start;
    gap: 24px;
  }
}

.mof-table {
  border-collapse: separate;
  font-size: 12px;
  line-height: 20px;
  color: #232528;
  text-align: left;
}
.mof-table .mof-table__row.mof-table__row_error {
  font-size: 14px;
  line-height: 24px;
  color: #232528;
}
.mof-table .mof-table__row.mof-table__row_error > td {
  padding: 24px;
  text-align: center;
}
.mof-table .mof-table__row.mof-table__row_error .mof-table__row_error__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.mof-table .mof-table__row.mof-table__row_error .mof-table__row_error__title {
  font-weight: 500;
}
.mof-table .mof-table__row.mof-table__row_error .mof-table__row_error__desc {
  color: #9ea2a9;
  max-width: 500px;
}
.mof-table .mof-table__cell {
  padding: 12px 8px;
}
.mof-table .mof-table__cell_small {
  width: 112px;
}
.mof-table .mof-table__cell_regular {
  width: 124px;
}
.mof-table .mof-table__cell_medium {
  width: 146px;
}
.mof-table .mof-table__cell__inner {
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  justify-content: space-between;
}
.mof-table .mof-table__sort-button {
  min-width: 16px;
  width: 16px;
  height: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: transparent;
  color: #cec6b3;
}
.mof-table .mof-table__sort-button > svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}
.mof-table .mof-table__sort-button:hover,
.mof-table .mof-table__sort-button.mof-table__sort-button_active {
  color: #b68a35;
  transition: color 0.2s ease;
}
.mof-table .mof-table__sort-button[data-order="asc"] {
  transform: rotate(0deg);
}
.mof-table .mof-table__sort-button[data-order="desc"] {
  transform: rotate(180deg);
}
.mof-table td,
.mof-table th {
  border-top: none;
  border-left: 1px solid #e6decb;
  border-bottom: 1px solid #e6decb;
  border-right: none;
}
.mof-table td:last-of-type,
.mof-table th:last-of-type {
  border-right: 1px solid #e6decb;
}
.mof-table > thead {
  border: 1px solid #e6decb;
}
.mof-table > thead > tr > th {
  vertical-align: middle;
  font-weight: 500;
  background: #f2ece0;
}
.mof-table > thead > tr > th:first-of-type {
  border-top-left-radius: 8px;
}
.mof-table > thead > tr > th:last-of-type {
  border-top-right-radius: 8px;
}
.mof-table > thead:first-child tr:first-child th {
  border-block-start: 1px solid #e6decb;
}
.mof-table > tbody > tr > td {
  background: white !important;
  font-weight: 400;
}
.mof-table > tbody > tr:last-of-type > td:first-of-type {
  border-bottom-left-radius: 8px;
}
.mof-table > tbody > tr:last-of-type > td:last-of-type {
  border-bottom-right-radius: 8px;
}
.mof-table.mof-table_ar {
  text-align: right;
}
.mof-table.mof-table_ar td,
.mof-table.mof-table_ar th {
  border-top: none;
  border-left: 1px solid #e6decb;
  border-bottom: 1px solid #e6decb;
  border-right: none;
}
.mof-table.mof-table_ar td:first-of-type,
.mof-table.mof-table_ar th:first-of-type {
  border-right: 1px solid #e6decb;
}
.mof-table.mof-table_ar td:last-of-type,
.mof-table.mof-table_ar th:last-of-type {
  border-right: none;
}
.mof-table.mof-table_ar > thead > tr > th:first-of-type {
  border-top-right-radius: 8px;
  border-top-left-radius: 0;
}
.mof-table.mof-table_ar > thead > tr > th:last-of-type {
  border-top-right-radius: 0;
  border-top-left-radius: 8px;
}
.mof-table.mof-table_ar > thead > tr:first-child tr:first-child th {
  border-block-start: none;
}
.mof-table.mof-table_ar > thead > tr:last-child tr:last-child th {
  border-block-end: 1px solid #e6decb;
}
.mof-table.mof-table_ar > tbody > tr:last-of-type > td:first-of-type {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 8px;
}
.mof-table.mof-table_ar > tbody > tr:last-of-type > td:last-of-type {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 0;
}

.mof-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  font-size: 14px;
  line-height: 24px;
  color: #232528;
}
.mof-error__title {
  font-weight: 500;
}
.mof-error__desc {
  color: #9ea2a9;
  max-width: 500px;
}

.mof-ai-assistance {
  display: flex;
  flex-direction: column;
  font-family: Roboto, sans-serif;
}
.mof-ai-assistance__loader {
  height: 100px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  display: none;
}
.mof-ai-assistance__loader.mof-ai-assistance__loader_active {
  display: flex;
}
/* .mof-ai-assistance__form-wrapper {
  background: #F3E9D4;
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 20px 0;
} */
@media only screen and (max-width: 767px) {
  /* .mof-ai-assistance__form-wrapper {
    padding: 16px;
    gap: 16px;
  } */
}
.mof-ai-assistance__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.mof-ai-assistance__header > svg {
  min-width: 24px;
  width: 24px;
  height: 24px;
  fill: #ae8c45;
}
.mof-ai-assistance__header > h2 {
  margin: 0;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #212529;
}
.mof-ai-assistance__form {
  /* display: flex;
  flex-direction: row;
  border-radius: 15px;
  overflow: hidden; */
}
.mof-ai-assistance__form > textarea {
  border-radius: 15px 0 0 15px;
  min-height: 100px;
  margin: 0;
  padding: 20px 50px 20px 20px;
  font-size: 18px;
  line-height: 28px;
  background: #fff;
  border: 1px solid #747474;
  border-right: none;
  color: #4e4e4e;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.0784313725);
  font-weight: 400;
  font-family: Roboto, sans-serif;
  resize: none;
}
.mof-ai-assistance__form > textarea:hover {
  border-color: #9ea2a9;
}
.mof-ai-assistance__form > textarea:focus {
  border-color: #cba344;
}
@media only screen and (max-width: 767px) {
  .mof-ai-assistance__form > textarea {
    font-size: 14px;
    line-height: 22px;
  }
}
.mof-ai-assistance__form > button {
  min-width: 100px;
  width: 100px;
  border-radius: 0;
}
.mof-ai-assistance__form > button > svg {
  width: 36px;
  height: 36px;
}
@media only screen and (max-width: 767px) {
  .mof-ai-assistance__form > button {
    width: 64px;
    min-width: 64px;
  }
}
.mof-ai-assistance__chat {
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  overflow: hidden;
}
.mof-ai-assistance__message {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 30px;
  background: rgba(0, 0, 0, 0.05);
  color: #212529;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  width: 100%;
}
.mof-ai-assistance__message > p {
  margin-bottom: 0 !important;
}
.mof-ai-assistance__message__avatar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  height: 87px;
  background: rgba(255, 255, 255, 0.3);
  padding: 10px 15px;
  border-radius: 10px;
  border: 1px solid #fff;
}
.mof-ai-assistance__message__avatar > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
}
.mof-ai-assistance__message__avatar > div > svg {
  fill: #b68a35;
  width: 32px;
  height: 32px;
}
@media only screen and (max-width: 767px) {
  .mof-ai-assistance__message {
    flex-wrap: wrap-reverse;
    padding: 16px;
    gap: 12px;
  }
  .mof-ai-assistance__message > p {
    width: 100%;
  }
  .mof-ai-assistance__message__avatar {
    min-width: 64px;
    height: 64px;
    padding: 6px 12px;
  }
  .mof-ai-assistance__message__avatar > div {
    width: 32px;
    height: 32px;
  }
  .mof-ai-assistance__message__avatar > div > svg {
    width: 24px;
    height: 24px;
  }
}
.mof-ai-assistance__reply {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  background: rgba(182, 138, 53, 0.2);
  color: #212529;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  width: 100%;
  gap: 24px;
  padding: 20px 30px;
}
.mof-ai-assistance__reply__avatar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  height: 87px;
  background: rgba(255, 255, 255, 0.3);
  padding: 10px 15px;
  border-radius: 10px;
  border: 1px solid #fff;
}
.mof-ai-assistance__reply__avatar > img {
  width: 60px;
  height: 60px;
}
.mof-ai-assistance__reply__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mof-ai-assistance__reply__content > p {
  margin: 0 !important;
}
.mof-ai-assistance__reply__actions,
.mof-ai-assistance__reply__submit-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.mof-ai-assistance__reply__actions > .mof-button,
.mof-ai-assistance__reply__submit-actions > .mof-button {
  font-size: 16px;
  line-height: 20px;
}
.mof-ai-assistance__reply__actions
  > .mof-button.mof-ai-assistance__reply__submit,
.mof-ai-assistance__reply__submit-actions
  > .mof-button.mof-ai-assistance__reply__submit {
  background: #fff;
}
.mof-ai-assistance__reply__actions
  > .mof-button.mof-ai-assistance__reply__submit:hover,
.mof-ai-assistance__reply__submit-actions
  > .mof-button.mof-ai-assistance__reply__submit:hover {
  background: #92722a !important;
  border-color: #92722a !important;
}
@media only screen and (max-width: 767px) {
  .mof-ai-assistance__reply {
    padding: 16px;
    flex-wrap: wrap;
    gap: 12px;
  }
  .mof-ai-assistance__reply__content {
    width: 100%;
  }
  .mof-ai-assistance__reply__avatar {
    min-width: 64px;
    height: 64px;
    padding: 6px 12px;
  }
  .mof-ai-assistance__reply__avatar > img {
    width: 32px;
    height: 32px;
  }
  .mof-ai-assistance__reply__actions,
  .mof-ai-assistance__reply__submit-actions {
    gap: 12px;
  }
  .mof-ai-assistance__reply__actions > .mof-button,
  .mof-ai-assistance__reply__submit-actions > .mof-button {
    font-size: 13px;
    line-height: 16px;
  }
}
.mof-ai-assistance__disclaimer {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
}
.mof-ai-assistance__disclaimer > svg {
  width: 32px;
  height: 32px;
  min-width: 32px;
}
.mof-ai-assistance__disclaimer__content {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  line-height: 24px;
  color: #232528;
  font-weight: 400;
}
.mof-ai-assistance__disclaimer__title {
  font-weight: 700;
}
.mof-ai-assistance.mof-ai-assistance_ar {
  font-family: "Droid Arabic Kufi", sans-serif;
  direction: rtl;
}
.mof-ai-assistance.mof-ai-assistance_ar .mof-ai-assistance__form > textarea {
  border-radius: 0 15px 15px 0;
  border-right-width: 1px;
  border-right-style: solid;
  border-left: none;
  font-family: "Droid Arabic Kufi", sans-serif;
}
.mof-ai-assistance.mof-ai-assistance_ar
  .mof-ai-assistance__form
  > button
  > svg {
  transform: rotate(180deg);
}

.mof-stats-counter {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.mof-stats-counter__number {
  width: 100%;
  font-size: 52px;
  line-height: 61px;
  font-weight: 700;
  color: #b68a35;
  background: #f3eee4;
  border-radius: 24px;
  padding: 32px;
  text-align: center !important;
}
.mof-stats-counter__text {
  width: 100%;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  text-align: center !important;
  color: #232528;
}
.mof-stats-counter.rtl .mof-stats-counter__text {
  color: #7a7a7a;
}

.mof-dialog {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
}
.mof-dialog.mof-dialog_show {
  display: flex;
}
.mof-dialog__mask {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: 1;
  background: hsla(240, 3%, 14%, 0.5);
  backdrop-filter: blur(2px);
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}
.mof-dialog__mask.mof-dialog__mask_in {
  animation-name: dialog_opacityIn;
}
.mof-dialog__mask.mof-dialog__mask_out {
  animation-name: dialog_opacityOut;
}
.mof-dialog__container {
  z-index: 2;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
  background-color: white;
  border-radius: 12px;
  width: 600px;
  max-width: 62vw;
}
.mof-dialog__container.mof-dialog__container_in {
  animation-name: dialog_opacityIn;
}
.mof-dialog__container.mof-dialog__container_out {
  animation-name: dialog_opacityOut;
}
@media screen and (max-width: 768px) {
  .mof-dialog__container {
    max-width: 94vw;
  }
}
.mof-dialog__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 16px;
}
.mof-dialog__header__content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mof-dialog__header__title {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  color: #232528;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
}
.mof-dialog__header__description {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #b2b2b2;
}
@media screen and (max-width: 768px) {
  .mof-dialog__header {
    padding: 16px 12px;
  }
}
.mof-dialog__body {
  padding: 0 16px;
}
@media screen and (max-width: 768px) {
  .mof-dialog__body {
    padding: 0 12px;
  }
}
.mof-dialog__footer {
  display: flex;
  flex-direction: row;
  padding: 24px 16px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .mof-dialog__footer {
    padding: 16px 12px;
  }
}
.mof-dialog__close {
  border: none !important;
  background: transparent !important;
  outline: none !important;
  width: 16px;
  height: 16px;
  min-width: 16px;
  padding: 0;
  margin: 0;
}
.mof-dialog__close > svg {
  fill: #9ea2a9;
}

@keyframes dialog_opacityIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes dialog_opacityOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/*# sourceMappingURL=style_1.2.9.css.map */
