* {
    box-sizing: border-box;
}

body {
    font-family: montserrat, sans-serif;
    background: rgb(0, 15, 30);
}

/** custom classes **/
.bg-body-color {
    background-color: rgb(0, 15, 30);
}

.bg-accent-color {
    background-color: #DFA326;
}

.accent-color {
    color: #DFA326;
}

.bg-transparent-color {
    background-color: transparent;
}

.bg-br-red {
    background-color: #FC0001;
}

.border-accent {
    border: 1px solid #DFA326;
}

.cs-border-danger {
    border: 2px solid red;
}

.account-dropdown-btn:hover {
    background-color: transparent;
    border: 1px solid #DFA326;
    transition: 0.3s;
}

.mb-account-dropdown i:first-child,
.account-dropdown i:first-child {
    font-size: 1.8em;
    color: #DFA326;
}

.ms-n5 {
    margin-left: -45px;
    margin-top: 5px;
}


/* Font classes */
.font-size-1 {
    font-size: .87422rem
}

.font-size-2 {
    font-size: 1.4055rem
}

.font-size-3 {
    font-size: 1.874rem
}

.font-size-4 {
    font-size: 2.3425rem
}

.font-size-5 {
    font-size: 2.811rem
}

.font-size-6 {
    font-size: 4.4976rem
}

.font-size-22 {
    font-size: 1.375rem
}

.font-size-10 {
    font-size: .625rem
}

.font-size-11 {
    font-size: .688rem
}

.font-size-12 {
    font-size: .75rem
}

.font-size-13 {
    font-size: .812rem
}

.font-size-14 {
    font-size: .875rem
}

.font-size-15 {
    font-size: .938rem
}

.font-size-16 {
    font-size: 1rem
}


/** page loader **/
#loader {
    height: 100vh !important;
    width: 100%;
    background-color: #000F1E;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999999;
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden !important;
}

.loader {
    width: 48px;
    height: 48px;
    border: 3px dotted #FFF;
    border-style: solid solid dotted dotted;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    animation: rotation 2s linear infinite;
}

.loader::after {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 3px dotted #FF3D00;
    border-style: solid solid dotted;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    animation: rotationBack 1s linear infinite;
    transform-origin: center center;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotationBack {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

/** page loader **/

/** nav **/

.dropdown-menu.dropdown-menu-end {
    min-width: 100px !important;
}

.active {
    color: #DFA326 !important;
}

.nav-link:hover {
    color: #DFA326 !important;
    transition: 0.03s;
}

.dropdown-item:hover {
    background-color: transparent !important;
    color: #DFA326 !important;
}

.logo-img {
    height: 50px;
    width: 200px;
    object-fit: contain;
}

.navbar-toggler {
    height: 40px;
    width: 40px;
    background-color: #DFA326;
}

/* mobile nav */
#mb-navbar {
    /* height: 61px; */
    height: 100px;
}

.mb-search-btn-block i {
    font-size: 1.2em;
    color: #DFA326;
    z-index: 1;
}

.mb-search-form .form-section {
    width: calc(100% - 50px);
}

.mb-search-form-view-close-btn i {
    font-size: 2em;
}

.auth-account-dropdown-btn i:last-child {
    font-size: 1em;
}


/*adjust dropdown to appear on hover instead of neccessitating a click */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

/*hide the default dropdown toggle carret */
.dropdown-toggle::after {
    display: none;
}

/*search bar */
.search-block {
    background-color: transparent;
}

.search-block:hover,
.search-block:focus {
    outline: none !important;
    background-color: #DFA326;
}


/* Change the icon color when the parent search block is hovered or focused */
.search-block:focus ~ button i{
    color: black !important;
    transition: color 0.3s ease;
}

.search-submit-btn, #dp-search-submit-btn {
    background-color: transparent !important;
}

.dp-search-submit-btn {
    transform: translate(-40px, -1px) !important;
    z-index: 6 !important;
}

.dp-search-submit-btn i {
    color: #DFA326;
}

.search-block::placeholder {
    color: #DFA326 !important;
}

input[type="search"]::-webkit-search-cancel-button {
    display: none;
}

input[type="search"]::-moz-search-cancel-button {
    display: none;
}

/* country block */
.country-block p {
    font-size: 0.8em;
}

