/*public*/

@font-face
{
    font-family: IRANSans;
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/IRANSansWeb.ttf') format('truetype') ;
    font-display: swap;
    /*src: url('./css/font/Vazir.eot?#iefix') format('embedded-opentype'),*/
    /*url('./css/font/Vazir.woff2') format('woff2'),*/
    /*url('./css/font/Vazir.woff') format('woff'),*/
    /*url('./css/font/Vazir.ttf') format('truetype');*/
}

@font-face
{
    font-family: IRANSans;
    font-style: normal;
    font-weight: bold;
    font-display: swap;
    src: url('../fonts/IRANSansWeb_Bold.ttf') format('truetype') ;
    /*src: url('./css/font/Vazir-Bold.eot');*/
    /*src: url('./css/font/Vazir-Bold.eot?#iefix') format('embedded-opentype'),*/
    /*url('./css/font/Vazir-Bold.woff2') format('woff2'),*/
    /*url('./css/font/Vazir-Bold.woff') format('woff');*/

}

*
{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body
{
    direction: rtl;
    font-family: 'IRANSans', serif;
    font-weight: bold;
    background-color: #F2F2F2;
}

a
{
    text-decoration: none;
    color: #000000;
}

::-webkit-scrollbar
{
    width: 9px;
}

::-webkit-scrollbar-thumb
{
    background-color: #E2E3E5;
    border-radius: 9px;
}

/*page*/

span#search_more
{
    font-size: 2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

#headerContainer
{
    background-color: #FFFFFF;
    width: 100%;
    z-index: 10;
    padding: 0 1rem;
    justify-content: space-between;
    height: 4rem;
    display: flex;
    position: sticky;
    top: 0;
}

.header-right
{
    margin: auto 0;
    position: relative;
}

.logoImg
{
    height: 1.8rem;
    width: 11rem;
}

.header-left
{
    margin: auto 0;
}

.header-table
{
    display: none;
}

.heder-link
{
    color: #5C636A;
    padding: 1rem;
}

.searchCity-container
{
    display: flex;
}

.searchCity-input
{
    width: 91px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border: 1px solid #00B074;
    text-align: center
}

.searchCity-input:focus
{
    outline: none;
}

.searchCity-input::-webkit-input-placeholder
{ /* Edge */
    color: #999999;
}

.searchCity-input:-ms-input-placeholder
{ /* Internet Explorer 10-11 */
    color: #999999;
}

.searchCity-input::placeholder
{
    color: #999999;
    font-size: .9rem;
}

.location-btn
{
    margin: auto 0;
    border: 1px solid #00B074;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    padding: .2rem .5rem;
    color: #FFFFFF;
    font-size: 13px;
    background-color: #00B074;
    transition: all .4s ease;
}

.location-btn:hover
{
    background-color: #FFFFFF;
    color: #00B074;
}

.heder-link a
{
    transition: all .4s ease;
}

.heder-link a:hover
{
    color: #00B074;
}

.heder-link a
{
    font-size: 13px;
}

/* Side Navigation Menu */
#sidenavDiv
{
    direction: rtl;
    box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
}

.sidenav
{
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 20;
    top: 0;
    right: 0;
    background-color: #FFFFFF;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidenav a
{
    padding: .5rem 1rem;
    text-decoration: none;
    white-space: nowrap;
    font-size: 15px;
    font-weight: bolder;
    display: block;
    transition: 0.3s;
    color: #BEBEBE;
}

.sidenav .sidenavItem
{
    margin-right: 4rem;
    font-size: 13px;
    font-weight: bold;
    color: #000000;

}

.sidenav a:hover
{
    color: #F1F1F1;
}

.sidenav .closebtn
{
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

@media screen and (max-height: 450px)
{
    .sidenav
    {
        padding-top: 15px;
    }

    .sidenav a
    {
        font-size: 18px;
    }
}

#sidenavBTN
{
    color: #BEBEBE;
    font-size: 25px;
    cursor: pointer;
    position: absolute;
    top: -2px;
    right: -6px;
}

/* Side Navigation Menu Ends */


/* Modal */
#ModalDiv.modal
{
    display: none;
    position: fixed;
    z-index: 20;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

/* Modal Content/Box */
#ModalContentDiv.modal-content
{
    background-color: #FEFEFE;
    padding: 1rem;
    width: 100%;
    height: 100vh;
}


/* The Close Button */
.close
{
    color: #AAAAAA;
    float: right;
    line-height: 28px;
    margin-left: .5rem;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus
{
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Modal Ends */

#searchBox::-webkit-scrollbar
{
    display: none; /* Hide scrollbar for Chrome, Safari and Opera */
}

#searchBox
{
    -ms-overflow-style: none; /* Hide scrollbar for IE and Edge */
    scrollbar-width: none; /* Hide scrollbar for Firefox */
}

#searchBox
{
    position: sticky;
    top: 4rem;
    overflow: auto;
    white-space: nowrap;
    background-color: #2B3940;
    display: flex;
    padding: .8rem;
    box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
    z-index: 5;
}

.searchBox-btn
{
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    margin: 0 .2rem;
    padding: .1rem 1rem;
    background-color: #FFFFFF;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
}

.searchFilter-btn
{
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    margin: 0 .2rem;
    padding: .1rem 1rem;
    background-color: #E9CFCF;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border: 1px #BC081A;
}

#newRecruitmentDiv
{
    margin: 1rem;
}

#newRecruitmentTitle
{
    display: flex;
    justify-content: center;
}

.swiper-container
{
    margin-top: .5rem;
    padding: 1.9rem 0 1rem 0;
}

.swiper-slide
{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    border-radius: 7px;
    padding: 2rem .5rem 0 .5rem;
    width: 17rem;
    height: 7rem;
    border: 1px solid #00B074;
    background-color: #FFFFFF;
    box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
}

.swiper-slide-1
{
    border: 1px solid #9600F0;
    background-color: #FFFFFF;
}

.swiper-slide-2
{
    border: 1px solid #FF0033;
    background-color: #FFFFFF;
}

.swiper-slide > a > p
{
    font-size: .8rem;
}

.swiper-slide-icone
{
    position: absolute;
    right: 7.5rem;
    top: -1rem;
    font-size: 22px;
    border: 1px solid #00B074;
    border-radius: 100%;
    padding: 4px 6px;
    color: #FFFF;
    background-color: #00B074;
    box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
}

.swiper-slide-icone-1
{
    border: 1px solid #9600F0;
    background-color: #9600F0;
}

.swiper-slide-icone-2
{
    border: 1px solid #FF0033;
    background-color: #FF0033;
}

.swiper-slide-title
{
    margin: 0;
    padding-bottom: .5rem;
}

.swiper-slide-active
{
    transform: scale(1.2);
    transition: .4s;
}

.swiper-slide-footer
{
    display: flex;
    justify-content: space-around;
}

.swiper-slide-footer p
{
    font-size: 11px;
}

.swiper-slide-footer-item .fa
{
    font-size: 1rem;
}

.swiper-button-prev, .swiper-button-next
{
    margin-top: .5rem;
}

#recruitmentCard
{
    margin: 1rem 0;
    padding: 1rem;
    background-color: #DDA0DD;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
}

.NewRecruitment1
{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.NewRecruitment2
{
    margin: 0 auto;
    width: 100%;
}

.recruitmentText
{
    text-align: center;
    display: block;
    margin: .5rem 0;
    padding: 1rem;
    color: #000000;
    border-radius: 20px;
    transition: all .4s ease;
}

.recruitmentText:hover
{
    padding: 1rem;
    box-shadow: rgba(0, 0, 0, 0.19) 0 10px 20px, rgba(0, 0, 0, 0.23) 0 6px 6px;
}

.fa-fire
{
    margin: 0 .3rem;
    padding: .3rem;
    color: #FF0000;
}

#recruitmentCard1
{
    margin: 1rem 0;
    padding: 1rem;
    background-color: #86B7FE;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
}

#recruitmentCard2
{
    margin: 1rem 0;
    padding: 1rem;
    background-color: #E6DBB9;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
}

.newRecruitmentCard
{
    margin: .5rem 0;
    padding: 1.5rem 1rem 0;
    border: .1rem solid #00B074;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    background-color: #FFFFFF;
    box-shadow: rgba(0, 0, 0, 0.19) 0 10px 20px, rgba(0, 0, 0, 0.23) 0 6px 6px;
}


.newRecruitmentCardEmployee
{
    margin: .5rem 0;
    padding: 1.5rem 1rem 0;
    border: .1rem solid #00B074;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    background-color: #FFFFFF;
    box-shadow: rgba(0, 0, 0, 0.19) 0 10px 20px, rgba(0, 0, 0, 0.23) 0 6px 6px;
}

.Section1
{
    display: flex;
}

.NewRecruitment-img
{
    width: 3rem;
    height: 3rem;
    border-radius: 50%; /* make img circle */
}

.NewRecruitment-title
{
    display: inline;
    padding-top: 10px;
}

.NewRecruitment-badge
{
    color: #000000;
    border-radius: 15px;
    padding: .1rem .5rem;
    background-color: #B6D4FE;
    font-size: .7rem;
    white-space: nowrap;
}

.NewRecruitment-badge-gold
{
    color: #000000;
    border-radius: 15px;
    padding: .1rem .5rem;
    background-color: #FFD700;
    font-size: .7rem;
    white-space: nowrap;
}

.NewRecruitment-badge-active
{
    color: #000000;
    border-radius: 15px;
    padding: .1rem .5rem;
    background-color: #8EF68F;
    font-size: .7rem;
    white-space: nowrap;
}

.NewRecruitment-badge-not-active
{
    color: #FFFFFF;
    border-radius: 15px;
    padding: .1rem .5rem;
    background-color: #F89A9A;
    font-size: .7rem;
    white-space: nowrap;
}

.NewRecruitment-badge-red
{
    color: #000000;
    border-radius: 15px;
    padding: .1rem .5rem;
    background-color: #F1908D;
    font-size: .7rem;
    white-space: nowrap;
}

.Section1 img
{
    margin: 0 .5rem;
}

#RecruitmentCard-Title
{
    margin: 0 auto;
}

.RecruitmentCard-Text
{
    color: #4B4B4B;
    margin: 1rem 0;
    font-size: 1.1rem !important;
    padding: 5px;
}

.RecruitmentCard-Tags
{
    margin: 1rem 0;
    display: flex;
    flex-wrap: wrap;
}

.RecruitmentCard-Tag
{
    margin: .3rem .2rem;
    padding: .1rem .5rem;
    background-color: #F3F9FC;
    border: 1px solid #002D83;
    font-size: .8rem;
    white-space: nowrap;
    border-radius: 10px;
}


.RecruitmentCard-footer
{
    text-align: center;
    background-color: #E6F7F1;
    width: content-box;
    border-radius: 10px;
}

.RecruitmentCard-footer-empty
{
    margin-top: 15px;
}

.RecruitmentCard-Footer
{
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
}

.footer-item
{
    margin: 0 .5rem;
}

/*.select2-input
{
    margin: .5rem auto;
}*/

/*.select2-selection
{
    width: 20rem;
}*/

.form-button
{
    width: 100%;
    padding: .8rem;
    display: flex;
    position: fixed;
    right: 0;
    bottom: 0;
    background-color: #E2E3E5;
    box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
}

#SubmitBTN
{
    background-color: #B02A37;
    border: 1px solid #B02A37;
    color: #FFFFFF;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    width: 100%;
    padding: .5rem 0;
    margin: 0 auto;
    font-size: 1rem;
}

.Footer
{
    padding: 3rem 1.5rem;
    background-color: #1D292E;
    color: #FFFFFF;
}

.FooterTop
{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.FooterTop-section1
{
    text-align: center;
}

.FooterTop-section2
{
    margin-top: 2rem;
    text-align: center;
}

.FooterLogin
{
    background-color: transparent;
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    border-radius: 6px;
    padding: 1rem 0;
    width: 12rem;
    transition: all .4s ease;
}

.FooterLogin:hover
{
    background-color: #FFFFFF;
    border: 1px solid #FFFFFF;
    color: #1D292E;
}

.FooterRegister
{
    background-color: #00B074;
    border: 1px solid #00B074;
    color: #FFFFFF;
    border-radius: 6px;
    padding: 1rem 0;
    margin: .5rem 0;
    width: 12rem;
}

.Footer-hr
{
    margin: 3rem 0;
}

.FooterBotton
{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.Footer-section1
{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 20rem;
    margin: 1rem 0 0 5rem;
    height: 15rem;
}

.Footer-Contactus
{
    display: flex;
}

.Footer-section2, .Footer-section3, .Footer-section4, .Footer-section5
{
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 1rem 0;
}

.section-header
{
    color: #6B6E6F;
}

.section-title
{
    margin: .5rem 0;
    color: #FFFFFF;
    transition: all .4s ease;
}

.section-title:hover
{
    color: #00B074;
}

.FooterFixed
{
    display: flex;
    justify-content: space-around;
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    padding: .5rem;
    z-index: 10;
    background-color: #1D292E;
}

.FooterFixed-left
{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.FooterFixed-btn1, .FooterFixed-btn3
{
    background-color: transparent;
    border: 1px solid #00B074;
    color: #00B074;
}

.FooterFixed-btn1:hover, .FooterFixed-btn3:hover
{
    background-color: #00B074;
    color: #FFFFFF;
}

.FooterFixed-btn2
{
    background-color: transparent;
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    border-radius: 5px;
}

.FooterFixed-btn2:hover
{
    background-color: #FFFFFF;
    color: #1D292E;
}

.FooterFixed-btn1, .FooterFixed-btn2, .FooterFixed-btn3
{
    padding: .2rem .5rem;
    border-radius: 5px;
    transition: all .4s ease;
}

@media screen and (min-width: 768px)
{


    #headerContainer
    {
        justify-content: space-between;
        padding: .5rem 3rem;
    }

    .header-left
    {
        display: flex;
    }

    .logoImg
    {
        margin: auto -10px;
    }

    .searchCity-input
    {
        width: 91px;
        height: 32px;
        margin: auto 0;
    }

    .location-btn
    {
        height: 2rem;
        margin: auto 0;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        padding: .3rem .5rem;
        font-size: 13px;
    }

    #ModalContentDiv.modal-content
    {
        margin: 0 auto;
        width: 50%;
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
    }

    #FormInputs
    {
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: start;
    }

    /*.select2-input
    {
        margin: .5rem auto;
        width: 19rem;
    }*/
    /*.select2-selection
    {
        margin: auto;
        width: 19rem;
    }*/
    .form-button
    {
        width: 50%;
        right: 25%;
        left: 50%;
        border-bottom-right-radius: 5px;
        border-bottom-left-radius: 5px;
    }

    #SubmitBTN
    {
        width: 50%;
    }

    .swiper-container
    {
        padding: 1.1rem 0 1rem 0;
    }

    .swiper-slide-active
    {
        transform: unset;
        transition: unset;
    }

    #newRecruitmentDiv
    {
        margin: 1rem 4rem;
    }

    #recruitmentCard, #recruitmentCard1, #recruitmentCard2
    {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        transition: all .4s ease;
    }

    #recruitmentCard:hover, #recruitmentCard1:hover, #recruitmentCard2:hover
    {
        box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
    }

    .recruitmentText
    {
        width: calc(100% / 3);
    }

    .NewRecruitment2
    {
        margin: 0 auto;
        width: 50%;
    }

    .newRecruitmentCard
    {
        margin: .5rem;
    }


    .newRecruitmentCardEmployee
    {
        margin: .5rem;
    }

    .Section1
    {
        display: flex;
    }

    .Footer
    {
        padding: 6rem 5rem;
        background-color: #1D292E;
        color: #FFFFFF;
    }

    .FooterBotton
    {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .Footer-section2, .Footer-section3, .Footer-section4, .Footer-section5
    {
        width: 10rem;
    }

    .footer-fixed
    {
        bottom: .2rem;
        left: 50%;
        height: fit-content;
        justify-content: center;
        background-color: transparent;
    }

    .footer-fixed-container
    {
        border-radius: 10px;
        padding: .8rem 1rem;
        background-color: #002e84;
        box-shadow: rgba(0, 0, 0, 0.19) 0 10px 20px, rgba(0, 0, 0, 0.23) 0 6px 6px;
    }

    .FooterFixed-btn1, .FooterFixed-btn2, .FooterFixed-btn3
    {
        margin: 0 .2rem;
    }

}

@media screen and (min-width: 992px)
{

    .FooterTop
    {
        display: flex;
        justify-content: space-between;
        margin-bottom: 4rem;
        position: relative;
    }

    .FooterTop-section1
    {
        text-align: right;
    }

    .FooterTop-section2
    {
        position: absolute;
        top: -35px;
        left: 0;
    }
}

@media screen and (min-width: 1200px)
{
    .header-table
    {
        display: block;
    }

    #sidenavBTN
    {
        display: none;
    }
}


/**
test
 */


::selection
{
    color: #FFFFFF;
    background: #664AFF;
}

.wrapper
{
    margin: auto 0;
}

.wrapper .search-input
{
    background: #FFFFFF;
    width: 100%;
    border-radius: 5px;
    position: relative;
    box-shadow: 0 1px 5px 3px rgba(0, 0, 0, 0.12);
}

.search-input input
{
    height: 40px;
    width: 100%;
    outline: none;
    border: none;
    border-radius: 5px;
    padding: 0 60px 0 20px;
    font-size: 18px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.search-input.active input
{
    border-radius: 5px 5px 0 0;
}

.search-input .autocom-box
{
    padding: 0;
    opacity: 0;
    pointer-events: none;
    max-height: 280px;
    overflow-y: auto;
}

.search-input.active .autocom-box
{
    padding: 10px 8px;
    opacity: 1;
    pointer-events: auto;
}

.autocom-box li
{
    list-style: none;
    padding: 8px 12px;
    display: none;
    width: 100%;
    cursor: default;
    border-radius: 3px;
}

.search-input.active .autocom-box li
{
    display: block;
}

.autocom-box li:hover
{
    background: #EFEFEF;
}

.search-input .icon
{
    position: absolute;
    top: -6px;
    height: 55px;
    width: 55px;
    text-align: center;
    line-height: 55px;
    font-size: 20px;
    color: #00B074;
    cursor: pointer;
}

.select2-selection--multiple .select2-search__field
{
    width: 100% !important;
}

.select2-dropdown
{
    z-index: 1070 !important;
}

.modal-header .btn-close
{
    margin: unset !important;
}

.ICON
{
    width: 1.2em;
    height: 1.2em;
    vertical-align: -.300em;
}

.ICON1
{
    font-size: 2rem;
    width: 1.2em;
    height: 1.2em;
    vertical-align: -.300em;
}

/*div.stars{
    margin-top: 5px !important;
}*/

div.stars > img{
    margin: unset;
}


/**
new changes
 */

.j-RelatedAds-container
{
    padding: 1rem;
}

.s-Related-Ads-box
{
    margin: 1rem 0;
    border: 1px solid #999999;
    background-color: #FFFFFF;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
    max-height: 30vh;
    overflow: auto;
}

.j-suggestion_items, .j-relatedAds_items
{
    height: auto;
    max-height: 10rem;
    overflow: scroll;
    -ms-overflow-style: none; /* Hide scrollbar for IE and Edge */
    scrollbar-width: none; /* Hide scrollbar for Firefox */
}

.j-suggestion_items::-webkit-scrollbar, .j-relatedAds_items::-webkit-scrollbar
{
    display: none; /* Hide scrollbar for Chrome, Safari and Opera */
}

.s-Related-Ads-box > header
{
    padding: .2rem .5rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #999999;
}

.s-Related-Ads-box > header > img
{
    width: 1.5rem;
}

.s-Related-Ads-box > header > h5
{
    margin: 0 .5rem 0 0;
    font-size: 1rem;
}

.s-Related-Ads-link
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .1rem .5rem;
    font-weight: 200;
    border-bottom: 1px solid #999999;
    transition: .4s;
}

.s-Related-Ads-link:hover
{
    background-color: #B8B8B8;
    color: #FFFFFF;
}

.s-Related-Ads-link:last-child
{
    border-bottom: 0;
    border-radius: 0 0 7px 7px;
    -webkit-border-radius: 0 0 7px 7px;
    -moz-border-radius: 0 0 7px 7px;
}

.s-Related-Ads-link > span
{
    font-size: 12px;
}

.s-Related-Ads-tags
{
    display: flex;
}


.s-Related-Ads-tags span
{
    font-size: 10px;
    margin: .1rem;
    padding: .1rem .2rem;
    background-color: #00B074;
    color: #FFFFFF;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
}

.s-Related-Ads-tags span:last-child
{
    background-color: #999999;
}

@media screen and (min-width: 768px)
{
    .s-RelatedAds-container
    {
        display: flex;
        margin: 1rem 0;
    }



    .s-Related-Ads-box
    {
        width: 100%; /*50%*/
        margin: 0 .5rem;
        /*height: 40vh;
        overflow: auto;*/
    }

    .j-RelatedAds-container
    {
        padding: 1rem 0;
    }
}

.text-blue {
    color: #23438D;
}


span.show-info{
    cursor:pointer;
    padding-top: 5px;
}

a.show-info{
    cursor:pointer !important;
    padding-top: 5px !important;
}

a.link-blue{
    color: #0a58ca;
}

.fonts-1rem
{
    margin-bottom: 0 !important;
    font-size: 0.8rem;
    font-weight:bold;
    line-height: 1.3;
    color: #FFFFFF;
    -webkit-text-size-adjust: 100%;
}

.employments-container {
    padding: .5rem;
    border: 2px solid;
    border-radius: 15px;
    color: #002d83;
    background-color: #002d83;
}

.employees-container {
    padding: .5rem;
    border: 2px solid;
    border-radius: 15px;
    color: #002d83;
    background-color: #002d83;
}

.fonts-1rem-white
{
    font-size: 1rem;
    font-weight:bold;
    line-height: 1.5;
    align-content: center;
    -webkit-text-size-adjust: 100%;
}


.h-popular-categories-container > div.dmh {
    text-align: center;
    margin-bottom: 2rem;
    width: 100%;
    font-size: calc(1.375rem + 1.5vw);
}

.pl{
    padding-left: 3px;
}
.pr{
    padding-right:3px;
}

.h2-heading-search-et{
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
}

div.search-related-post {
    width: calc(100% - 40px);
    border: 2px solid #2F1919;
    height: auto;
    padding:20px;
    margin: 20px;
    border-radius: 10px;

}

div.search-related-post > h3,h2 {
    margin-top: 1.8rem;
    margin-bottom: 0;
}


.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    /*padding-bottom :5px;*/
    font-size: 0.8rem;
    margin: 0;
    justify-content: start;

}

.breadcrumbs-item {
    display: inline-flex;
    align-items: center; /* Align items vertically */
}

.breadcrumbs-item + .breadcrumbs-item::before {
    content: ">";
    padding: 0 4px;
    color: #4E5863;
}

.breadcrumbs-item a {
    color: #007bff;
    text-decoration: none;
    white-space: nowrap; /* Prevent text from wrapping */
}

.breadcrumbs-item.active {
    color: #6c757d;
    text-decoration: none;
    white-space: nowrap; /* Prevent text from wrapping */
}

.tt-menu {
    top: auto !important;
    bottom: 100%; /* Position above the input */
}
.filter-radio {
    margin-right: 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.breadcrumbs-container {
    padding-right: 1rem;
    padding-top: .5rem;
    padding-bottom: .5rem;
    background-color: #FFFFFF;
}

.container-filter, .modal-body-filter {
    padding-right: 5px !important;
    padding-left: 5px !important;
}
@media screen and (min-width: 720px)
{
    .breadcrumbs-item + .breadcrumbs-item::before {
        padding: 0 8px;
    }

    ol.breadcrumbs {
        justify-content: unset;
        font-size: 1.2rem;
    }
    #newRecruitmentTitle
    {
        justify-content: space-between;
    }
    .container-filter {
        padding-right: 15px !important;
        padding-left: 15px !important;
    }
    /*.modal-body-filter
    {
        padding-right: 15px;
        padding-left: 15px;
    }*/

    .fonts-1rem
    {
        font-size: 1rem;
        line-height: 1.5;
    }
}



