* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: none;
  outline: none;
  text-transform: capitalize;
  transition: 0.3s color,0.3s background ease;
  font-family: "Tajawal", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    /* optional: better smoothing on some browsers */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::after,
::before {
  pointer-events: none;
}

body[dir="rtl"] {
  * {
    text-transform: uppercase;
  }
}

input[type='checkbox'] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary);
  border-radius: 4px;
  cursor: pointer;
  display: grid;
  place-content: center;
}

input[type='checkbox']::before {
  content: "";
  width: 10px;
  height: 10px;
  transform: scale(0);
  transition: transform 0.15s ease-in-out;
  background-color: var(--primary);
}

input[type='checkbox']:checked::before {
  transform: scale(1);
}

::placeholder {
  transform-origin: right;
  transition: var(--transition);
}

input:focus::placeholder,
textarea:focus::placeholder {
  scale: 0.85;
  transform: translateY(-12px);
}

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

*[data-aos] {
  will-change: opacity, transform;
}

html {
  direction: rtl;
}

::-webkit-scrollbar {
  width: 0.4rem !important;
}

::-webkit-scrollbar-track {
  background: rgb(226, 225, 225);
}

::-webkit-scrollbar-thumb {
  background-color: var(--primary) !important;
  border-radius: 0px !important;
}


::-webkit-scrollbar-thumb:active {
  cursor: grabbing;
}



@media (hover: none) {
 ::-webkit-scrollbar{
  width: 0px !important;
  height: 0px !important;
 }
}

body {
  overflow-x: hidden;
}

body
 {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column !important;
}


.pt{
  padding-top: 50px;
}


main {
  flex-grow: 1;
  /* overflow: hidden; */
}

footer {
  margin-top: auto;
}

footer,
section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: 50px;
}


input{
  accent-color: var(--accent);
}

select {
  appearance: none;
  background-color: transparent;
}

ul {
  list-style: none;
}

li {
  display: inline-block;
}

img,
svg {
  height: 100%;
  vertical-align: middle;
}

img {
  width: 100%;
}
svg,i {
  transition: var(--transition);
}
a,
button {
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition);
}

img,
svg,
i,
path,
button,
a,
dialog,
video {
  user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6{
  line-height: 1.125;
}
p {
  line-height: 1.5;
}

.container {
  padding-inline: 1rem;
  margin-inline: auto;
  height: 100%;
}

.fullScreen {
  min-height: 100vh;
  min-height: 100dvh;
}


button *{
  pointer-events: none;
}

i{
  pointer-events: none;
}

::placeholder {
  color: var(--primary);
  opacity: 0.75;
  min-height: 24px;
}

.date::placeholder
{
  transform: none !important;
}
/* إذا كنت تستخدم Flatpickr */
.flatpickr-calendar {
    z-index: 100000000 !important;
}

/* إذا كنت تستخدم jQuery UI Datepicker */
#ui-datepicker-div {
    z-index: 100000000 !important;
}

/* ======CONTAINER MEDIA============= */

@media (min-width: 768px) {
  .container {
    width: 720px;
  }
}

@media (min-width: 1024px) {
  .container {
    width: 992px;
  }
}

@media (min-width: 1280px) {
  .container {
    width: 1200px;
  }
}