.countries-modal-dialog .modal-header {
    border-radius: 5px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.countries-modal-dialog .modal-header .modal-title {
    font-size: 1em;
}

.countries-modal-dialog .modal-body {
    padding: 5px 0 !important;
    margin: 0 !important;
    border-radius: 5px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

.countries-modal-dialog .modal-body {
    color: rgba(0, 0, 0, .8);
    margin: 5px 10px;
}

.countries_form .countrycheckbox:last-child {
    border-bottom: none;
}

.countrycheckbox {
    cursor: pointer !important;
}

.btn-close-modal {
    font-size: 1.5em;
}

.modal-body small {
    font-size: 0.8em;
}

.countrycheckbox {
    width: 100%;
    height: auto;
    padding: 15px 5px;
    margin-right: 5px !important;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, .2);
}

.countries_form .countrycheckbox:last-child {
    border-bottom: none;
}

.countrycheckboxinput {
   cursor:pointer;
   opacity:0;
}

.checkbox_text_section {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    margin: 0 !important;
    color: rgba(0, 0, 0, .8);
    /*z-index:2;*/
}

.countries_form .countrycheckbox:last-child {
    border-bottom: none;
}

.country-block i:last-child {
    color: #fff;
}

/* mobile country display box */
#mb-country-dp i {
    color: #fff !important;
}

/* xl & beyond search section */
.dp-search-block-section {
    max-width: 400px;
}

.dp-auth-account-block i {
    margin-left: 2px;
    font-size: 1em !important;
}

/*slider player styling */
.slider-player {
    height: 96vh;
}

.slider-section {
    width: 100%;
    height: 96vh;
    background-size: 100% 96vh;
    background-position: center;
    background-repeat: no-repeat;
    height: 96vh;
}

.slider-section video {
    width: 100%;
    height: 96vh;
    object-fit: fill;
}

.video-details-overlay {
    background-color: transparent !important;
}

.video-details-overlay .watch-now-link {
    font-size: 12px;
}

.video-details-overlay .watch-now-link i {
    padding-right: 5px;
}

.watch-now-link:focus,
.watch-now-link:active,
.watch-now-link:hover,
.unmute-action-btn:focus,
.unmute-action-btn:active,
.unmute-action-btn:hover {
    border: 2px solid #DFA326;
    transition: 0.03s ease;
}

.unmute-action-btn {
    width: 60px;
    height: 60px;
    border: 1px solid ghostwhite;
}

.unmute-action-btn i {
    font-size: 2.2em;
    margin: 0;
    transform: translateY(-3px);
}

.sm-unmute-action-btn {
    width: 40px;
    height: 40px;
    border: 1px solid ghostwhite;
}

.sm-unmute-action-btn i {
    font-size: 1.5em;
    margin: 0;
    transform: translateY(-1.5px);
}

.sm-video-title,
.sm-watch-now-link {
    font-size: 12px !important;
}

/* social share section */
.social-share-icon-btn {
    width: 120px;
    height: 120px;
    background-color: transparent;
    transition: 0.3s ease;
    border: 2px solid red;
}

.social-share-icon-btn:hover,
.social-share-icon-btn:focus,
.social-share-icon-btn:active {
    box-shadow: 0 4px 11px rgba(36, 186, 239, .35);
    background-color: transparent;
    border-color: red;
}

.jssocials-share.jssocials-share-twitter .jssocials-share-link {
    background-color: black !important
}

i.fa.fa-twitter.jssocials-share-logo:before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    background-image: url('https://verity.live/front/assets/img/x-share-icon-logo-letter-tr.png');
    background-size: cover
}


.jssocials-share {
    display: block !important;
    margin-bottom: 2vh !important
}

.jssocials-shares {
    display: flex
}

.copy-link-section-btn {
    width: 70px;
    height: 70px;
    border-radius: 100%;
    background-color: ghostwhite !important;
}

.copy-link-section-btn i {
    font-size: 2em;
    color: rgba(0, 0, 0, .7);
}

.copy-link-section-btn:hover,
.copy-link-section-btn:active,
.copy-link-section-btn:focus {
    background-color: #DFA326 !important;
}

.clicked-copy-link-btn {
    box-shadow: 0 0 0 8px transparent;
    animation: pulse1 1s;
    animation-iteration-count: 4;
}


/* live stream button section */
.live-streaming-btn {
    width: 94% !important;
    margin: 0 3%;
    background-color: red;
    color: #fff;
    font-size: 1.2em;
}

.live-streaming-btn:focus,
.live-streaming-btn:active,
.live-streaming-btn:hover {
    background-color: red;
    color: #fff;
    transition: 0.03s ease;
}

