body {
  background-color: var(--light-mode-bg);
  color: var(--light-mode-cr);
  transition: background-color 0.3s, color 0.3s;
  font-family: "Almarai", sans-serif;
  transition: all 0.5s ease;
  direction: rtl;
}

::selection {
  background-color: var(--black);
  color: var(--white);
}

#scrollToTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 15px;
  background-color: var(--second-color-3);
  color: var(--white);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: none;
  transition: 0.5s;
  font-size: 16px;
  z-index: 200;
}
#scrollToTopBtn:hover {
  background-color: var(--main-color);
}

#lineScroll {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--second-color);
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.2s ease-out;
  z-index: 9999;
}

a.clarification {
  border: 2px solid var(--red);
  color: var(--red);
}

.tooltip {
  position: relative;
  cursor: pointer;
  display: inline-block;
}
.tooltip:hover .tooltipcontent {
  visibility: visible;
  opacity: 1;
}
.tooltip .tooltipcontent {
  visibility: hidden;
  text-align: center;
  width: 150px;
  border-radius: 5px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  right: 0%;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 14px;
  background-color: var(--black);
  color: var(--white);
}
.tooltip .tooltipcontent img {
  max-width: 100%;
  border-radius: 5px;
  display: block;
  margin-bottom: 5px;
}
.tooltip .tooltipcontent::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  border-width: 5px;
  border-style: solid;
  border-color: #000000 transparent transparent transparent;
}

.dots {
  color: var(--red);
  font-size: 600;
  font-size: 22px;
  font-family: "Almarai";
}

.subject {
  font-family: "Alexandria";
  padding: 0.5rem 1rem;
  line-height: 1;
  border-radius: 0.6rem;
  display: inline-flex;
  margin: 0.5rem 0 0 0.4rem;
  font-size: 14px;
}
.subject:hover {
  transform: scale(0.9);
}

.sub-small-article {
  background-color: var(--second-color);
  color: var(--white);
}

.sub-spiritual-life {
  background-color: var(--second-color-12);
  color: var(--white);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 5px 0;
  background-color: var(--header-navbar-background);
  box-shadow: var(--box-shadow-2);
}
.navbar .logo .logo_text {
  font-family: "Bigx";
  font-size: 34px;
}
.navbar .logo .logo_text:hover {
  color: var(--second-color);
}
.navbar .search form {
  width: 450px;
  position: relative;
  display: flex;
  align-items: center;
  padding-inline: 0.8em;
  border-radius: 10px;
  transition: border-radius 0.5s ease;
  background: var(--second-color-10);
}
.navbar .search form:before {
  content: "";
  position: absolute;
  background: var(--main-color);
  transform: scaleX(0);
  transform-origin: center;
  width: 100%;
  height: 2px;
  left: 0;
  bottom: 0;
  border-radius: 1px;
  transition: transform 0.3s ease;
}
.navbar .search form:focus-within {
  border-radius: 0;
}
.navbar .search form:focus-within:before {
  transform: scale(1);
}
.navbar .search form .input {
  font-size: 0.9rem;
  font-family: "Tajawal";
  color: var(--black);
  background-color: transparent;
  width: 100%;
  height: 100%;
  padding-inline: 0.2em;
  padding-block: 0.7em;
  border: none;
}
.navbar .search form button {
  border: none;
  background: none;
  color: var(--main-color);
}
.navbar .search form .results {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 5px 6px 28px -3px rgba(0, 0, 0, 0.75);
  max-height: 400px;
  overflow-y: auto;
  z-index: 1;
  direction: ltr;
}
.navbar .search form .results::-webkit-scrollbar {
  width: 0.3rem;
}
.navbar .search form .results::-webkit-scrollbar-track {
  background: var(--black);
}
.navbar .search form .results::-webkit-scrollbar-thumb {
  background: var(--main-color);
}
.navbar .search form .results li {
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid #ddd;
  text-align: right;
}
.navbar .search form .results li:hover {
  background-color: var(--gray);
}
.navbar .search form .highlight {
  background-color: var(--yellow);
  font-weight: bold;
}
.navbar .search form .description {
  font-size: 14px;
  color: var(--gray-1);
  margin-top: 5px;
}
.navbar .menu-btn {
  border-radius: var(--border-radius-10);
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--buttom);
  cursor: pointer;
}
.navbar .menu-btn:hover .menu-icon span {
  background-color: var(--second-color);
}
.navbar .menu-btn .menu-icon {
  width: 25px;
  height: 25px;
  padding: 4px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.4s;
}
.navbar .menu-btn .menu-icon span {
  width: 100%;
  height: 0.25rem;
  border-radius: 0.125rem;
  background-color: rgb(0, 122, 255);
  transition: width 0.4s, transform 0.4s, background-color 0.4s;
}

