:root{
    --bg-color: #f5f5f5;
    --main-color: #ecf0f1;
    --white-color: #fff;
    --bg-content-color: #4e5947;
    --icon-background: rgb(78 89 71 / 40%);
    --icon-list-color: rgb(78 89 71 / 90%);

    /* --font-family-primary: 'Assistant'; */

    /* --font-family-FbReadingHebEng-Light: 'FbReadingHebEng-Light'; */

    --font-family-Heebo-Light: 'Heebo-Light';
    --font-family-Heebo-Regular: 'Heebo-Regular';
    --font-family-Heebo-Medium: 'Heebo-Medium';
    --font-family-Heebo-Bold: 'Heebo-Bold';

    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 900;
}
*{
    box-sizing: border-box;
}
body{
    direction: rtl;
    /* background: var(--bg-color); */
    font-family: var(--font-family-Heebo-Regular);
    font-weight: var(--font-weight-regular);
}
h1,h2,h3,h4,h4,h5{
    font-family: var(--font-family-Heebo-Bold);
    font-weight: var(--font-weight-bold);
}
ul, ol{
    padding-right: 0;
    list-style: none;
}
a{
    text-decoration: none;
}
p{
    font-family: var(--font-family-Heebo-light);
    font-weight: var(--font-weight-light);
    color: var(--bg-content-color);
    margin-bottom: 1vh;
}
.cc-body{
    color: var(--white-color);
}
.global-btn {
    background-color: var(--bg-color);
    font-size: 24px;
    line-height: 28px;
    border-radius: 7px;
    font-weight: 400;
    padding: 10px 38px;
    border: 1px solid var(--main-color);
    color: var(--white-color);
    position: relative;
    font-family: var(--font-family-Heebo-Light);
}
.global-btn:hover {
    background: none;
    color: var(--main-color);
}
.w-fit-content{
    width: fit-content;
}
