star_rating@font-face {
  font-family: "vazir";
  font-weight: 500;
  src: url("../fonts/Vazir-Regular-FD.ttf") format("truetype"),
    url("../fonts/Vazir-Regular-FD.woff") format("woff"),
    url("../fonts/Vazir-Regular-FD.woff2") format("woff2");
}

@font-face {
  font-family: "vazir";
  font-weight: 800;
  src: url("../fonts/Vazir-Bold-FD.ttf") format("truetype"),
    url("../fonts/Vazir-Bold-FD.woff") format("woff"),
    url("../fonts/Vazir-Bold-FD.woff2") format("woff2");
}

:root {
  --primary-color: #
}

*,
*::before,
*::after {
  background-repeat: no-repeat;
  transition: inherit;
  font-family: 'vazir', sans-serif;
}

body {
  background-color: #f0f0f0;
  min-height: 100vh;
  overflow-x: hidden;
}

button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  cursor: pointer;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

button,
input,
select,
textarea {
  appearance: none;
  -o-appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  outline: none;
}

img {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  -ms-user-select: none;
  user-drag: none;
  -webkit-user-drag: none;
  -moz-user-drag: none;
  -ms-user-drag: none;
  -o-user-drag: none;
}

button:disabled,
input[type="submit"]:disabled,
input[type="reset"]:disabled,
input[type="button"]:disabled {
  pointer-events: none;
}

input[type="checkbox"]:checked {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.207 4.793a1 1 0 0 1 0 1.414l-5 5a1 1 0 0 1-1.414 0l-2-2a1 1 0 0 1 1.414-1.414L6.5 9.086l4.293-4.293a1 1 0 0 1 1.414 0z'/%3E%3C/svg%3E");
  background-position: center center;
}

.app_container {
  width: 95%;
  max-width: 1100px;
  margin: 0 auto;
}

.app_container__long {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
}

/* faq buttons */
.accordion_select_button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 1.5rem 2rem;
}
.accordion_select_button .accordion_select_icon {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 2.5rem;
  height: 2.5rem;
}
.accordion_select_container {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: all 350ms;
}
.accordion_select_container.open {
  padding: 0 2rem 1.5rem;
  max-height: 1000px;
}