@import url("https://fonts.googleapis.com/css2?family=Amiri:wght@400;500;600;700;800&display=swap");
*, p, ul {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

html,
body {
  max-width: 100vw;
  overflow-x: hidden;
  font-size: 13px;
}

body {
  direction: rtl;
  min-height: 100vh;
  width: 100vw;
  font-family: "Amiri", serif;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
body img.BackgroundImg {
  position: absolute;
  z-index: -100; /* Background image */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body .FullImage {
  background-color: black; /* Background color for visibility */
  color: white;
  width: 100vw;
  position: fixed; /* Fixed position to stay on top */
  z-index: 100000; /* High z-index to overlay */
  height: 100vh;
  top: 0;
  left: 0;
  display: flex; /* Center content if needed */
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 0.625em;
}
body .FullImage.hide {
  display: none; /* Hide the FullImage when needed */
}
body .FullImage .header {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  padding: 0.375em 0.625em;
}
body .FullImage .header i {
  padding: 5px;
  box-shadow: 1px 1px 0px rgba(0, 0, 0, 0.2196078431);
  cursor: pointer;
  font-size: 1.25em;
  color: #5d5c5c;
}
body .FullImage .Imgcontainer {
  overflow: hidden;
  flex: 1;
  width: 90%;
  position: relative;
  border-radius: 0.625em;
  -webkit-border-radius: 0.625em;
  -moz-border-radius: 0.625em;
  -ms-border-radius: 0.625em;
  -o-border-radius: 0.625em;
}
body .FullImage img.Main {
  filter: drop-shadow(1px 1px 2px black);
  z-index: -1;
  width: -moz-fit-content !important;
  /* width: fit-content !important; */
  max-width: 100%;
  max-height: 100%;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}
body .FullImage img.Second {
  display: none;
  position: absolute;
  top: 0px;
  z-index: -2;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: blur(1px) opacity(0.7);
  -webkit-filter: blur(1px) opacity(0.7);
}
body .TopPageContent {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh; /* Ensure content is tall enough */
  position: relative; /* Allow content to stack normally */
  z-index: 1; /* Lower z-index to keep it beneath FullImage */
}

img.showFullImage {
  cursor: pointer;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

::-webkit-scrollbar {
  width: 0px;
}

::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background-color: rgb(179, 179, 179);
}

.news-ticker {
  box-shadow: 0.25em 0.25em 1em -0.5em rgba(0, 0, 0, 0.68);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  border: 0.125em solid #f6f4f4;
  background-color: rgba(142, 137, 97, 0.9411764706);
  color: white;
  margin: 0.625em auto;
  width: 98%;
  height: 3.125em;
  border-radius: 1.25em;
  -webkit-border-radius: 1.25em;
  -moz-border-radius: 1.25em;
  -ms-border-radius: 1.25em;
  -o-border-radius: 1.25em;
}
.news-ticker .title {
  display: flex;
  align-items: center;
  height: 100%;
  background-color: rgba(142, 137, 97, 0.9411764706);
  position: absolute;
  right: 0px;
  z-index: 1;
  padding: 0px 0.625em 0px 0.4375em;
  font-size: 1.1875em;
  border-radius: 0.5em;
  -webkit-border-radius: 0.5em;
  -moz-border-radius: 0.5em;
  -ms-border-radius: 0.5em;
  -o-border-radius: 0.5em;
}
.news-ticker .news-ticker__content {
  display: flex;
  gap: 1.5625em;
  top: 50%;
  font-size: 1.0625em;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  animation: scroll 35s linear infinite;
  -webkit-animation: scroll 35s linear infinite;
}
.news-ticker .news-ticker__content .Element {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.625em;
}
.news-ticker .news-ticker__content .Element img {
  height: 1.5em;
  width: 1.5em;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-ticker .news-ticker__content .Element i {
  font-size: 0.5em;
}

@keyframes scroll {
  0% {
    transform: translate(0%, -50%);
    right: 100%;
  }
  100% {
    transform: translate(100%, -50%);
    right: 0%;
  }
}
@media (max-width: 1250px) {
  .news-ticker {
    font-size: 0.75em;
  }
}
@media (max-width: 950px) {
  .news-ticker {
    font-size: 10px;
  }
}
@media (max-width: 850px) {
  .news-ticker {
    font-size: 9px;
  }
}
@media (max-width: 500px) {
  ::-webkit-scrollbar {
    width: 0px;
  }
}
@media (max-width: 800px) {
  .TopPageContent {
    display: flex;
    flex-direction: column;
  }
}/*# sourceMappingURL=Body.css.map */