@import url("https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
body {
  background-color: #FCFAF6;
  margin: 0;
  box-sizing: content-box;
  padding: 20px;
  font-family: "Inter", sans-serif;
  color: #13110F;
}

.overlay {
  --display: none;
  --opacity: 0;
}
.overlay::after {
  content: "";
  display: var(--display);
  opacity: var(--opacity);
  position: fixed;
  top: 0;
  left: 0;
  width: -webkit-fill-available;
  height: -webkit-fill-available;
  background-color: rgba(48, 14, 5, 0.5215686275);
  z-index: 40;
  transition: ease 0.3s all;
}

.popover-menu {
  display: none;
  display: flex;
  flex-direction: column;
  position: fixed;
  opacity: 0;
  left: -1000px;
  top: 0;
  background-color: #FCFAF6;
  z-index: 50;
  width: 70%;
  height: -webkit-fill-available;
  padding: 20px 20px;
  gap: 30px;
  border-radius: 0px 20px 20px 0px;
  transition: ease 0.5s all;
}

.overflow-scroll {
  overflow: hidden;
  overflow-y: scroll;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none;
}
.overflow-scroll::-webkit-scrollbar {
  display: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1;
  color: #3F3D3B !important;
  margin-top: 0px;
}

h2 {
  margin-bottom: 30px;
}

.text {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.text .bayt {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.btn {
  width: 24px;
  height: 24px;
  padding: 12px;
  background-color: #fff;
  border-radius: 295px;
  margin: 0;
  box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.03);
  transition: ease 0.2s all;
  cursor: pointer;
}
.btn:hover {
  background-color: #F3F0E9;
  box-shadow: 0 0 18px 5px rgb(255, 255, 255);
  transform: scale(1.1);
}
.btn:active {
  background-color: #F3F0E9;
  transform: scale(0.9);
}

.btn-marge {
  background-color: #fff;
  border-radius: 295px;
  padding: 0;
  box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.03);
  height: 48px;
}
.btn-marge .btn {
  box-shadow: none;
}

.header-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: -webkit-fill-available;
  padding: 20px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-image: linear-gradient(to bottom, rgb(252, 250, 246), rgba(252, 250, 246, 0));
}
.header-menu .change-font {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: -webkit-fill-available;
  margin-top: 160px;
  margin-bottom: 800px;
  gap: 50px;
}
.content .content-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: -webkit-fill-available;
}
.content .content-main .logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 90px;
}
.content .content-main .logo-container img {
  width: 120px;
  margin-bottom: 20px;
}
.content .content-item {
  border-top: 1px solid #EEDFDF;
  padding-top: 50px;
}

.list {
  display: flex;
  flex-direction: column;
  width: -webkit-fill-available;
  padding-bottom: 200px;
  gap: 5px;
}
.list hr {
  border: none;
  background-color: #EEDFDF !important;
  height: 1px;
  width: -webkit-fill-available;
  margin: 0;
}
.list .select-btn p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 80%;
  margin: 0;
}

.select-btn {
  background-color: transparent;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border: none;
  font-size: 17px;
  text-align: left;
  padding: 12px 12px;
  cursor: pointer;
  transition: ease 0.3s all;
  border-radius: 295px;
}
.select-btn:hover {
  background-color: #F3F0E9;
  box-shadow: 0 0 18px 5px rgb(255, 255, 255);
  transform: scale(1.05);
  padding-left: 20px;
}
.select-btn:active {
  background-color: #F3F0E9;
  transform: scale(0.9);
}/*# sourceMappingURL=style.css.map */