.ls-live-streaming-link {
    font-size: 16px !important;
}

#live-streaming-btn {
    -webkit-animation: glowing 1500ms infinite;
    -moz-animation: glowing 1500ms infinite;
    -o-animation: glowing 1500ms infinite;
    animation: glowing 1500ms infinite
}

@-webkit-keyframes glowing {
    0% {
        background-color: red;
        box-shadow: 0 0 3px red
    }

    50% {
        background-color: #F01;
        box-shadow: 0 0 40px #F01
    }

    100% {
        background-color: red;
        box-shadow: 0 0 3px red
    }
}

@-moz-keyframes glowing {
    0% {
        background-color: red;
        box-shadow: 0 0 3px red
    }

    50% {
        background-color: #F01;
        box-shadow: 0 0 40px #F01
    }

    100% {
        background-color: red;
        box-shadow: 0 0 3px red
    }
}

@-o-keyframes glowing {
    0% {
        background-color: red;
        box-shadow: 0 0 3px red
    }

    50% {
        background-color: #F01;
        box-shadow: 0 0 40px #F01
    }

    100% {
        background-color: red;
        box-shadow: 0 0 3px red
    }
}

@keyframes glowing {
    0% {
        background-color: red;
        box-shadow: 0 0 3px red
    }

    50% {
        background-color: #F01;
        box-shadow: 0 0 40px #F01
    }

    100% {
        background-color: red;
        box-shadow: 0 0 3px red
    }
}

/*-- Styles for potrait & landscape videos display --*/

/*-- heading classes --*/
.font-size-30 {
    font-size: 30px;
    font-weight: 700 !important;
}

.border-top {
    border-top: .0625rem solid #ffbc634d !important
}

.media-wrap-row-video-section {
    display: flex;
    flex-wrap: wrap;
    margin-right: 0px;
    margin-left: 0px;
}

/*-- video display classes --*/
.othervidsectionsblock-ref {
    font-family: montserrat, sans-serif !important;
    flex: 0 0 auto !important;
    width: 100% !important;
}

.owl-carousel.owl-theme.home-crousel.owl-loaded.owl-drag {
    font-size: .937rem;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    text-align: left;
    -webkit-font-smoothing: antialiased;
    font-family: montserrat, sans-serif !important;
    box-sizing: border-box !important;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    width: 100%;
    z-index: 999 !important;
    display: block;
}

.owl-stage-outer {
    font-size: .937rem;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    text-align: left;
    -webkit-font-smoothing: antialiased;
    font-family: "Raleway", sans-serif;
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box !important;
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0);
}

.owl-prev,
.owl-next {
    width: 5px;
    height: 100px;
    position: absolute;
    top: 48%;
    transform: translateY(-48%);
    display: block !important;
    border: 0px solid black;
    background: transparent !important;
    margin: 0 !important;
    height: 0;
}

.owl-prev {
    left: -20px;
}

.owl-next {
    left: 100%;
}

.owl-prev i,
.owl-next i {
    color: #eee;
    font-size: 45px;
    font-weight: normal;
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    height: 100% !important;
    /* object-fit: cover; */
    object-fit: fill;
}


.owl-item .vedio_symbol {
    width: 100%;
    justify-content: left;
    top: 0 !important;
    left: 50%;
    font-size: 13px;
}

.dark .owl-carousel .item:hover .youtube_symbol {
    background-color: rgb(241 139 3);
    opacity: 1;
}

.youtube_symbol {
    background-color: #000;
    border-radius: 50%;
    border: 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 40%;
    /* left: 20%; */
    opacity: 0.3;
}

.vedio_symbol {
    border-radius: 50%;
    border: 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 40%;
    left: 20%;
}

.thumbs_symbol {
    border-radius: 50%;
    border: 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 40%;
    left: 20%;
}

.thumbs-up_symbol {
    border-radius: 50%;
    border: 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 40%;
    left: 20%;
}

.live-broadcast-subscription-or-free-button {
    border-radius: 3px;
    padding: 2px 3px;
    margin-left: 5px;
    /* right: 3px; */
    font-size: 10px;
    position: absolute;
}

.free-view-button {
    background: #0672e5;
}

.subscription-view-button {
    background: #f83b22;
}

.text {
    color: white;
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: left;
    width: 90%;
}

