/* global */
* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

ul li {
    list-style: none;
}

a {
    text-decoration: none !important;
    color: inherit !important;
}

    a:hover {
        text-decoration: none;
        color: white;
    }
.hover-most-read:hover h3 {
    color: #bd262b !important;
}
button {
    border: none !important;
}

@font-face {
    font-family: 'HacenTunisiaBd';
    src: url('../Fonts/alfont_com_Hacen-Tunisia.ttf');
}

@font-face {
    font-family: 'HacenTunisiaBd-bold';
    src: url('../Fonts/Hacen Tunisia Bold.ttf');
}

@font-face {
    font-family: 'Almarai-Light';
    src: url('../Fonts/Almarai/Almarai-Light.ttf')
}

@font-face {
    font-family: 'Almarai-Regular';
    src: url('../Fonts/Almarai/Almarai-Regular.ttf')
}

@font-face {
    font-family: 'Almarai-Bold';
    src: url('../Fonts/Almarai//Almarai-Bold.ttf')
}

body {
    background: #fff;
    font-family: HacenTunisiaBd !important;
    padding: 0px;
    margin: 0px !important;
    overflow-x: hidden;
}

.content {
    margin-bottom: 50px;
}

/* Header */
.header {
    background-image: url('../images/header/background-header.png');
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    height: auto;
}

.img-menu {
    width: 25px;
    height: 20px;
}

.logo-header {
    width: 82px;
    height: 40px;
    margin-top: 14px;
    margin-left: 30px;
    object-fit: contain;
}

.list-style {
    list-style: none;
    display: flex;
    gap: 10px
}

.align-header {
    display: flex;
    justify-content: center;
    padding: 0px;
    margin: 0px;
    height: 62px;
}

.text-sections {
    font-size: 1.1em;
    color: #fff !important;
    padding: 21px 3px 10px;
    font-weight: 500;
    transition: all 100ms ease-in;
    border-bottom: 5px solid transparent;
    white-space: nowrap;
    word-wrap: normal;
    display: block !important;
}

    .text-sections:hover {
        border-bottom: 5px solid white;
        cursor: pointer;
    }

.dropbtn {
    background: none;
    color: black;
    padding: 16px;
    font-size: 16px;
    font-weight: 100;
    border: none;
    cursor: pointer;
}

    .dropbtn:hover, .dropbtn:focus {
        background-color: #242424;
    }

