/*=============== Fonts ===============*/

:root {
    --body-font: "textFont", Arial;
    --main-font: "mainTitle", Arial;
    --sub-title: "subTitle", Arial;
    --title: "Title", Arial;
}

@font-face {
    font-family: "textFont";
    src: url(../Fonts/Cairo-Regular.ttf);
}

@font-face {
    font-family: "subTitle";
    src: url(../Fonts/Cairo-Regular.ttf);
}

@font-face {
    font-family: "mainTitle";
    src: url(../Fonts/Cairo-Bold.ttf);
}

@font-face {
    font-family: "Title";
    src: url(../Fonts/Al-Mothnna.ttf);
}

.textFont {
    font-family: var(--body-font) !important;
}

.mainTitleFont {
    font-family: var(--main-font) !important;
}

.subTitleFont {
    font-family: var(--sub-title) !important;
}

.TitleFont {
    font-family: var(--title) !important;
}

html {
    /* font-family: var(--body-font); */
    /* Base In Font Type Change Values */
    /* font-weight: 800;
    font-style: bold; */
}

body {
    font-family: var(--body-font);
    font-weight: 600;
    direction: rtl;
    line-height: 1.7;
}

.text-start {
    text-align: right !important;
}

.text-end {
    text-align: left !important;
}

.search-box {
    width: max-content;
    height: fit-content;
    position: relative;
}

.input-search {
    height: 50px;
    width: 50px;
    border-style: none;
    padding: 10px;
    font-size: 18px;
    letter-spacing: 2px;
    outline: none;
    border-radius: 25px;
    transition: all 0.5s ease-in-out;
    background-color: var(--secondary-color);
    padding-right: 40px;
    color: #fff;
}

.input-search::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 100;
}

.btn-search {
    width: 50px;
    height: 50px;
    border-style: none;
    font-size: 20px;
    font-weight: bold;
    outline: none;
    cursor: pointer;
    border-radius: 50%;
    position: absolute;
    left: 0px;
    color: #ffffff;
    background-color: var(--secondary-color);
    pointer-events: painted;
}

.btn-search:focus~.input-search {
    width: 50vw;
    border-radius: 20px;
    background-color: var(--secondary-color);
    border-bottom: 1px solid var(--secondary-color);
    transition: all 500ms cubic-bezier(0, 0.11, 0.35, 2);
}

.input-search:focus {
    width: 50vw;
    border-radius: 20px;
    background-color: var(--secondary-color);
    border-bottom: 1px solid var(--secondary-color);
    transition: all 500ms cubic-bezier(0, 0.11, 0.35, 2);
}

/* padding */

.ps-4 {
    padding-right: 1.5rem !important;
}

.ps-3 {
    padding-right: 1rem !important;
}

ol,
ul {
    padding-left: 0rem;
}

.badge.badge-notifications {
    position: absolute;
    top: auto;
    display: inline-block;
    margin: 0;
    transform: translate(36%, -28%) !important;
}

@media (max-width: 768px) {
    .border-sm-start-0 {
        border-left: 0 !important;
    }
}

/* .section-title h4:after {
    position: absolute;
    right: 0;
    bottom: -4px;
} */

.categories__accordion .card-heading a:after,
.categories__accordion .card-heading>a.active[aria-expanded="false"]:after {
    content: "";
    font-size: 14px;
    font-family: "FontAwesome";
    color: #666666;
    position: absolute;
    right: 200px;
    top: 0px;
}

.categories__accordion .card-heading.active a:after {
    content: "";
    font-size: 14px;
    font-family: "FontAwesome";
    color: #666666;
    position: absolute;
    right: 200px;
    top: -1px;
}

.categories__accordion .card-heading a[aria-expanded="true"]:after,
.categories__accordion .card-heading>a.active:after {
    content: "";
    font-size: 14px;
    font-family: "FontAwesome";
    color: #666666;
    position: absolute;
    right: 200px;
    top: -1px;
}

.categories__accordion .card-body li:before {
    position: absolute;
    right: -15px;
    top: 14px;
    height: 1px;
    width: 4px;
    background: #666666;
    content: "";
}

.product__details__widget ul li span {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #111111;
    width: 150px;
    float: right;
}

.product__details__widget ul li .stock__checkbox label {
    display: block;
    padding-right: 20px;
    font-size: 14px;
    color: #666666;
    position: relative;
    cursor: pointer;
}

.product__details__widget ul li .stock__checkbox label .checkmark {
    position: absolute;
    /* left: 0px; */
    right: 0px;
    top: -2px;
    width: 11px;
    height: 5px;
    border: solid #ffffff;
    border-width: 1.5px 1.5px 0px 0px;
    -webkit-transform: rotate(127deg);
    -ms-transform: rotate(127deg);
    transform: rotate(127deg);
    opacity: 0;
    content: "";
}