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

:root {
    --body-font: 'textFont', sans-serif;
    --main-title: 'mainTitle', sans-serif;
    --sub-title: 'subTitle', sans-serif;
}

@font-face {
    font-family: 'textFont';
    /* src: url(../Fonts/Sora-SemiBold.otf); */
}

@font-face {
    font-family: 'mainTitle';
    src: url(../Fonts/Sora-Bold.otf);
    /* font-weight: 900 !important;
    font-style: bold; */
}

@font-face {
    font-family: 'subTitle';
    src: url(../Fonts/Sora-Thin.otf);
    /* font-weight: 100 !important;
    font-style: normal; */
}

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

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

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

html {
    font-family: var(--body-font);
    direction: ltr !important;
    /* Base In Font Type Chang Values */
    font-weight: 800;
    font-style: bold;
}

body {
    font-family: var(--body-font);
    direction: ltr !important;
    /* line-height: 1.7; */
}



.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 .5s ease-in-out;
    background-color: var(--secondary-color);
    padding-right: 40px;
    color: #fff;
}

.input-search::placeholder {
    color: rgba(255, 255, 255, .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.110, 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.110, 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;
    }
}

svg {
    transform: scaleX(-1);
}

svg {
    direction: ltr !important;
}