.dropdown {
    position: relative;
    display: inline-block;
    margin-top: 22px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #242424;
    min-width: 160px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

    .dropdown-content a {
        color: white;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

.dropdown a:hover {
    background-color: #242424;
}

.show {
    display: block;
}

/* preloader*/
.preloaders {
    position: fixed;
    z-index: 99999;
    background-color: #fff;
    width: 100%;
    height: 100%;
}

    .preloaders .loaders {
        border: 0px solid transparent;
        border-radius: 50%;
        width: 100px;
        height: 100px;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

.loaders::before {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.loaders:before,
.loaders:after {
    content: "";
    border: 10px solid #fff;
    border-radius: 50%;
    width: inherit;
    height: inherit;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: loader 2s linear infinite;
    animation: loader 2s linear infinite;
    opacity: 0;
}

@-webkit-keyframes loader {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes loader {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}


.hidden {
    display: block;
}

.toggle-show {
    position: fixed;
    top: 62px;
    right: 455px;
    background-color: #3e3e3e;
    color: #fff;
    padding: 5px 16px;
    border-radius: 0 0 5px 5px;
    transition: all 300ms ease;
    cursor: pointer;
}

    .toggle-show.hidden {
        top: 0;
        border-radius: 5px 5px 5px 5px;
    }

/* top header */
.top-header {
    display: flex;
    align-items: baseline;
    background-color: rgb(36, 36, 36);
    padding: 3px;
    max-width: 61.100em;
    margin: 62px auto 20px;
    height: 48px;
}

.from-search {
    position: relative;
    padding-top: 7px;
    padding-bottom: 7px;
    margin: 0;
    background-color: #323232;
}

.search-input {
    padding: 0 10px;
    height: 27px;
    line-height: normal;
    width: 776px;
    background-color: #404040;
    -webkit-border-radius: 30px;
    border-radius: 30px;
    color: #737373;
    border: none;
    font-size: .875rem;
    font-family: 'HacenTunisiaBd-bold' !important;
    font-weight:700 !important;
}
    .search-input::placeholder {
        font-family: 'HacenTunisiaBd-bold';
        font-size: .875rem;
    }

    .search-input:focus {
        background-color: white;
        outline: none;
        transition: .3s all ease;
        color: #757575;
    }
        .search-input:focus::placeholder {
            color: #000 !important;
            font-family: 'HacenTunisiaBd-bold';
            font-size: .875rem;
            line-height: normal;
        }

.btn-search {
    background: none;
    border: none;
    position: absolute;
    left: 1.9%;
    top: 20%;
}

.search-icon {
    width: 17px;
    height: 17px;
}

.list-style2 {
    list-style: none;
    display: flex;
    gap: 2px;
    padding: 0px;
    margin-right: 2px;
}

.social-icons {
    background-color: #323232;
    width: 47px;
    height: 41px;
    line-height: 41px;
    text-align: center;
}
.social-icons:hover{
    background-color:#bd262b;
}
.img-social {
    width: 18px;
    height: 15px;
    opacity: .3;
    object-fit: contain;
}
.social-icons:hover .img-social{
    opacity: 1 !important;
    transition:.1s  all ease-in;
}
/* articale news */
.articale-news {
    /*background-color: #f4f4f4;*/
    width: 51.5%;
    margin: 2.8% auto 1% !important;
}

.text-title-filter {
    width: 100%;
    background-color: #242424;
    padding-right: 7px;
    color: #a3a3a3;
    line-height: 41px;
    font-size: 16px;
}

.btn-filter-news {
    background: none !important;
    border: none !important;
    color: white !important;
    padding-right: 5px !important;
}
.btn-filter-news:hover{
    background-color:#000;
}
.selection-menu {
    padding: 0px 0 !important;
    font-size: 1rem !important;
    color: #fff !important;
    background-color: #242424 !important;
    border-radius: 0px !important;
    text-align: right !important;
    border: 0px !important;
    top: -2px !important;
}

    /* Style only the options */
    .selection-menu option {
        padding: 10px !important; /* Adjust padding as needed */
        width: 200px !important; /* Set your desired width */
        text-align: center; /* Center the text */
    }

.selection-filter {
    border-bottom: 1px solid #2e2e2e !important;
}

    .selection-filter:hover {
        background-color: gray !important;
        transition: .2s all ease-in-out;
    }

.dropdown-menu {
    padding: 0px 0 !important;
    font-size: 1rem !important;
    color: #fff !important;
    background-color: #242424 !important;
    border-radius: 0px !important;
    text-align: right !important;
    border: 0px !important;
    top: 14px !important;
}

.dropdown-item {
    border-bottom: 1px solid #2e2e2e !important;
}

    .dropdown-item:hover {
        background-color: #bd262b !important;
        transition: .2s all ease-in-out;
    }

.title-news {
    background-color: #bd262b;
    color: #fff;
    overflow: hidden;
    min-height: 305px;
    width: 230px;
    padding: 15px;
}

.content-article {
    margin-top: -7px;
    display:flex;
}

.text-title-news {
    font-size: 1.2em;
    color: #fff !important;
    max-height: 3.6em;
    line-height: 1.2em;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.img-news {
    width: 100%;
    float: left;
    position: relative;
}

.img-article-new {
    height: 305px;
    width: 99.5%;
}

.cutomize-width-for-one-articale{
    width:99.5% !important;    
}

.title-category-article {
    font-size: .85em;
    font-weight: 500;
    line-height: 1.95;
    color: #fff;
    height: 100px;
}

.time-article {
    font-size: .75em;
}

.share-content {
    height: 9%;
    position: absolute;
    right: 0px;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, .7);
    color: #ddddde;
    font-size: .7em;
}

.day-news {
    color: #ddddde;
    font-size: 1em;
    margin-left: 3px;
}

    .day-news:hover a {
        color: #bd262b !important;
        transition: .2s all ease;
        cursor: pointer;
    }

.res-news {
    color: #ddddde;
    font-size: 1em;
    margin-right: 3px;
    margin-top: 4px;
}

    .res-news:hover a {
        color: #bd262b !important;
        transition: .2s all ease;
        cursor: pointer;
    }

.plus {
    font-size: 1em;
}

.share-news {
    font-size: 1.05em;
    margin-left: 5px;
    cursor: pointer;
}

.align-top-news {
    margin-top: 33px !important;
    margin-left: -15px;
}

.join-us {
    background-color: #313131;
    padding: 10px 10px 12px;
    width: 100%; /* Change from 110% to 100% */
    max-width: 100%; /* Ensures it doesn't exceed parent width */
    min-height: 347px;
    border-right: 2px solid #fff !important;
}
@media (min-width: 1555px) {
    .join-us {
        width: 100%; /* Limit width to 100% for larger screens */
    }
}

.customize-ads-facebook .ads-block {
    display: flex;
    justify-content: center;
}

.customize-ads-facebook{
    margin-left:-17px !important;
}
.facebook-ads {
    height: 65px;
    width: 100%;
    margin-top: 24px;
}

.content-card:hover .time-article {
    color: #fff !important;
    transition: .1s all ease-out;
}

.content-card:hover .img-icon-time {
    content:url('../images/source-content/time-white.png');
    opacity:1;
    transition: .1s all ease-out;
}
.background-comma {
    position: absolute;
    height: 26px;
    width: 26px;
    line-height: 26px;
    background-color: #bd262b;
    text-align: center;
    right: 0%;
    bottom: 1%;
}
.img-comma {
    width: 9px;
    height: 7px;
}
.img-share-icon {
    width: 100%;
    object-fit: contain;
    margin-right: 8px;
    cursor:pointer;
}
.share-box {
    direction: ltr;
    position: relative;
}
.customize-design-share-box {
    display: none;
    position: absolute;
    left: 7%;
}
.share:hover .customize-design-share-box {
    display: block;
    transition: .3s all ease-in-out;
}
.share:hover .shape-box {
    display: block;
    transition: .3s all ease-in-out;
}
    .cotent-facebook {
        background-color: #305891;
        width: 35px;
        height: 30px;
    }
.cotent-twitter {
    background-color: #2ca8d2;
    width: 35px;
    height: 30px;
}
.text-share-box {
    background-color: #fff;
    display: inline-block;
    color: #8d8d8d;
    padding: 6px 10px 8px 11px;
    font-size: 13px;
    height: 30px;
}
.img-share-box {
    height: 18px;
    margin: auto;
    display: block;
    margin-top: 6px;
}
.shape-box {
    width: 10px;
    height: 10px;
    object-fit: contain;
    position: absolute;
    left: -7%;
    top: 27%;
}
.main-title-poster iframe{
    width:100% !important;
    height:400px !important;
}
.main-title-poster img{
    width:100% !important;
    height:400px !important;
}
.handle-design-for-share-box {
    height: 6.3% !important;
}
/* Small Articales */
.small-articales {
    background-color: #fff;
    width: 50.3%;
    margin: 1% auto 0%;
}

.card-articales {
    position: relative;
    margin-top: 1px;
}

.content-card {
    background-color: #f4f4f4;
    padding: 15px;
    height: 100px;
    color: #000;
}

    .content-card:hover {
        background-color: #bd262b;
    }

        .content-card:hover .time-elapse {
            background-color: #bd262b;
            color: white;
            transition: .1s all ease-out;
        }

        .content-card:hover .article-heading {
            background-color: #bd262b;
            color: white;
            transition: .1s all ease-out;
        }

.img-small-card {
    width: 100%;
    height: 210px !important;
    cursor: pointer;
}

.article-heading {
    color: #000;
    margin: 0 0 5px;
    font-size: 1em;
    max-height: 3.6em;
    line-height: 1.2em;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 400;
    font-family: 'HacenTunisiaBd-bold';
}

.time-elapse {
    color: #656160;
    font-size: .75em;
}

.share-content-small-card {
    height: 27%;
    position: absolute;
    right: 0px;
    bottom: 99px;
    width: 100%;
    background-color: rgba(0, 0, 0, .7);
    color: #ddddde;
    font-size: .7em;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.resource-news {
    margin-right: 34px;
}

.share {
    margin-left: 8px;
    display: flex;
}

.align-border-small-card {
    border-left: 2px solid #fff;
}
/** List Articales */
.list-articales {
    width: 51.3%;
    margin: auto;
    background-color: #eeeeee;
}

.list-img-articales {
    width: 90px;
    height: 65px;
}

.articale-heading-small {
    color: #333;
    font-size: .9em;
    max-height: 2.5em;
    line-height: 1.2em;
    margin-bottom: 5px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 400;
    font-family: 'HacenTunisiaBd-bold';
}

    .articale-heading-small:hover {
        color: #bd262b;
    }

.align-list-articale {
    margin-right: 12px;
}

.btn-list-articales {
    display: inline-block;
    border: 1px solid #d5d5d5;
    padding: 0 3px;
    font-size: .8em;
    white-space: nowrap;
    word-wrap: normal;
    vertical-align: middle;
    text-align: center;
    font-family: 'HacenTunisiaBd-bold';
}

    .btn-list-articales:hover {
        color: #bd262b !important;
        background-color: white;
        transition: .2s all ease-in;
    }

.plus {
    color: #8e8d8d;
    font-weight: 600;
    font-size: 14px;
    padding-bottom: 6px;
}

.align-padding-list-articales {
    padding: 10px;
}
.links {
    margin-top: -11px;
}
/* Image Content */
.mix-content {
    width: 51.3%;
    margin: auto;
}

.title-content {
    background-color: #242424;
    width: auto;
    margin-top: 9px;
    height: 41px;
    position:relative;
}

.text-title-content {
    padding-right: 37px;
    color: #fff;
    line-height: 41px;
    font-size: 16px;
}

.total-number-content {
    color: #a3a3a3;
}

.arrow-right {
    padding-left: 14px;
    width: 44px;
    height: 19px;
    object-fit: contain;
}

.text-more {
    visibility: hidden;
    color: #fff;
    margin-left: -8px;
    font-size: 16px;
}

.title-content:hover h5 {
    color: #bd262b;
}

.title-content:hover .text-more {
    visibility: inherit;
}
.title-content:hover select{
    color:#bd262b !important;
    transition:.2s all ease;
    cursor:pointer;
}
.remove-hover-from-title:hover h5{
    color:#fff !important;
}
.text-outputs {
    color: #a7a7a7 !important;
    font-size: .9em !important;
    margin-left:11px;
}
/* Slider Image Content */
swiper-container {
    width: 100%;
    position: relative;
    /*
padding-top: 50px;
    padding-bottom: 50px;
*/
}

swiper-slide {
    background-position: center;
    background-size: cover;
    width: 397px;
    box-shadow: 0px 4px 21px rgba(0,0,0,0.9);
    margin-bottom: 10%;
    left: 4%;
}

    swiper-slide img {
        display: block;
        width: 397px;
        height: 214px;
    }

.slider-container {
    padding-top: 45px;
    background-color: #242424;
    margin-top: 9px;
    padding-bottom: 8px;
}

.sub-text-slider-content {
    text-align: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.8) 50%, black 100%);
    color: white;
    padding: 1.5em 1.5em 2.8em;
    font-size: 1.1rem;
    max-height: 4em;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.align-image-slider-camera {
    position: absolute;
    width: 28px;
    height: 28px;
    top: 10px;
    left: 10px;
    object-fit: contain;
}

/* Video Content */
.poster-video {
    position: relative;
}

.align-video-img {
    min-height: 300px;
    margin-top: 9px;
}

.poster-video-img {
    width: 100%;
    height: auto;
}

.poter-content-video {
    background-color: #242424;
    height: auto;
    padding: 10px;
}

.hover-poter-content-video:hover {
    background-color: #bd262b !important;
}

.align-position-video {
    bottom: 66px;
}

.poster-video:hover .content-card {
    background-color: #bd262b;
}

.align-video-img header {
    position: relative;
    cursor: pointer;
}

    .align-video-img header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 1;
    }

    .align-video-img header::after {
        content: '';
        position: absolute;
        width: 72px;
        height: 72px;
        background: url(../images/Videos-content/play-video.png) no-repeat;
        background-size: contain;
        top: 39.9%;
        left: 44%;
        z-index: 2;
        transform: scale(1);
        transition: transform 0.4s ease;
        cursor: pointer;
    }

    .align-video-img header:hover::after {
        transform: scale(1.3);
        transition: transform 0.4s ease-out;
    }
.img-comma-red {
    width: 21px;
    height: 15px;
    margin-right: 10px;
}
.customize-red-comma {
    position: absolute;
    top: 18%;
    right: 0%;
}
/* Small Card Videos */
.content-card {
    position: relative;
}

.small-img-video-card {
    width: 100%;
    height: 125px;
}

.small-content-video {
    background-color: #f4f4f4;
    padding: 10px;
    height: 95px;
    width: 100%;
}

.align-position-small-video {
    bottom: 94px;
}

.video-card {
    margin-top: 2px !important;
}

    .video-card .col-md-4:hover .content-card .small-content-video {
        background-color: #bd262b;
        transition: .1s all ease-in;
    }

        .video-card .col-md-4:hover .content-card .small-content-video h3 {
            color: white;
            transition: .1s all ease-in;
        }

        .video-card .col-md-4:hover .content-card .small-content-video p {
            color: white;
            transition: .1s all ease-in;
        }

.align-img-container header {
    position: relative;
    cursor: pointer;
}

    .align-img-container header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 1;
    }

    .align-img-container header::after {
        content: '';
        position: absolute;
        width: 30px;
        height: 30px;
        background: url(../images/Videos-content/play-video.png) no-repeat;
        background-size: contain;
        top: 30%;
        left: 42%;
        z-index: 2;
        transform: scale(1);
        transition: transform 0.3s ease;
        cursor: pointer;
    }

    .align-img-container header:hover::after {
        transform: scale(1.3);
        transition: transform 0.3s ease-out;
    }

.video-card .col-md-4:nth-child(even) {
    padding-left: 0px !important;
    padding-right: 0px !important;
}
.video-card .col-md-4:nth-child(odd) {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.content-border-media {
    border-right: 2px solid white;
}
/*.sports-mixed .col-md-6:nth-child(even) {
    padding-right: 0px !important;
}

.sports-mixed .col-md-6:nth-child(odd) {
    padding-left: 0px !important;
}*/

#even {
    padding-right: 0px !important;
    border-right: 1px solid #fff !important;
}
#odd {
    padding-left: 0px !important;
}

.align-unique-border {
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
}
/* sport & mixed */
.content-list {
    background-color: #f4f4f4;
    border-left: 2px solid #fff;
}

.list-sports-mixed .col-md-6:nth-child(even) {
    padding-right: 0px !important;
}

.list-sports-mixed .col-md-6:nth-child(odd) {
    padding-left: 0px !important;
}
/* Political*/
.political .col-md-6:nth-child(odd) {
    padding-left: 0px !important;
    border-left: 1px solid #fff !important;
}

.political .col-md-6:nth-child(even) {
    padding-right: 0px !important;
/*    border-left: 2px solid #fff !important;*/
}

.align-top-card {
    margin-top: 4px !important;
}

.political-content {
    border-left: 2px solid #fff !important;
}

    .political-content:last-child {
        border-left: none !important;
    }
/* Art & Medicine*/
.art-culture .col-md-6:nth-child(odd) {
    padding-left: 0px !important;
    border-left: 2px solid #fff !important;
}

.art-culture .col-md-6:nth-child(even) {
    padding-right: 0px !important;
    border-left: 2px solid #fff !important;
}
/* Womens */
.women-news .col-md-4:first-child {
    padding-left: 0 !important;
}

.women-news .col-md-4:nth-child(2) {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.women-news .col-md-4:last-child {
    padding-right: 0 !important;
}
/* Newsletter */
.newsletter {
    background: #bd262b;
    color: #fff;
    padding: 49px 38px 22px;
    min-height: 300px;
    margin-top: 10px;
}

.Subscribe {
    font-size: 11px;
    font-weight: 300;
    font-family: 'Almarai-Regular';
}

.newsletter-text {
    font-size: 18px;
    font-weight: 400;
    font-family: 'Almarai-Regular';
}

.newsletter-header {
    position: relative;
}

.img-message-icon {
    position: absolute;
    width: 38px;
    height: 38px;
    left: -2px;
    top: 4px;
}

.newsletter input {
    background: #c62828;
}

.newsletter input {
    width: 100%;
    border: none;
    padding: 13px 20px 17px;
    color: #fff;
    margin-bottom: 35px;
    border-right: 2px solid #fff;
    outline: none;
    margin-top: 35px;
    font-size: 13px;
}

.error {
    position: absolute;
    bottom: 57px;
    font-size: 12px;
    pointer-events: none;
    opacity: 0;
}

.newsletter button {
    background: #fff;
    border: none;
    cursor: pointer;
    padding: 12px 43px 14px;
    font-size: 15px;
    color: #212224;
    font-weight: bold;
    margin: auto;
    display: block;
    font-family: 'Almarai-Regular';
}

input::placeholder {
    color: #fff !important;
    font-weight: initial !important;
    font-family: 'Almarai-Light';
    opacity: .6
}

.articale-heading-small-new {
    color: #333;
    font-size: 1em;
    max-height: 3.5em;
    line-height: 1.2em;
    margin-bottom: 5px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 400;
    font-family: 'HacenTunisiaBd-bold';
}
/* Special Content */
.special-content {
    margin-top: 4px !important;
}

    .special-content .col-md-6:hover .content-list .small-content-video {
        background-color: #bd262b;
        transition: .1s all ease-in;
    }

        .special-content .col-md-6:hover .content-list .small-content-video h3 {
            color: white;
            transition: .1s all ease-in;
        }

        .special-content .col-md-6:hover .content-list .small-content-video p {
            color: white;
            transition: .1s all ease-in;
        }

    .special-content .col-md-6:first-child {
        padding-left: 0 !important;
    }

    .special-content .col-md-6:last-child {
        padding-right: 0 !important;
    }
/* Albums */
.title-albums {
    font-size: 1.2em;
    padding: .5em 1em;
    color: #fff;
    background-color: #624f87;
    margin-top: 10px;
    margin-bottom: 10px;
}

.img-albums {
    width: 100%;
    height: 150px;
}
/* Footer */
.footer {
    background-image: url('../images/header/background-header.png');
    height: auto;
    border-bottom: 1px solid #fff;
    margin-top: 5%;
}
.footer .row {
    margin: 0;
}
.social-icon-img {
    width: 17px;
    height: 17px;
    object-fit:contain;
}
.social-icon-div {
    color: #000;
    font-size: 1em;
    border: 0;
    line-height: 41px;
/*    height: 41px;
    width: 41px;*/
    text-align: center;
    padding: 10px;
}
    .social-icon-div:hover {
        height: 41px;
        width: 41px;
        background: #000;
        color: white;
        margin: 0px;
        line-height: 41px;
    }
.footer-links {
    margin-right: -20px;
    gap: 16px;
    margin-top: 2px;
}
.hover-text-link {
    color: #fff;
    font-size: 17px;
    font-family: 'HacenTunisiaBd-bold';
}
.hover-text-link:hover{
    color:#000;
}
.footer-copy {
    color: #fff;
    padding: 10px;
    text-align: center;
    line-height: 41px;
    margin-right: 55px;
}
.text-copy-rights {
    font-size: 16px;
    font-weight: 500;
    font-family: 'HacenTunisiaBd-bold';
}
.sarmady-logo {
    margin-right: 10px;
}
.social {
    margin-top: 12px;
}
/* sections */
.image-content, .title-categoreis {
    width: 51.5%;
    margin: auto;
}

/* Source Content */
.select-sources-filter {
    background: none !important;
    border: none !important;
    color: white !important;
}
select:focus {
    outline: none;
}
.align-dropdown-content {
    top: 7px !important;
    left: 78% !important;
}
.customize-color-dropdown {
    background-color:#EEEEEE !important;
    color:#000 !important;
}
    .customize-color-dropdown:hover {
        background-color: #EEEEEE !important;
        transition: .1s all ease-in-out;
    }
.customize-another-feild:hover {
    background-color: #EEEEEE !important;
    transition: .1s all ease-in-out;
    color: #000 !important;
}
.img-arrow-down {
    width: 18px;
    height: 18px;
    object-fit: contain;
}
.customize-hover-butn-dropdown:hover{
    color:#bd262b !important;
}
.customize-source-design{
    margin-bottom:2px !important;
}
.share-link {
    position: absolute;
    left: 1.5%;
    bottom: .7%;
}
.paginantion{
    margin:20px auto;
    gap:5px;
}
.pagination-card {
    width: 40px;
    height: 40px;
    background-color: #f4f4f4;
    gap: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2px;
}
.pagination-card:hover{
    background-color:#bd262b;
    color:#fff;
}
.img-pagination {
    margin: auto;
    display: block;
    padding: 14px;
}
.pagination-card:hover .img-pagination {
    content: url('/images/pagination/icon-right-white.png') !important;
}
.pagination-card:hover .hover-effect-icon {
    content: url('/images/pagination/icon-left-white.png') !important;
}
.pagination-no {
    padding: 17px;
    line-height: 43px;
    font-size: 17px;
}
.active-pagination {
    background-color: #dfdfdf;
}
/* Sources */
.title-newss {
    background-color: #f4f4f4;
    padding: 7px 10px 0px;
    margin-bottom: 10px;
}
.breadcrumb-text{
    gap:6px;
}
.home-breadcrumb-text, .category-breadcrumb-text {
    color: #bd262b;
    font-size: 1.2em;
    font-family: 'HacenTunisiaBd-bold';
    white-space: nowrap;
}
.slash-breadcrumb{
    color: #ccc;
}
.source-text-news {
    color: #000;
    font-size: 1.2em;
    max-height: 2.5em;
    line-height: 1.4em;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.source-news {
    width: 51.3%;
    margin: auto;
    padding-top: 0% !important;
}
.main-source-content{
    position:relative;
}
.poster-source {
    height: 420px;
    width: 100%;
}
.description-source {
    background-color: #f4f4f4;
    padding:15px;
}
.main-title-poster p {
    font-size: 1.2em;
}
    .main-title-poster p img {
        height: 350px;
    }
.sub-text-poster {
    color: #4e4e4e;
    font-size: 14pt;
    line-height: 1.6;
}
.sub-text-poster-2 {
    color: #4e4e4e;
    font-size: 14pt;
}
.twitter {
    background-color: #2ca8d2;
    height: 48px;
}
.facebook {
    background-color: #305891;
    height: 48px;
}.twitter:hover {
     opacity:.8;
}
.facebook:hover {
    opacity: .8;
}
.share-icon-source {
    width: 30px;
    height: 30px;
    object-fit: contain;
    float: left;
    margin-left: 10px;
    margin-top: 10px;
}
.share-button{
    gap:4px;
}
.articales-source-button {
    background-color: #eee;
    height: 48px;
    text-align: center;
    color: #bd262b;
    font-size: 1.5em;
    line-height: 53px;
}
    .articales-source-button:hover {
        background-color: #fff;
        transition:.1s all ease-in;
    }
.btn-source-news {
    width: 100%;
}
.share-button-content {
    display: flex !important;
    /*flex-flow: inherit !important;*/
    margin-top: 2px;
    gap: 5px;
}
.share-part2{
    width:10%;
}
.right-icon-red {
    margin-bottom: 6px;
    width: 15px;
    height: 15px;
    object-fit: contain;
}
.title-content:hover .no-hover {
    color: #fff !important;
}
.btn-facebook-card {
    background-color: #3c5a98;
    color:#fff;
    line-height:41px;
}
.title-most-read{
    width:100%;
    background-color:#bd262b;
    color:#fff;
    margin-top:8px;
}
.img-white-comma {
    width: 20px;
    height: 14px;
    object-fit: contain;
    margin-top: 13px;
    margin-right: 12px;
}
.most-read-text {
    font-size: 18px;
    margin-right: 14px;
}
.img-list-source {
    width: 73px;
    height: 62px;
    position: absolute;
    top: 24%;
    left: 3%;
}
.list-content-source {
    background-color: #f4f4f4;
    position: relative;
    padding: 24px 40px 0px 100px;
    height: 100px !important;
}
.title-list-source {
    font-size: 13px;
    max-height: 3.6em;
    line-height: 1.2em;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.img-veiws {
    width: 16px;
    height: 16px;
    vertical-align: middle;
}
.no-veiws {
    color: #bd262b;
    font-size: 15px;
}
.no-list-source {
    width: 20px;
    height: 20px;
    background-color: #bd262b;
    color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 19%;
    right: 3%;
    z-index: 999;
}
.number-list {
    font-size: 16px;
    text-align: center;
    line-height: 22px;
    font-weight: 500;
}
.dashed-border-list {
    border-left: 1px dashed #d8d8d8;
    width: 10px;
    height: 65%;
    position: absolute;
    top: 18%;
    right: 3.3%;
}
.most-read{
    position:relative;
}
/* Galleries */
.galleries{
    position:relative;
}
.select-list {
    background: #e1e1e1;
    border: 0;
    background-image: url('../images/source-content/down-arrow-gray.png');
    background-position: 12px center;
    background-repeat: no-repeat;
    appearance: none;
    padding: .5rem;
    height: 41px;
    font-size: .875rem;
    color: rgba(0, 0, 0, .75);
    line-height: normal;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    font-weight: 600;
    margin-top: 10px;
}
.selection-list .col-md-6:first-child {
    padding-left: 0px !important;
    padding-left: 10px !important;
}
.selection-list .col-md-6:last-child {
    padding-right: 0 !important;
}
.poster-galleries{
    width:100%;
    height:350px;
    margin-top:10px;
}
.title-gallereis h4 {
    position: absolute;
    width: 100%;
    bottom: -8px;
    left: 0;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.8) 50%, black 100%);
    color: #fff;
    padding: 1em;
    font-size: 18px;
    max-height: 54px;
    line-height: 30px;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.small-card-galleries {
    position: relative;
    width: 111.3%;
}
.small-poster-galleries {
    width: 100%;
    height: 130px;
}
.title-small-gallereis h4 {
    position: absolute;
    width: 100%;
    bottom: -8px;
    left: 0;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.8) 50%, black 100%);
    color: #fff;
    padding: .8em;
    font-size: 13px;
    line-height: 20px;
    max-height: 73px;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.small-galleries {
    margin-top: 2px;
    width: 97%;
}
.select-list option {
    background-color: #e7e5e5;
    font-weight:600 !important;
}
/* Galleries Details */
.galleries-details {
    background-color: #f4f4f4;
    padding:15px;
}
.customize-time{
    align-items:flex-start;
}
.img-icon-time {
    opacity: .6;
}
.title-main-gallery {
    padding: 1em;
    background-color: #000;
    text-align: center;
    color: #fff;
}
/* Video */
.title-most-video {
    background-color: #242424;
    width: auto;
    margin-top: 9px;
    height: 41px;
    position:relative;
}
/* Videos Details */
.share-content-video-details {
    width: 100%;
    background-color: #0b0b0b;
    color: #ddddde;
    font-size: .7em;
}
.iframe-video-details {
    width: 100%;
    height: 363px;
}
.customize-text-video-details:hover .time-article {
    color: #fff !important;
}
.customize-text-video-details:hover .img-icon-time {
    opacity:1 !important;
}
/* Sources */

.div-search{
    padding:30px 0;
    position:relative;
}

.form-search-sources {
    padding: inherit;
    margin: 0;
    background-color: #f4f4f4;
}

.search-input-sources {
    height: 41px;
    width: 95%;
    margin: auto;
    background-color: #e1e1e1;
    padding: 7px 20px;
    font-size: 15px;
    -webkit-border-radius: 30px;
    border-radius: 30px;
    color: #818181 !important;
    border: none;
    display: block;
    position:relative;
}
    .search-input-sources::placeholder {
        color: #000 !important;
        font-size: 15px !important;
        font-weight: 600 !important;
        font-family: 'HacenTunisiaBd-bold';
    }

    .search-input-sources:focus {
        background-color: #fff;
        overflow: hidden;
        border: none !important;
        outline:none !important;
        box-shadow: 0 0 10px rgba(0,0,0,.07) !important;
        transition: .2s all ease-in-out !important;
    }

        .search-input-sources:focus::placeholder {
            color: #000 !important;
            font-family: 'HacenTunisiaBd-bold';
            font-size: .875rem;
            line-height: normal;
        }
.btn-search-sources {
    position: absolute;
    border: none;
    background: none;
    left: 4.5%;
    top: 42%;
}
.card {
    background-color: #f4f4f4 !important;
    margin-bottom: 9% !important;
}
.img-sources {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: contain;
}
.img-div-source {
    width: 75px;
    height: 75px;
    background: #fff;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #e6e6e6;
    box-shadow: 0 0 10px rgba(0, 0, 0, .18);
    margin: 16px auto 0;
}
.text-sources {
    color: #666;
    font-size: 14px;
    text-align: center;
    margin-top: 11px;
}
.btn-source {
    background: #e4e4e4;
    padding: 10px 0;
    line-height: 1;
    color: #bd262b !important;
    margin-top: 10px;
    font-size: 15px;
    cursor:pointer;
}
.card:hover .btn-source {
    background-color:#bd262b !important;
    color:#fff !important;
    transition:.1s all ease-in-out
}
.text-more-new {
    color: #242424;
    background-color: #efefef;
    padding: 10px;
    line-height: 21px;
    padding-left: 13px;
    text-align: left;
}
.right-title-icon-news {
    margin-right: 10px;
}
.text-more-new:hover {
    color: #bd262b;
    transition: .1s all ease-in;
    background-color: #e2e2e2;
}

#akhbarak-pc-ad {
    display: block;
}
#akhbarak-mob-ad{
    display:none;
}
/* Media Queries */
@media (max-width:1668px) {
    .articale-news {
        width: 59.3% !important;
    }
}

/* Zoom 100% */
@media (max-width: 1920px) {
    .video-card {
        width: 96.5% !important;
        margin-right: 10px !important;
    }

    .content {
        margin-top: 5%;
    }
}

/* Range: 1536px to 1921px */
@media (min-width: 1536px) and (max-width: 1921px) {
    .content {
        margin-top: 6%;
    }
}

/* Invalid query corrected: Range beyond 2133.33px to 1537px removed */
@media (min-width: 2133.33px) and (max-width: 2400px) {
    .content {
        margin-top: 5%;
    }
}

/* Range: 2400px to 2560px */
@media (min-width: 2400px) and (max-width: 2560px) {
    .content {
        margin-top: 4%;
    }
}

/* Range: 2560px to 2880px */
@media (min-width: 2560px) and (max-width: 2880px) {
    .content {
        margin-top: 4%;
    }
}

/* Range: 2880px to 3840px */
@media (min-width: 2880px) and (max-width: 3840px) {
    .content {
        margin-top: 3%;
    }
}

/* Zoom 110% */
@media(max-width:1745.44px) {
    .video-card {
        margin-right: 1.7% !important;
        width: 96.3% !important;
    }
    .articale-news {
        width: 56.5% !important;
    }
    .small-articales {
        width: 55.1% !important;
    }
    .list-articales {
        width: 56.4% !important;
    }
    .mix-content {
        width: 56.4% !important;
    }
    .source-news {
        width: 56.6% !important;
    }
}
/* Zoom 125%*/ 
@media(max-width:1536px){
    .video-card {
        margin-right: 2% !important;
        width: 95.7% !important;
    }
    .articale-news {
        width: 64.3% !important;
    }
    .small-articales {
        width: 62.7% !important;
    }
    .list-articales {
        width: 64.1% !important;
    }
    .mix-content {
        width: 64.2% !important;
    }
    .source-news {
        width: 64.4% !important;
    }
}
/* Zoom 150%*/
@media(max-width:1280px) {
    .mix-content {
        width: 68.4% !important;
    }
}
@media (max-width: 1441px) {
    .articale-news {
        width: 68.5% !important;
    }
    .small-articales {
        width: 66.8% !important;
    }


    .list-articales {
        width: 68.4% !important;
    }
    .source-news {
        width: 68% !important;
    }
}

@media (min-width:2048px){
    .articale-news {
        width: 47.5% !important;
    }
    .small-articales {
        width: 46.3% !important;
    }
    .list-articales {
        width: 47.6% !important;
    }
    .mix-content {
        width: 47.6% !important;
    }
}
/* Zoom 90% */
@media (min-width:2133.33px) {
    .articale-news {
        width: 46.5% !important;
    }

    .small-articales {
        width: 45.5% !important;
    }

    .list-articales {
        width: 46.5% !important;
    }
    .responsive-design-customize {
        width: 46.5% !important;
    }
    .source-news {
        width: 46.2% !important;
    }
    .video-card {
        margin-right: 1.7% !important;
        width: 96.5% !important;
    }
}
/* Zoom 80% */
@media (min-width:2400px) {
    .articale-news {
        width: 41.5% !important;
    }

    .small-articales {
        width: 40.6% !important;
    }

    .list-articales {
        width: 41.5% !important;
    }
    .responsive-design-customize {
        width: 41.5% !important;
    }
    .source-news {
        width: 41.2% !important;
    }
}
/* Zoom 75% */
@media (min-width:2560px) {
    .articale-news {
        width: 38.5% !important;
    }

    .small-articales {
        width: 37.6% !important;
    }

    .list-articales {
        width: 36.6% !important;
    }
    .responsive-design-customize {
        width: 36.6% !important;
    }
    .source-news {
        width: 38.5% !important;
    }
}
/* Zoom 67% */
    @media (min-width:2880px) {
        .articale-news {
            width: 34.5% !important;
        }

        .small-articales {
            width: 33.7% !important;
        }

        .list-articales {
            width: 34.5% !important;
        }

        .responsive-design-customize {
            width: 34.6% !important;
        }
        .source-news {
            width: 34.2% !important;
        }
    }
/* Zoom 50% */
    @media (min-width:3840px) {
        .articale-news {
            width: 26% !important;
        }

        .small-articales {
            width: 25.4% !important;
        }

        .list-articales {
            width: 26% !important;
        }

        .responsive-design-customize {
            width: 26% !important;
        }
        .source-news {
            width: 25.7% !important;
        }
    }

/* Handle design for devices above Mobiles and devices before PCs */
@media (min-width:769px) and (max-width:1024px) {
    .top-header{
        display: none;
    }
    .cusomize-header-pc-only{
        display:none !important;
    }
    .menu-mobile{
        display:block !important;
        background:none !important;
    }
    .btn-menu-mobile {
        background: none !important;
    }
    .align-header {
        justify-content: space-around !important;
        align-items: baseline !important;
    }
    .offcanvas-body {
        background-color: #bd262b !important;
        color: #fff !important;
    }

    .list-menu-mobile {
        border-bottom: 1px solid #ad2127;
        padding: 10px 0px 10px 0px;
        cursor: pointer;
    }

    .text-menu-mobile {
        padding: 10px;
        font-size: 1.1em;
    }

    .offcanvas-header {
        background-color: #bd262b !important;
        border-bottom: 1px solid #ad2127 !important;
    }
    .content {
        margin-top: 80px !important;
    }
    .articale-news {
        width: 69.5% !important;
    }
}

/* Hanlde to remove menu bar from all devices above mobile */
@media (min-width:1025px) {
    .menu-mobile{
        display:none !important;
    }
}

@media (min-width:1025px) and (max-width:1400px) {
    .top-header {
/*        max-width: 57.1em !important;*/
        display:none !important;
    }
    .search-input {
        width: 40.4rem !important;
    }
/*    .articale-news {
        width: 81.1% !important;
    }*/
    .content {
        margin-top: 80px;
    }
}
    /* This Classes For Pc Only */
    @media (min-width:768px) {
        .more-bar {
            display: none !important
        }

        .customize-footer-pc {
            display: flex !important;
            align-items: baseline !important;
            justify-content: center !important;
        }

        /*        .menu-mobile {
            display: none !important;
        }*/

        .search-mobile {
            display: none !important;
        }

        .customize-remove-pc {
            display: contents !important;
        }

        .btn-more-videos-mobile {
            display: none !important;
        }
        .pc-view {
            display: contents !important;
        }

        .mobile-view {
            display: none !important;
        }
    }
    /* Start Responsive Design For Mobile */
    /* Home Page */
    @media (max-width:768px) {
/*        .header {
            top: 63px;
        }*/
        .toggle-show{
            display:none;
        }
        .join-us {
            border: 0px !important;
        }
/*        .footer-mobile {
            margin-bottom: 21%;
        }*/
        .top-header, .footer {
            display: none;
        }

        .content-article {
            /*display: block !important;*/
            flex-direction: column;
        }

        .img-article-new {
            width: 100% !important;
            height: 228px;
        }

        .title-news {
            width: 100%;
            min-height: 0px !important;
            order: 2;
            height: 103px;
        }

        .articale-news {
            width: 100% !important;
            background: none;
        }

        .img-news {
            width: 100%;
        }

        .text-title-news {
            max-height: 2.6em;
            -webkit-line-clamp: 2;
            line-height: 1.3em;
            font-size: 1.1em;
        }

        .title-category-article {
            display: none;
        }

        .join-us {
            width: 100%;
            min-height: auto;
        }

        .facebook-ads {
            object-fit: contain;
        }

        .align-top-news {
            padding: 0px !important;
        }

        .small-articales {
            width: 100% !important;
            margin-top: 10px;
        }

        .align-border-small-card:nth-child(odd) {
            border-left: 5px solid #fff;
        }

        .align-top-news {
            margin-top: 11px !important;
        }

        .list-articales {
            width: 100% !important;
            margin-top: 10px;
        }

        .articale-heading-small {
            font-size: .85em;
        }

        .mix-content {
            width: 100% !important;
        }

        swiper-slide img {
            display: block;
            width: 250px;
            height: 155px;
        }

        swiper-slide {
            background-position: center;
            background-size: auto;
            width: 250px;
            box-shadow: 0 4px 21px rgba(0, 0, 0, .9);
            margin-bottom: 13%;
            right: -2%;
        }

        .sub-text-slider-content {
            height: 81px;
            text-align: center;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.8) 50%, black 100%);
            color: white;
            padding: 1em 1.5em 0.8em;
            font-size: 15px;
            font-family: HacenTunisiaBd;
            max-height: 4.6em;
            line-height: 1.2em;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .text-slider-image {
            font-size: 1.1rem !important;
        }

        .align-video-img {
            min-height: 196px;
        }

        .content-border-media:nth-child(odd) {
            border-right: 5px solid white !important;
        }

        .video-card {
            width: 95.5% !important;
            margin-right: 1.6% !important;
        }

        .political-content {
            border-left: 2px solid #fff !important;
        }

        .political .col-md-6:nth-child(even) {
            display: none !important;
        }

        .political .col-md-6:nth-child(even),
        .political .col-md-6:nth-child(odd) {
            padding-left: 0 !important;
            padding-right: 0 !important;
        }

        .art-culture .col-md-6:nth-child(even),
        .art-culture .col-md-6:nth-child(odd) {
            padding-left: 0 !important;
            padding-right: 0 !important;
        }

        .women-news .col-md-4:nth-child(even),
        .women-news .col-md-4:nth-child(odd) {
            padding-left: 0 !important;
            padding-right: 0 !important;
        }

        .sports-mixed, .political, .art-culture {
            width: 94.5%;
            margin: auto;
        }

            .sports-mixed .col-md-6:nth-child(odd),
            .sports-mixed .col-md-6:nth-child(even) {
                padding-left: 0 !important;
                padding-right: 0 !important;
            }

            .sports-mixed .col-md-12:nth-child(odd), .sports-mixed .col-md-12:nth-child(even) {
                padding-left: 0 !important;
                padding-right: 0 !important;
            }

        .special-content .col-md-6:first-child {
            padding-left: 10px !important;
        }

        .special-content .col-md-6:last-child {
            padding-right: 13px !important;
        }

        .align-unique-border {
            border: 0px !important;
            margin-bottom: 2px !important;
            margin-left: .5% !important;
        }

        .content-list {
            border: 0px !important;
            margin-left: 0.5% !important;
        }

        .customize-design-mobile-women-new {
            display: flex !important;
            padding: 12px !important;
        }

        .customize-small-img-mobile {
            height: 90px !important;
            width: 140px !important;
        }

        .customize-mobile-special-content {
            margin-left: 0px !important;
        }

        .customize-img-specail-content {
            height: 221px !important;
        }

        .customize-img-small-card-mobile {
            height: 126px !important;
        }

        .btn-more-videos-mobile {
            display: block !important;
            text-align: center;
            font-size: 1em;
            color: #fff !important;
            background-color: #bd262b;
            margin-left: .5%;
            padding: 5px;
        }

        .more-bar {
            background-color: #eee;
            margin-top: 6px;
            text-align: left;
        }

        .btn-more-sports-news {
            padding: 2px 10px;
            display: inline-block;
            color: #fff !important;
            background-color: #bd262b;
            font-size: .9em;
            margin-left: .5%;
        }

        .customize-mobile-political {
            margin-bottom: 3px !important;
        }

        .footer .social {
            display: block !important;
        }

        .customize-footer-mobile {
            display: block !important;
        }

        .footer-social {
            justify-content: center !important;
        }

        .footer-links-mobile {
            justify-content: center !important;
            margin-right: 0px !important;
            gap: 17px;
        }

        .footer-copy {
            margin-right: 0px !important;
            justify-content: center !important;
        }

        .footer-head {
            padding: 5px;
            background-color: #eee;
        }

        .footer-copy {
            background-image: url('../images/header/background-header.png');
            height: auto;
            border-bottom: 1px solid #fff;
        }

        .social-icon-mobile {
            gap: 3px;
        }

        .social-mobile {
            color: #000;
            font-size: 1em;
            border: 0;
            line-height: 41px;
/*            height: 41px;
            width: 41px;*/
            text-align: center;
            background-color: #e5e5e5;
            padding :10px;
        }

        .social-icon-img-mobile {
            height: 20px;
            width: 18px;
            object-fit: contain;
        }

        .cusomize-header-pc-only {
            display: none !important;
        }

        .align-header {
            justify-content: space-between;
            align-items: center;
            padding: 13px;
        }

        .logo-header {
            width: 95px;
            height: 39px;
            margin-top: 0px;
            margin-left: 0px;
            object-fit: contain;
        }

        .img-menu-mobile {
            width: 25px;
            height: 20px;
        }

        .btn-menu-mobile {
            background: none !important;
        }

        .offcanvas {
            width: 60% !important;
        }

        .content {
            margin-top: 70px;
        }

        .offcanvas-body {
            background-color: #bd262b !important;
            color: #fff !important;
        }

        .list-menu-mobile {
            border-bottom: 1px solid #ad2127;
            padding: 10px 0px 10px 0px;
            cursor: pointer;
        }

        .text-menu-mobile {
            padding: 10px;
            font-size: 1.1em;
        }

        .offcanvas-header {
            background-color: #bd262b !important;
            border-bottom: 1px solid #ad2127 !important;
        }

        .customize-card-page-video {
            height: 210px !important;
        }

        .align-img-container header::after {
            width: 30px !important;
            height: 30px !important;
            top: 35% !important;
            left: 46% !important;
        }
        .customize-size-pause-icon header::after {
            width: 50px !important;
            height: 50px !important;
            top: 33% !important;
            left: 46% !important;
        }

        .customzie-play-icon-list header::after {
            width: 40px !important;
            height: 40px !important;
            left: 42% !important;
            top: 29% !important;
        }

        .customize-list-mobile-card-video, .paginantion {
            display: none !important;
        }

        .customize-iframe-video-details {
            width: 101.2% !important;
        }

        .iframe-video-details {
            height: 250px
        }

        .customize-background-comma-mobile {
            bottom: 18.8% !important;
        }

        .customize-read-too-video-details {
            width: 110px !important;
            height: 60px !important;
        }

        .customize-background-card-small-video {
            background-color: #f4f4f4;
            padding: 10px;
            margin-top: 3px;
            display: inline-flex !important;
            width: 100%;
        }

        .customize-remove-play-icon-video-details header::after {
            display: none;
        }

        .customize-articale-heading-mobile {
            font-size: .85em;
            max-height: 2.4em;
            line-height: 1.3em;
            -webkit-line-clamp: 2;
        }

        .customize-height-card-mobile {
            height: 75px;
        }

        .customize-padding-for-mobile {
            padding: 0px !important;
        }

        .galleries {
            margin-bottom: 4px !important;
        }

        .small-galleries {
            width: 100% !important;
        }

        .small-card-galleries {
            width: 100% !important;
            margin-bottom: 4px !important;
        }

        .poster-galleries {
            height: 220px !important;
        }

        .align-image-slider-camera {
            width: 30px !important;
            height: 30px !important;
            left: 11px !important;
        }

        .small-poster-galleries {
            height: 220px !important;
        }

        .title-gallereis h4 {
            max-height: 66px !important;
            line-height: 22px;
        }

        .title-small-gallereis h4 {
            padding: 1em !important;
            font-size: 18px !important;
            line-height: 23px !important;
            max-height: 68px !important;
        }

        .customize-height-mobile-small-poster-galleries {
            height: 120px !important;
        }

        .source-text-news {
            max-height: 2.6em;
            line-height: 1.4em;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .source-news {
            width: 100% !important;
        }

        .poster-source {
            height: 250px !important;
        }

        .main-title-poster {
            font-size: 1.3em;
        }

        .sub-text-poster {
            font-size: 12pt;
        }

        .sub-text-poster-2 {
            font-size: 12pt;
        }

        .share-button-content {
            display: flex;
            /*flex-direction: column;*/
            margin-top: 10px;
            /*flex-flow: column !important;*/
            flex-flow: wrap !important;
        }

        .share-part2 {
            order: -1;
            width: 100%;
        }

        .share-part1 {
            margin-top: 10px;
        }

        .list-content-source {
            padding: 28px 40px 0px 100px !important;
        }

        .customize-source-design {
            margin-bottom: 9px !important;
        }

        .customize-news-content-remove-border {
            border: 0px !important;
        }

        .customize-news-content-remove-margins {
            margin-left: 0px !important;
        }

        .btn-more-videos-mobile {
            display: block !important;
        }

        .customize-img-small-card-height {
            height: 240px !important;
        }

        .customize-spacing-border-mobile-veiw {
            border-left: 4px solid #fff !important;
            border-right: 4px solid #fff !important;
            margin-bottom: 5px;
        }
        .share-content {
            height: 12% !important;
        }
        .share-news{
            display:none;
        }
        .day-news {
            font-size: .9em !important;
        }
        .res-news {
            font-size: .9em !important;
        }
        .share {
            width: 24px;
        }
        .align-position-video {
            bottom: 86px !important;
            height: 25% !important;
        }
        .customize-mobile-design {
            bottom: 67px !important;
            height: 40% !important;
        }
        .customize-sharebox-mobile{
            display:none !important;
        }
        .pc-view{
            display:none !important;
        }
        .mobile-view {
            display: contents !important;
        }
        .share-link {
            bottom: 11.7% !important;
        }
        .customize-mobile-source-icon-share {
            margin-right: 10px !important;
        }
        #leader_board{
            display:none;
        }
        #premium_desktop {
            width: 81% !important;
        }
        #akhbarak-pc-ad{
            display:none;
        }
        #akhbarak-mob-ad {
            display: block;
        }
        .main-title-poster p {
            font-size: .8em !important;
        }
        .handle-design-for-share-box {
            height: 10.3% !important;
        }
    }