.img-container img {
    border-radius: 5px;
    transition: 0.25s filter linear;
    -webkit-transition: 0.25s filter linear;
    -moz-transition: 0.25s filter linear;
    -o-transition: 0.25s filter linear;
    top: 0;
    left: 0;
    overflow: hidden;
    display: block;
}

.img-container:hover {
    /* transform: scale(1.30); */
    transition: ease all 1s;
    z-index: 1111;
}

.img-container:hover .overlay {
    opacity: 1;
    transition: ease all 1s;
}

.exclusives .overlay span {
    position: absolute;
    color: #fff;
    padding: 20px;
    top: 40%;
}

.overlay span {
    position: absolute;
    color: #fff;
    padding: 10px;
}

.overlay span .content_play {
    font-size: 20px;
}

.img-container {
    overflow: hidden;
}

.img-container.img-hover-zoom img {
    transition: transform .5s ease;
}

.img-container.img-hover-zoom:hover img {
    transform: scale(1.5);
}

.video-subtitle {
    font-size: 10px;
    margin-bottom: 0px;
}

.img-vdo {
    width: 100% !important;
    height: 100px !important;
    object-fit: cover;
}

.img-news {
    width: 100%;
    height: 100px !important;
    object-fit: cover;
}

.img-exclusive {
    width: 100%;
    height: 100px !important;
    object-fit: cover;
}

.img-highlights {
    width: 100%;
    height: 100px !important;
    object-fit: cover;
}

.img-interviews {
    width: 100%;
    height: 100px !important;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .carousel-item {
        height: 350px;
        top: 20px;

    }
}

@media (max-width: 1024px) {
    .centered {
        /* position: absolute !important; */
        top: 62% !important;
        left: 70px;
        margin-top: 50px;
        z-index: 1;
    }
}

/*-- potrait --*/
.vedio_symbol .fa-play {
    font-size: 18px;
    border: 1px solid #ED3833;
    border-radius: 100%;
    background: #ED3833;
    padding: 6px 7px 6px 9px
}

.vedio_symbol .fa-thumbs-up,
.vedio_symbol .fa-thumbs-down,
.vedio_symbol .fa-eye {
    font-size: 18px;
    border: 1px solid #BF8433;
    border-radius: 100%;
    background: #BF8433;
    padding: 6px 7px
}

.vedio_symbol {
    width: 100%;
    justify-content: left;
    top: 42%;
    left: 50%;
    font-size: 13px
}

.vedio_symbol i {
    margin-left: 5px !important;
    margin-right: 2px !important
}

@media(max-width:767px) {
    .gird-view-videos {
        flex-direction: column;
        padding: 0 !important
    }

    .video-item {
        width: 100% !important;
        padding: 10px 0 !imortant;
        margin: 0 !imortant
    }

    .item video-item {
        width: 100%;
        margin-left: 0px !important;
        margin-right: 0px !important;
        border-radius: 5px !important
    }

    #item_video_item {
        margin-left: 0px !important
    }

    .img-container:hover {
        transform: scale(.8) !important;
        transition: ease all 1s !important;
        transition-property: none !important;
        z-index: 1111
    }
}

@media screen and (min-width:768px) and (max-width:991px) {
    .gird-view-videos {
        flex-direction: row;
        flex-wrap: wrap
    }

    .video-item {
        width: 48% !important;
        padding: 10px 0 !imortant;
        margin: 10px 5px !imortant
    }

    .item video-item {
        width: 48%;
        margin-left: 1% !important;
        margin-right: 1% !important;
        border-radius: 5px !important
    }

    #item_video_item {
        margin-left: 0px !important
    }

}

.mb-link,
.mb-link-2 {
    color: #DFA326 !important;
    margin: bottom:0 !important
}

#upcoming-video-live-video {
    height: 270px
}

#img_frame {
    height: 280px !Important
}

#video_frame {
    height: 150px !Important;
    width: 100%
}

.item .shows_section {
    padding: 0 !Important
}

@media only screen and (max-width:767px) {
    .mb-link {
        margin-bottom: 1vh !important
    }

    .mb-link-2 {
        margin-top: 0px !important;
        margin-bottom: 1vh !important
    }

    #live_tv_broadcast {
        margin-bottom: 0px !important
    }

    #upcoming-video-live-video {
        height: 180px
    }

    #current_news {
        margin-top: 0px !important;
        margin-bottom: 0px !important
    }

    .shows_section {
        padding: 0px !important
    }

    #img_frame {
        height: 380px !Important;
        border: 2px solid pink
    }

    #video_frame {
        width: 100% !important;
        height: 100% !Important;
        margin: 0 !important;
        object-fit: fill !important
    }

    .item .shows_section {
        padding: 20px 0
    }
}

