/* start modern css */
*,
*::before,
*::after {
    box-sizing: border-box;
}
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin: 0;
}
ul,
ol[role='list'] {
    list-style: none;
}
html:focus-within {
    scroll-behavior: smooth;
}
a:not([class]) {
    text-decoration-skip-ink: auto;
}
a{
    text-decoration: none;
}
img,
picture {
    max-width: 100%;
    display: block;
}
input,
button,
textarea,
select {
    font: inherit;
}
/* end modern css */
/* start global style */
:root{
   --main-color: rgba(37, 36, 34, 1);
   --gray-color: rgba(46, 45, 43, 1);
}
body {
    font-family: "Urbanist", sans-serif;
    background-color: var(--main-color);
}
::-webkit-scrollbar {
    width: 6px;
  }
::-webkit-scrollbar-track{
    background-color: rgb(54, 54, 53);
}
::-webkit-scrollbar-thumb{
    background-color: rgb(94, 93, 93);
}
::-webkit-scrollbar-thumb:hover{
    background-color: rgb(94, 93, 93);
}
/* end global style */
.error-msg {
    font-size: 12px;
    font-weight: 400;
    color: #EB5757;
    margin-top: 5px;
    margin-inline: 23px;
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 0px !important;
}
.error-txt {
    min-width: 14px;
    min-height: 14px;
    border: 1px solid;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom:0px !important
}
.error-icon {
    font-size: 8px !important;
}
/* rtl */
[dir= rtl] body{
    direction: rtl;
    font-family: "Tajawal", sans-serif;
}