*, ::after, ::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --nav-text-color: #757575;
    --next-show-color: #FFFFFFA3;
    --live-color: #FFFFFF;
    --line-color: rgba(112,112,112,0.2);
    --post-text-color: #616161;
    --relate-text-color: #818181;
    --bg-gray-1: #F7F7F7;
    --bg-gray-2: #E9E9E9;
    --bg-blue-1: #3B4F87;
    --bg-blue-2: #0180C7;
    --bg-orange-1: #DC4234;
    --new-heading-text-color: #000000DE;
    --category-color: #00000099;
    --small-category-color: #9E9E9E;
    --category-line-color: #707070DE;
    --main-red: #7F0000;
    --icon-color-1: #00000052;
    --roboto-font: 'Roboto Slab', serif;
    --merri-font: 'Merriweather', serif;
    --barlow-semi-font: 'Barlow Semi Condensed', sans-serif;
}

/* Config */
.controll-type-font {
    font-family: var(--barlow-semi-font);
    font-size: 18px;
    color: #00000080;
}

.aspect-16-9 {
    position: relative;
    display: block;
}

    .aspect-16-9::before {
        content: '';
        display: block;
        width: 100%;
        padding-bottom: 56.25%;
    }

.aspect-content {
    position: absolute;
    top: 0;
    width: 100%;
    object-fit: cover;
}
/* Content */
.search-page > .page-header h1 {
    font-size: 32px;
    font-family: var(--barlow-semi-font);
    font-weight: bold;
    color: var(--main-red);
}

.search-page > .row > .main-content > .col > .search-bar-box input {
    width: 95%;
    font-size: 18px;
    font-family: var(--barlow-semi-font);
    color: var(--new-heading-text-color);
    border: 1px solid var(--line-color);
    border-right: none;
}

    .search-page > .row > .main-content > .col > .search-bar-box input:focus {
        outline: none;
    }

.search-page > .row > .main-content > .col > .search-bar-box button {
    width: 5%;
    border: 1px solid var(--line-color);
    border-left: none;
    color: var(--icon-color-1);
}

.search-page > .row > .main-content > .col > .search-controll > .type-controll a {
    color: #000000;
    text-decoration: none;
}

.nav-tab-active {
    color: var(--main-red) !important;
    text-decoration: underline !important;
}
/* Select Start */
.custom-select {
    position: relative;
    font-family: var(--barlow-semi-font);
}

    .custom-select select {
        display: none; /*hide original SELECT element:*/
    }

/*style the arrow inside the select element:*/
.select-selected:after {
    position: absolute;
    content: "";
    top: 14px;
    right: 3px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: var(--icon-color-1) transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
    border-color: transparent transparent var(--icon-color-1) transparent;
    top: 7px;
}

/*style the items (options), including the selected item:*/
.select-items div {
    color: #212121;
    padding: .25em 0 .25em .25em;
    background-color: #FFFFFF;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 4px 5px;
    cursor: pointer;
    user-select: none;
}

    .select-items div:not(:last-child) {
        box-shadow: rgba(0, 0, 0, 0.24) 0px 10px 8px;
    }

.select-selected {
    width: 120px;
    color: #212121;
    padding: .25em 1em .25em .25em;
    background-color: #FFFFFF;
    border: 1px solid var(--line-color);
    cursor: pointer;
    user-select: none;
}