.mb-link,
.mb-link-2 {
    color: #DFA326 !important;
    margin: bottom:0 !important
}

#upcoming-video-live-video {
    height: 270px
}

#img_frame {
    height: 280px !Important
}

#video_frame {
    height: 150px !Important;
    width: 100%
}

.item .shows_section {
    padding: 0 !Important
}

@media only screen and (max-width:767px) {
    #live_tv_broadcast {
        margin-bottom: 0px !important
    }

    #upcoming-video-live-video {
        height: 180px
    }

    #current_news {
        margin-top: 0px !important;
        margin-bottom: 0px !important
    }

    .shows_section {
        padding: 0px !important
    }

    #img_frame {
        height: 380px !Important
    }

    #video_frame {
        width: 100% !important;
        height: 150px !Important;
        margin: 0 !important;
        object-fit: fill !important
    }

    .item .shows_section {
        padding: 20px 0
    }

    .video-wrapper {
        max-width: 100% !important;
        height: 55%;
        padding: 0 !important;
        overflow: hidden !important;
        border: 2px solid transparent !important
    }

    #video_frame,
    .homepage-video-player {
        width: 98% !important;
        height: 100% !important;
        margin: 0 1% !important;
        object-fit: fill !important;
        border: 2px solid transparent !important
    }
}

.mobile-carousel-container {
    position: relative;
    overflow: hidden;
    width: 96%;
    max-width: 100%;
    margin: 2vh auto 4vh auto;
    border-radius: 5px;
    touch-action: pan-y
}

.mobile-carousel-content {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
    margin: 0 auto !important
}

.mobile-carousel-item {
    width: 100%;
    flex: 0 0 auto
}

.mobile-carousel-object {
    width: 100% !important;
    height: 380px !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column !important;
    background: #EDEDED;
    position: relative
}

.mobile-thumbnail-cover-image {
    width: 100%;
    height: 380px
}

.mobile-video-container,
.mobile-video-details-container {
    width: 100%;
    height: 190px;
    margin: 0;
    padding: 0
}

.mobile-video-container {
    position: relative !important;
    width: 100% !important;
    height: 190px !important;
    padding-top: 56.25% !important;
    background: orange !important;
}

.mobile-carousel-video-player {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important
}

.mobile-video-container {
    height: 190px;
    background-color: #dfa356
}

.mobile-video-details-container {
    height: 190px;
    background: rgba(0, 0, .7)
}

.mobile-video-container video {
    width: 100%;
    height: 100%;
    max-height: calc(380px / 2);
    object-fit: cover !important;
    display: block;
}

.mobile-video-details-container {
    width: 100%;
}

.mobile-carousel-btn-prev-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 24px;
    color: #fff;
    background-color: rgba(0, 0, 0, .5);
    padding: 10px;
    border: none;
    outline: none;
    left: 10px
}

.mobile-carousel-btn-next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 24px;
    color: #fff;
    background-color: rgba(0, 0, 0, .5);
    padding: 10px;
    border: none;
    outline: none;
    right: 10px;
    z-index: 11
}

.mobile-video-stats-display {
    width: 98%;
    height: 40%;
    padding: 5px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap
}

.mobile-vid-stats {
    display: flex;
    align-items: center;
    margin: 0;
    border: 1px solid orange
}

.mobile-link-btn {
    width: 20px;
    height: 20px border-radius:50%;
    background-color: red
}

.vid-stats,
.vid-subscription {
    display: flex;
    align-items: center;
    margin: 0
}

.vid-stats {
    width: 70%
}

.vid-subscription {
    width: 30%
}

.vid-info {
    width: 100%;
    padding: 10px;
    margin: 5px 0
}

.vid-stats button {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin: 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: red;
    cursor: pointer
}

.vid-subscription button {
    width: auto;
    height: auto;
    border-radius: 5px;
    margin: 0 5px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: darkblue;
    color: #fff
}

.video-name {
    margin: 5px;
    padding: 5px;
    color: #fff
}

.vid-tag {
    width: auto;
    height: auto;
    border-radius: 10px;
    margin: 0 5px;
    padding: 5px
}

.video-desc {
    width: 90%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0 5px;
    padding: 5px;
    color: #fff
}

.video-time {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0 5px;
    padding: 5px;
    color: #fff;
    font-size: .8em
}