.sidebar_navbar {
  height: 100%;
  width: 300px;
  position: fixed;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  padding: 15px;
  z-index: 999;
  background-color: var(--white);
  overflow: auto;
}
.sidebar_navbar::-webkit-scrollbar {
  width: 0;
}
.sidebar_navbar.open {
  transform: translateX(0%);
}
.sidebar_navbar .close {
  border-radius: var(--border-radius-10);
  font-size: 25px;
  color: rgb(0, 122, 255);
  width: 45px;
  height: 45px;
  padding: 3px 0 0 0;
  margin-top: 10px;
  transition: all 0.3s;
  background-color: var(--buttom);
}
.sidebar_navbar .close:hover {
  color: var(--red);
}
.sidebar_navbar .close:hover span i {
  transform: rotate(180deg);
}
.sidebar_navbar .title-head {
  padding: 20px 5px 5px 5px;
  font-family: "NotoKufi";
  color: rgba(0, 0, 0, 0.8745098039);
  font-size: 16px;
  font-weight: 600;
}
.sidebar_navbar .title-head i {
  color: var(--main-color);
}
.sidebar_navbar a {
  display: block;
  margin: 10px 0;
  border-bottom: 1px solid rgba(133, 131, 131, 0.1568627451);
  border-radius: 5px;
  padding: 5px;
  font-family: "Cairo";
  font-size: 18px;
  font-weight: 600;
}
.sidebar_navbar a i {
  color: var(--main-color);
  font-size: 20px;
  margin-left: 5px;
}
.sidebar_navbar a.active {
  background-color: var(--main-color);
  color: var(--white);
}
.sidebar_navbar a.active i {
  color: var(--white);
}
.sidebar_navbar a:hover {
  background-color: var(--main-color);
  color: var(--white);
}
.sidebar_navbar a:hover i {
  color: var(--white);
}

.overlay.active {
  position: fixed;
  top: 0;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100vh;
}

.header {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 99;
  top: auto;
  bottom: 0;
  height: 12%;
  transition: bottom 0.3s;
  background: var(--header-mobile-only);
  width: 80%;
  margin: 0 auto;
  margin-bottom: 1rem;
  border-radius: var(--border-radius-20);
  padding: 1.5rem 0;
  display: none;
}
.header .container .link {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 0 3.5rem;
}
.header .container .link a i {
  color: var(--black);
  font-size: 25px;
  margin-left: 0rem;
  padding: 0rem;
}

.footer {
  background: var(--second-color-7);
  padding: 0.5rem 0;
  user-select: none;
}
.footer h6 {
  width: 100%;
  color: var(--white);
  font-size: 16px;
  text-align: center;
  font-weight: 100;
  font-family: "Tajawal";
}
.footer h6 a {
  font-size: 16px;
  color: var(--second-color);
}
.footer h6 a:hover {
  color: var(--red);
}

.screen-width {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.screen-width .container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
}
.screen-width .container .logo h1 {
  font-size: 50px;
  font-family: "Bigx";
}
.screen-width .container .content p {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  line-height: 150%;
}
.screen-width .container .content a {
  display: flex;
  background-color: var(--second-color-10);
  color: var(--main-color);
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0;
  margin: 1rem;
}
.screen-width .container .content a:hover {
  background-color: var(--second-color-3);
  color: var(--white);
}
.screen-width .container .content a p {
  font-family: "Tajawal";
  margin-right: 0.4rem;
  font-weight: 600;
}

/*# sourceMappingURL=mainStyle.css.map */