/*style items (options):*/
.select-items {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

/*hide the items when the select box is closed:*/
.select-hide {
    display: none;
}

.select-items div:hover, .same-as-selected {
    background-color: var(--main-red);
    color: #FFFFFF;
}
/* Select End */
.search-page > .row > .main-content > .col > .search-result > .number-of-result p {
    font-family: var(--barlow-semi-font);
    font-size: 26px;
}

.search-page > .row > .main-content > .col > .search-result {
    border: 1px solid var(--line-color);
    border-left: none;
}

    .search-page > .row > .main-content > .col > .search-result::after {
        content: '';
        position: absolute;
        top: -1px;
        right: -1px;
        width: 17px;
        height: 20px;
        background-color: #fff;
    }

    .search-page > .row > .main-content > .col > .search-result::before {
        content: '';
        position: absolute;
        bottom: -1px;
        right: -1px;
        width: 17px;
        height: 20px;
        background-color: #fff;
    }

    .search-page > .row > .main-content > .col > .search-result > .number-of-result p span {
        font-weight: bold;
    }

    .search-page > .row > .main-content >
    .col > .search-result > .result-box > .news-box .img-box {
        width: 45%;
    }

    .search-page > .row > .main-content >
    .col > .search-result > .result-box > .news-box .info-box {
        width: 53%;
    }

        .search-page > .row > .main-content >
        .col > .search-result > .result-box > .news-box .info-box h3 {
            font-size: 22px;
            font-family: var(--roboto-font);
            font-weight: bold;
            color: #000000DE;
        }

        .search-page > .row > .main-content >
        .col > .search-result > .result-box > .news-box .info-box > p {
            font-size: 14px;
            font-family: var(--merri-font);
            color: var(--post-text-color);
        }

        .search-page > .row > .main-content >
        .col > .search-result > .result-box > .news-box .info-box .category-box {
            font-size: 14px;
            color: var(--small-category-color);
            font-family: var(--barlow-semi-font);
        }

            .search-page > .row > .main-content >
            .col > .search-result > .result-box > .news-box .info-box .category-box .count-num {
                color: var(--main-red) !important;
            }

    .search-page > .row > .main-content >
    .col > .search-result > .result-box > .news-box {
        border-top: 1px solid var(--line-color);
    }

        .search-page > .row > .main-content >
        .col > .search-result > .result-box > .news-box:first-child {
            border: none;
        }

.search-page > .row > .main-content >
.col > .pagination-box ul {
    list-style: none;
}

    .search-page > .row > .main-content >
    .col > .pagination-box ul li a {
        text-decoration: none;
        padding: 4px 13px;
        font-size: 16px;
        font-family: var(--barlow-semi-font);
        font-weight: bold;
        display: block;
        color: #00000080;
        border: 1px solid #70707080;
    }

    .search-page > .row > .main-content >
    .col > .pagination-box ul li:hover a {
        border: 1px solid var(--main-red);
        background-color: var(--main-red);
        color: #fff;
    }

.active-pagination {
    border: 1px solid var(--main-red) !important;
    background-color: var(--main-red) !important;
    color: #fff !important;
}

.suggest-search {
    position: absolute;
    /*top: 11%;*/
    width: fit-content;
    background-color: #fff;
    z-index: 999;
    box-shadow: 0 3px 8px rgb(0 0 0 / 5%);
    /*border: 1px solid rgba(0,0,0,.1);*/
    font-size: 13px;
    color: var(--dark);
}

    .suggest-search > ul {
        list-style: none;
        padding-left: 0;
        margin: 0;
    }

        .suggest-search > ul > li > a:hover {
            background-color: gainsboro;
        }

        .suggest-search > ul > li > a {
            padding: 8px 10px;
            width: 100%;
            display: block;
            position: relative;
            text-decoration: none;
            cursor: pointer;
            color: inherit;
            font-style: normal;
            font-stretch: normal;
            letter-spacing: normal;
        }

            .suggest-search > ul > li > a > div > mark {
                padding: 0 !important;
            }
.banner-ads {
    position: fixed;
    z-index: -1;
    width: 18%;
    top: 1%;
}

.openApp {
    display: none;
}
@media only screen and (min-device-width: 1200px) and (max-device-width: 1412px) {
    /* MENU */
    .menu > .nav > .nav-item > .nav-link {
        border-right: 0.3px solid var(--line-color);
        height: 100%;
        padding: 0 0.58rem !important;
    }

    footer > .menu > .nav > .nav-item > .nav-link {
        border-right: 0.3px solid var(--line-color);
        height: 100%;
        padding: 0 0.96rem !important;
    }
}