.displayvideoontouch {
    display: none;
    transition: 0.3s ease
}

.mb-btn-link {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: red
}

.media-scale-transform:hover {
    transform: scale(1) !important;
    transition: 13s !important
}

@media(min-width:768px) {
    .media-wrap-row-video-section .owl-item:hover .item:not(.landscape-type-item) {
        -ms-transform: none;
        -webkit-transform: none;
        transform: none;
        -webkit-transform: none;
        transform: none;
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
        -webkit-perspective: none;
        perspective: none
    }

    /*-- potrait --*/
    .vedio_symbol .fa-play {
        font-size: 30px !important;
    }

    .vedio_symbol .fa-thumbs-up,
    .vedio_symbol .fa-thumbs-down,
    .vedio_symbol .fa-eye {
        font-size: 30px !important;
    }
}

/*-- landscape --*/
.vidplaybtn {
    -webkit-animation: glowing 1500ms infinite;
    -moz-animation: glowing 1500ms infinite;
    -o-animation: glowing 1500ms infinite;
    animation: glowing 1500ms infinite
}

@media(min-width:768px) {
    .item.landscape-type-item {}
}

@-webkit-keyframes glowing {
    0% {
        background-color: red;
        box-shadow: 0 0 3px red
    }

    50% {
        background-color: #F01;
        box-shadow: 0 0 40px #F01
    }

    100% {
        background-color: red;
        box-shadow: 0 0 3px red
    }
}

@-moz-keyframes glowing {
    0% {
        background-color: red;
        box-shadow: 0 0 3px red
    }

    50% {
        background-color: #F01;
        box-shadow: 0 0 40px #F01
    }

    100% {
        background-color: red;
        box-shadow: 0 0 3px red
    }
}

@-o-keyframes glowing {
    0% {
        background-color: red;
        box-shadow: 0 0 3px red
    }

    50% {
        background-color: #F01;
        box-shadow: 0 0 40px #F01
    }

    100% {
        background-color: red;
        box-shadow: 0 0 3px red
    }
}

@keyframes glowing {
    0% {
        background-color: red;
        box-shadow: 0 0 3px red
    }

    50% {
        background-color: #F01;
        box-shadow: 0 0 40px #F01
    }

    100% {
        background-color: red;
        box-shadow: 0 0 3px red
    }
}





.vidoverlayx {
    background-image: none !important;
    background-color: black !important;
}

.img-container {
    position: relative;
    display: inline-block;
    transition: ease all 1s;
    cursor: pointer;
}

.img-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(267deg, #00000000, #192133b8, #192133);
    background-image: -moz-linear-gradient(267deg, #00000000, #192133b8, #192133);
    background-image: -webkit-linear-gradient(267deg, #00000000, #192133b8, #192133);
    transition: opacity .25s ease-in, bottom .25s cubic-bezier(0.33, 0.04, 0.63, 0.93);
    opacity: 0;
}

.img-container img {
    border-radius: 5px;
    transition: 0.25s filter linear;
    -webkit-transition: 0.25s filter linear;
    -moz-transition: 0.25s filter linear;
    -o-transition: 0.25s filter linear;
    top: 0;
    left: 0;
    overflow: hidden;
    display: block;
}

.img-container:hover {
    /* transform: scale(1.30); */
    transition: ease all 1s;
    z-index: 1111;
}

.img-container:hover .overlay {
    opacity: 1;
    transition: ease all 1s;
}


.img-container {
    overflow: hidden;
}

.img-container.img-hover-zoom img {
    transition: transform .5s ease;
}

.img-container.img-hover-zoom:hover img {
    transform: scale(1.5);
}

.video-subtitle {
    font-size: 10px;
    margin-bottom: 0px;
}

.category-page-subtitle-slide {
    color: #fff;
}

/* img.img-fluid.doc-img {
    min-height: 420px !important;
} */
.img-vdo {
    width: 100% !important;
    height: 100px !important;
    object-fit: cover;
}

.img-news {
    width: 100%;
    height: 100px !important;
    object-fit: cover;
}

.img-exclusive {
    width: 100%;
    height: 100px !important;
    object-fit: cover;
}

.img-highlights {
    width: 100%;
    height: 100px !important;
    object-fit: cover;
}

.img-interviews {
    width: 100%;
    height: 100px !important;
    object-fit: cover;
}

.doc-img {
    width: 800px !important;
    height: 300px !important;
    object-fit: cover;
}

/* @media screen and (min-width: 480px) {
    div#tvprograms {
      background-color: lightgreen;
    }
  } */
@media (max-width: 1024px) {
    .carousel-item {
        height: 350px;
        top: 20px;

    }
}

.featured_img:hover .overlay-1 {
    opacity: 1;
}

.top-63 {
    top: 70%;
}

.text.top-74 {
    top: 80%;
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    height: 100% !important;
    /* object-fit: cover; */
    object-fit: fill;
}


.height-150 {
    height: 150px;
}

.featured_img img {
    width: 100%;
    height: 100% !important;
    /* object-fit: cover; */
    object-fit: fill;
}

.height-280 {
    height: 280px;
}

.featured_img:hover .video-title-without-hover {
    display: none;
}

.img-container:hover .video-title-without-hover {
    display: none;
}

.dark .owl-carousel .item:hover .youtube_symbol {
    background-color: rgb(241 139 3);
    opacity: 1;
    display: none;
}

.overlay-1 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-image: linear-gradient(267deg, #00000000, #192133b8, #192133);
    background-image: -moz-linear-gradient(267deg, #00000000, #192133b8, #192133);
    background-image: -webkit-linear-gradient(267deg, #00000000, #192133b8, #192133);
}

.featured_img {
    cursor: pointer;
    position: relative;
    width: 100%;
    overflow: hidden;
    transition: ease all 1s;
    border-radius: 5px;
}

/*-- Styles for potrait & landscape videos display --*/

/* Leave Feedback Form classes --*/
.sm-form-control:focus,
.sm-form-control:hover {
    background-color: #DFA326;
    transition: 0.3s ease;
}

/*-- footer section --*/
@media(max-width: 575px) {
    .socialsharelinkssect {
        width: 100% !important;
        justify-content: center !important;
        /*border:1px solid red; */
    }

    .footer-bt-block-dp-b {
        display: none !important;
    }

    .footer-btn-block-mb-a {
        display: flex !important;
    }

}

@media(min-width: 992px) {
    .footer-bt-block-dp {
        justify-content: space-between;
    }

    .footer-bt-block-dp-a {
        width: 30%;
    }

    .footer-bt-block-dp-b {
        display: flex !important;
        width: 30%;
    }

    .footer-bt-block-dp-c {
        width: 30%;
        justify-content: flex-end;
    }

    .footer-btn-block-mb-a {
        display: none !important;
    }

}

.border-r-cs {
    border-right: 1px solid #949cb07a !important;
}

.cs-text-s {
    font-size: 14px !important;
}

.cs-text-s-two {
    font-size: 12px !important;
}

.home-link img{
    width:50px;
    height:50px;
}

/* responsive classes */
/* xs - sm  devices */
@media screen and (max-width:575px) {
    body {
        padding-top: 100px;
    }

    nav {
        border-bottom: 1px solid #161B22;
    }

    .navbar-brand {
        max-width: 60px;
        z-index: 0;
    }

    .navbar-brand img {
        transform: scale(2.5) translateX(10px);
    }

    .home-link img{
        width: 50px;
        height: 50px;
    }

    .nav-item .nav-link {
        font-size: 12px !important;
    }

    .mn-navbar-toggler {
        z-index: 2;
    }

    #mb-country-dp {
        font-size: 0.8em;
    }

    .mb-account-dropdown .account-dropdown-btn i {
        font-size: 1.7em;
    }

    .mb-search-btn-block i {
        font-size: 1.2em;
        color: #DFA326;
    }


  /* Change the icon color when the parent search block is hovered or focused */
  .search-block:focus ~ button i{
    color: black !important;
    transition: color 0.3s ease;
}

.search-submit-btn i{
    color: #DFA326;
}


    /*mobile close overlay */
    .mb-nav-close-overlay {
        width: 100%;
        height: 100vh;
        z-index: 1000;
        background-color: transparent;
    }

    /*search block close overlay */
    .mb-search-block-close-overlay {
        width: 100%;
        height: 100vh;
        background-color: transparent;
    }

    /*search form view */
    .mb-search-form-view-close-btn i {
        font-size: 1.7em;
    }

    .mb-search-form .form-section {
        width: calc(100% - 50px);
    }

    /*slider player <576px styling */
    .slider-player {
        height: 60vh;
    }

    .slider-section {
        width: 94%;
        height: 40vh;
        background-size: 100% 60vh;
        background-position: center;
        background-repeat: no-repeat;
        height: 60vh;
        margin: 0 auto !important;
        padding:0 !important;
        border: 2px solid #4D557D !important;
        border-radius: 10px !important;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1) !important;
        overflow:hidden !important;
    }

    .slider-section video {
        width: 100%;
        height: 59.9vh;
        margin:0 !important;
        padding:0 !important;
        object-fit: fill;
        border-radius:10px !important;
    }

    /* social share section */
    .social-share-icon-btn {
        width: 90px;
        height: 90px;
    }

    .social-modal-dialog {
        width: 100% !important;
        position: fixed !important;
        bottom: -10px !important;
        animation: none !important;
        border-radius: 10px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* videos by category classes */
    .font-size-30 {
        font-size: 16px !important;
        padding-right: 10px !important;
    }

    .media-wrap-row-video-section {
        margin-right: -10px !important;
        margin-left: -10px !important;
    }

    .owl-prev,
    .owl-next {
        width: 30px;
        height: 30px;
        padding: 0 !important;
        display: flex !important;
        justify-content: center;
        align-items: center;
    }

    .owl-prev i,
    .owl-next i {
        font-size: 35px !important;
        margin: 0 !important;
    }

    .owl-prev {
        left: 7px !Important;
    }

    .owl-next {
        left: calc(95% - 15px) !Important;
        right: -20px !Important;
    }

    .owl-prev:hover,
    .owl-next:hover,
    .owl-prev:focus,
    .owl-next:focus {
        /* transform: none !important; */
        transition: all .3s ease-out;
        background: #DFA326 !important;
        color: #000;
    }
}


/* sm - md devices */
@media screen and (min-width:576px) and (max-width:767px) {

    body {
        padding-top: 100px;
    }

    .home-link img{
        width:40px;
        height:40px;
    }

    /* social share section */
    .social-share-icon-btn {
        width: 90px;
        height: 90px;
    }

    /* videos by category classes */
    .font-size-30 {
        font-size: 16px !important;
    }
}

/* md - lg devices */
@media screen and (min-width:767px) and (max-width:991px) {

    body {
        padding-top: 100px;
    }

    .home-link img{
        width:40px;
        height:40px;
    }

}

/* lg - xl devices */
@media screen and (min-width:992px) and (max-width:1199px) {

    body {
        padding-top: 100px;
    }

    .home-link img{
        width:40px;
        height:40px;
    }
}

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

    /* transparent navbar scroll effect */
    nav {
        transition: background-color 0.3s ease, box-shadow 0.3s ease;
    }

    .navbar-brand {
        max-width: 60px;
        z-index: 0;
    }

    .navbar-brand img {
        transform: scale(2.5) translateX(10px);
        z-index: 0 !important;
    }

    .nav-item {
        font-size: 14px !important;
    }

    .search-block {
        width: 80px !important;
        max-width: 340px !important;
    }

    .cs-tr {
        background-color: transparent;
        box-shadow: none !important;
    }

    .dp-navbar.scrolled {
        background: rgb(0, 15, 30);
        box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
    }

    .owl-prev,
    .owl-next {
        width: 30px;
        height: 30px;
        padding: 0 !important;
        display: flex !important;
        justify-content: center;
        align-items: center;
    }

    .owl-prev i,
    .owl-next i {
        font-size: 35px !important;
        margin: 0 !important;
    }

    .owl-prev {
        left: -20px !Important;
    }

    .owl-next {
        left: calc(99.3%) !Important;
        right: 0px !Important;
    }

    .owl-prev:hover,
    .owl-next:hover,
    .owl-prev:focus,
    .owl-next:focus {
        /* transform: none !important; */
        transition: all .3s ease-out;
        background: #DFA326 !important;
        color: #000;
    }
}

/* latest styles added to the videos container homepage potrait */
.span-icon-circle{
    width:40px;
    height:40px;
    background-color:red;
    display:flex;
    justify-content:center;
    align-items: center;
    padding:0 !important;
    margin:0 !important;
    border-radius:50%;
    text-decoration:none !important;
    text-align:center !important;
    transition:0.2s ease;
    border:2px solid #fff !important;
}

.span-icon-circle i{
    font-size:1.5em !important;
    margin:0 !important;
    padding:0 !Important;
}

.like-dislike-btn{
    background-color: #BF8433;
}

.span-icon-circle:hover{
    transform: scale(1.2);
}

.active-like-dislike-btn{
    background-color: green !important; /* Change color when clicked */
    transition: 0.3s ease;
}

