/* ---------------------------------------
    [Table of contents]

    1. Fonts
    2. Global Settings
    3. Row and Columns
    4. Header
    5. Main Story Content
    6. Live Election Chart
    7. News from India Today
    8. Election Genie and know you Mp
    9. political stock exchange
    10. Live Video
    11. Live Blog update
    12. Latest Photo Gallery
    13. varaition list
    14. footer
    15. Responsive

    -------------------------------------------*/


    /*** 
    ====================================================================
        1. Fonts
    ====================================================================
    ***/ 
        
    @import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,900');

    @import url('https://fonts.googleapis.com/css?family=Oswald:400,500,600,700');

    /*** 
    ====================================================================
        2. Global Settings
    ====================================================================
     ***/ 

*,
    *::before,
    *::after {
      box-sizing: border-box;
      padding: 0px;
      margin: 0px;
    }
    body {
      margin: 0;
      font-family: 'Open Sans', sans-serif;
      font-size: 1rem;
      font-weight: 400;
      line-height: 1.5;
      color: #212529;
      text-align: left;
      background-color: #fff;
      counter-reset: my-awesome-counter;
    }
    a{
      color: #007bff;
      text-decoration: none;
      background-color: transparent;
      -webkit-text-decoration-skip: objects;
    }
    a:hover {
      color: #a70000;
      text-decoration: underline;
    }
    a:not([href]):not([tabindex]):focus {
      outline: 0;
    }
    p {
      margin-top: 0;
      margin-bottom: 1rem;
      color: #121212;
      line-height: 1.6;
    }
blockquote{
    color:#a70000;
    font-size: 16px;
    font-weight: bold;
    line-height: 24px;
    pointer-events: stroke;
    font-family: 'Open Sans', sans-serif;
    width: 85%;
    position: relative;
    display: block;
    margin: 40px auto 35px;
}
blockquote::before{
    content: "\2033";
    position: absolute;
    font-size: 60px;
    color: #000;
    top: -4px;
    left: -31px;
}
blockquote::after{
    content: "\2033";
    position: absolute;
    font-size: 60px;
    color: #000;
    bottom: -20px;
    right: -31px;
}
    div > p:last-child{
        margin-bottom: 0px;
    }
    ul{
      margin-top: 0;
      margin-bottom: 1rem;
      list-style: none;
    }
    .wrapper{
        width: 100%;
    }
    
.pa15{ padding: 15px;}
.px15{
    padding: 0 15px;
}
.pb15{
    padding:15px;
}
.pb20{
    padding:20px;
}
img.max-responsive{
    max-width: 100%;
    height: auto;
}
.container {width: 100%;padding-right: 15px;padding-left: 15px;margin-right: auto;margin-left: auto;}@media (min-width: 576px) {.container {max-width: 540px;}}@media (min-width: 768px) {.container {max-width: 720px;}}@media (min-width: 992px) {.container {max-width: 960px;}}@media (min-width: 1200px) {.container {max-width: 1140px;}}


.sidebar-widget{
    padding-top: 15px;
}

.widget-heading{
    position: relative;
    margin-bottom: 10px;
}
.widget-heading h3{
    font-size: 21px;
    text-transform: uppercase;
    color:#bb0a0a;
    font-weight: bold;
    display: inline-block;
    padding-right: 8px;
    background-color: #fff;
}
.widget-heading::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    background-color: #ddd;
    left: 0px;
    z-index: -1;
    top: 50%;
    -webkit-transform: translatey(-50%);
    -ms-transform: translatey(-50%);
    -o-transform: translatey(-50%);
    transform: translatey(-50%);
}
.section-outer{
    padding: 15px 0px;
}
.section-heading{
    margin-bottom: 15px;
}
.section-heading h3{
    font-size: 23px;
    color: #000;
    font-weight: bold;
    font-family: 'Open Sans', sans-serif;
}


 /*** 
====================================================================
    3. Row and Columns
====================================================================
 ***/ 

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-6{
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col-6{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;    
}




 /*** 
====================================================================
    4. Header
====================================================================
 ***/ 

.header{
    background-color: #000;
    padding: 4px 0px 11px;
    margin-bottom: 20px;
}
.header h1{
    color:#fff;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 61px;
    letter-spacing: -2px;
    font-weight: 900;
}
.header h1 span{
    color:#fe0000;
}
.top-google-ad{
    text-align: center;
    padding: 0 15px;
}
.top-google-ad img{
    max-width: 100%;
}
.main-content{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    padding: 30px 0px;
}
.main-left-col, .main-right-col{
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 20px;
    padding-left: 20px; 
}
.main-left-col{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
    max-width: 70%;
}
.main-right-col{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    max-width: 30%;
    border:1px solid #ddd;
    padding: 20px;
}

 /*** 
====================================================================
    5. Main Story Content
====================================================================
 ***/ 

.main-story{
    padding: 15px 0px;
}
.main-story h2{
    font-size: 34px;
    color:#000;
    line-height: 38px;
    margin-bottom: 20px;
    font-family: 'Open Sans', sans-serif;
}

 /*** 
====================================================================
    6. Live Election Chart
====================================================================
 ***/ 

.live-el-chart{
  border:1px solid #d9d9d9; 
  padding: 15px;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}


 /*** 
====================================================================
    7. News from India Today
====================================================================
 ***/ 

.news-lising li{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: flex-start;
}

.news-lising li .thumb{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 172px;
    flex: 0 0 172px;
    max-width: 172px;
    line-height: 0px;
    overflow: hidden;
}
.news-lising li .thumb img{
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    max-width: 100%;
}
.news-lising li:hover img{
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}


.news-lising li{
    padding-bottom: 0px;
    margin-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
    overflow: hidden;
}
.news-lising li:last-child{
    border:none;
}
.news-lising li .ns-title{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% - 172px);
    flex: 0 0 calc(100% - 172px);
    max-width: calc(100% - 172px);
    padding-left: 18px;
}
.hd-line-style{
    position: relative;
}
.hd-line-style h3, .hd-line-style h4, .hd-line-style h5{
    background-color: #fff;
    display: inline-block;
    padding-right: 10px;
}
.hd-line-style::before{
    content: '';
    position: absolute;
    top: 50%;
    height: 1px;
    right: 0px;
    width: 100%;
    z-index: -1;
    background-color: #bcbcbc;
    -webkit-transform: translatey(-50%);
    -ms-transform: translatey(-50%);
    -o-transform: translatey(-50%);
    transform: translatey(-50%);
}
.news-lising li .ns-title h4{
    margin-bottom: 3px;
    position: relative;
}
.news-lising li .ns-title h4, .news-lising li .ns-title a{
    color: #676767;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    font-family: 'Open Sans', sans-serif;
    text-decoration: none;
}
.news-lising li .ns-title a:last-child{
    display: block;
}

.news-lising li .ns-title h4:hover, .news-lising li .ns-title a:hover{
    color:#000;
    text-decoration: none;
}
.news-lising .share-icon{
    width: 28px;
    height: 28px;
    position: relative;
    left: -5px;
}
.news-lising .share-icon svg{
    width: 25px;
    height: 25px;
    fill:#b5b5b5;
}


 /*** 
====================================================================
    8. Election Genie and know you Mp
====================================================================
 ***/ 

.electionSection {
    margin: 0;
    padding: 0;
    position: relative;
    font-family: "Open Sans", sans-serif
}
.electionSection * {
    box-sizing: border-box
}
.elecLeftTab img {
    width: 100%;
    display: block;
    height: auto;
}
.electionSection a,
.electionSection a:hover {
    text-decoration: none
}
.electionSection ul {
    margin: 0;
    padding: 0;
    list-style: none
}
.electionSection .border-none {
    border-bottom: none!important
}
.electionSection .mb0 {
    margin-bottom: 0!important
}
.electionSection img {
    width: 100%;
    display: block;
    height: auto
}
.electionSection .tabNav {
    padding: 0;
    background: #3e6fa7;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    overflow: hidden;
    line-height: 0px;
}
.electionSection .tabNav .tabHead {
    width: 100%;
    display: inline-block;
    position: relative
}
.electionSection .tabNav .tabHead ul {
    margin: 0;
    padding: 4px 0 0 10px;
    float: left;
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    text-transform: uppercase;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 20px
}
.electionSection .tabHead ul li {
    width: auto!important;
    padding: 10px 15px;
    color: #fff;
    cursor: pointer;
    display: inline-block
}
.electionSection .tabHead ul li.active {
    background-color: #fff;
    color: #163353;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    -webkit-box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2)
}
.electionSection .tabHead #tabNext {
    cursor: pointer;
    float: right;
    margin-top: 15px
}
.electionSection .moreLink {
    margin: 0;
    padding: 12px 10px 0 0;
    float: right;
    font-size: 13px;
    font-family: "Open Sans", sans-serif;
    line-height: 20px;
    font-weight: 600;
    color: #6e7b8b;
    text-transform: uppercase
}
.electionSection .moreLink a {
    margin: 0;
    padding: 0 15px 0 0;
    color: #6e7b8b;
    background: url(../images/arrow-icon.jpg) no-repeat right 7px;
    text-decoration: none
}
.electionSection .moreLink a:hover {
    color: #000
}
.electionSection .TabContent {
    border: 1px solid #e6e6e6;
    border-top: none;
    padding: 15px 10px 10px
}
.electionSection .TabContent li.tabItem {
    display: none
}
.electionSection .TabContent li.tabItem.active {
    display: block
}
.electionSection input,
.electionSection button,
.electionSection .sep {
    font-family: "Open Sans", sans-serif;
    font-size: 14px
}
.electionSection input::-webkit-input-placeholder {
    color: #787878
}
.electionSection input::-moz-placeholder {
    color: #787878
}
.electionSection input:-ms-input-placeholder {
    color: #787878
}
.electionSection input:-moz-placeholder {
    color: #787878
}
.electionSection .txt {
    border: 1px solid #ebebeb;
    padding: 8px;
    width: 100%;
    margin-bottom: 10px;
    height: 40px;
}
.electionSection .searchform .txt {
    width: 100%;
    margin-bottom: 5px
}
.electionSection .submitBtn {
    padding: 7px 15px;
    color: #fff;
    background-color: #5b5b5b;
    border: none;
    margin-left: -4px;
    font-size: 18px;
    font-weight: 600;
    -webkit-transition: all ease .25s;
    -o-transition: all ease .25s;
    transition: all ease .25s;
    border-radius: 3px;
    height: 40px
}
.electionSection .searchform .submitBtn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    position: relative;
    top: 2px
}
.electionSection .submitBtn:focus {
    border: none;
    box-shadow: none
}
.electionSection .submitBtn:hover {
    background-color: #000
}
.btn-disable,
.btn-disable:hover {
    background-color: #e6e6e6 !important;
    cursor: not-allowed !important;
}
.electionSection .selectForm .submitBtn {
    margin-left: 0;
    width: 100%;
    text-align: center
}
.electionSection .sep {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 5px
}
.electionSection .mp-thumb,
.electionSection .mp-des {
    display: inline-block
}
.electionSection .mp-list li {
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 10px;
    margin-bottom: 10px;
    display: flex
}
.electionSection .mp-list li:last-child {
    border: none;
    margin-bottom: 0px;
}
.electionSection .mp-list li.more-link {
    text-align: right;
    margin-bottom: 0;
    padding-bottom: 0
}
.electionSection .mp-list li.more-link a {
    display: inline-block;
    font-size: 13px;
    position: relative;
    color: #6e7b8b;
    margin-left: auto;
}
.electionSection .mp-list li.more-link a i {
    font-size: 7px;
    position: relative;
    top: -2px;
    margin-left: 1px;
}
.electionSection .mp-list li.more-link a:hover {
    color: #000
}
.electionSection .mp-thumb {
    padding-right: 15px;
    width: 114px;
}
.electionSection .mp-des {
    width: calc(100% - 114px);
}
.electionSection .mp-des p {
    font-size: 12px;
    margin-bottom: 0;
    color: #2b2b2b
}
.electionSection .searchAll {
    margin: 0px;
    padding: 10px;
    position: absolute;
    top: 112px;
    left: 12px;
    background: #fff;
    width: calc(100% - 23px);
    padding-bottom: 31px;
    display: none;
    z-index: 555;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}
.electionSection .searchAll.showSearchBox {
    display: block
}
.electionSection .searchAll ul {
    margin: 0px;
    padding: 4px;
    list-style: none;
    overflow: hidden
}
.electionSection .searchAll ul li {
    margin: 0px;
    padding: 8px 0px;
    border-bottom: 1px solid #e6e6e6;
    overflow: hidden;
    min-height: 38px;
}
.electionSection .searchAll ul.list-head li > div {
    margin: 0px;
    padding: 0px;
    width: 33%;
    float: left;
    font-size: 13px;
    color: #000;
    font-family: "Open Sans", sans-serif;
    font-weight: bold;
}
.electionSection .searchAll ul li > div {
    margin: 0px;
    padding: 0px;
    width: 33%;
    float: left;
    font-size: 13px;
    color: #000;
    font-family: "Open Sans", sans-serif;
}
.electionSection .searchAll ul li:last-child {
    border-bottom: 0px;
}
.electionSection .searchSlideBottom {
    margin: 0px auto;
    width: 150px
}
.electionSection .searchSlide {
    margin: 0px;
    padding: 10px 0px;
    background: #7d7d7d;
    border-radius: 5px;
    text-align: center;
    font-size: 14px;
    color: #fff;
    font-family: "Open Sans", sans-serif;
    overflow: hidden
}
.electionSection .searchSlideBottom .prvBtn {
    float: left;
    margin: 4px 50px 0 0;
}
.electionSection .searchSlideBottom .numList {
    float: left
}
.electionSection .searchSlideBottom .nextBtn {
    float: left;
    margin: 4px 0px 0 50px;
}
.electionSection .searchSlideBottom img {
    width: auto
}
.electionSection .btnClose {
    margin: 0px;
    padding: 0px;
    position: absolute;
    top: 0px;
    right: 0px;
    cursor: pointer
}
.electionSection .btnClose img {
    width: auto
}


 /*** 
====================================================================
    9. political stock exchange
====================================================================
 ***/ 

.pse-section{
  padding:10px;
  background-color: #f4f4f4;
  box-shadow:0 0 2px rgba(0,0,0,0.2);
}
.pse-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pse-title h4{
    font-family:"Open Sans", sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 900;
    color: #ed1c24;
    line-height: 19px;
}
.pse-title h4 span{
    color: #121212;
}
.pse-thumb{
    margin-bottom: 4px;
    position: relative;
    overflow: hidden;
    line-height: 0px;
}
.pse-thumb a{
    display: block;
    width: 100%;
}
.pse-thumb img{
 -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
   width: 100%;
   height: auto;
   display: block;
}
.pse-section:hover .pse-thumb img{
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}
.pse-thumb .play-icon{
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
.pse-thumb .play-icon svg{
    fill:#fff;
    height: 50px;
    width: 50px;
}
.pse-video-des, .pse-video-des a{
   font-size: 14px;
   color: #000;
   line-height: 20px;   
}
.pse-video-des, .pse-video-des a:hover{
    text-decoration: none;
}

 /*** 
====================================================================
    10. Live Video
====================================================================
 ***/ 

.live-video-section{
    background-color: #000;
    width: 100%;
    padding: 40px 0px;
}
.lv-video-inner{
    width: 80%;
    margin: 0 auto
}
.live-video-heading{
    border-bottom: 1px solid #222;
    padding-bottom: 15px;
    margin-bottom: 20px;
}
.live-video-heading h2{
    color: #ed1c25;
    font-size: 25px;
}
.live-video-heading h2 span{
    color:#fff;
}
.video-poster{
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
    line-height: 0px;
}
.video-poster img{
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    width: 100%;
    height: auto;
    display: block;
}
.video-poster:hover img{
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}
.video-poster .lv-play-icon{
    position: absolute;
    bottom: 40px;
    right: 20px;
    border: 3px solid #fff;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-poster .lv-play-icon svg{
    width: 70px;
    height: 70px;
    position: relative;
    left: 5px;
    fill:#fff;
}
.video-poster .lv-play-icon:hover{
   border-color:#a70000;
    background-color:#a70000;
}
.video-poster .lv-play-icon:hover svg{
    fill:#fff;
}
.live-video-section h4{
    font-size: 19px;
    color:#fff;
    font-family:"Open Sans", sans-serif;
    line-height: 27px;
    font-weight: 400;
    margin-bottom: 10px;
}
.live-video-section p{
    font-size: 14px;
    line-height: 22px;
    color: #787878;
    margin-bottom: 10px;
}
.live-video-section .post-date{
    color: #b8b8b8;
    font-size: 14px;
    text-transform: uppercase;
    font-style: italic;
}
.live-video-section .other-videos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    margin-bottom: 0px;
    padding-top: 30px;
}
.live-video-section .other-videos a:hover{
    text-decoration: none;
}
.live-video-section .other-videos li{
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
   -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33%;
    flex: 0 0 33.33%;
    max-width: 33.33%;    
}
.live-video-section .other-videos li .v-thumb{
    position: relative;
    margin-bottom: 8px;
    overflow: hidden;
    line-height: 0px;
}
.live-video-section .other-videos li .v-thumb img{
    width: 100%;
    height:auto;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
}
.live-video-section .other-videos li:hover .v-thumb img{
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}

.live-video-section .other-videos li .lv-play-icon{
   position: absolute;
    width: 25px;
    height: 25px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
   bottom: 10px;
   right: 10px;
    z-index: 1;
}
.live-video-section .other-videos li .lv-play-icon svg{
    fill:#fff;
    height: 17px;
    width: 17px;
    position: relative;
    left: 1px;
}
.other-videos .des h4{
    font-size: 14px;
    line-height: 18px;
    color: #787878;
    margin-bottom: 8px;
}
.other-videos .des .post-date{
    color: #b8b8b8;
    font-size: 12px;
}

 /*** 
====================================================================
    11. Live Blog update
====================================================================
 ***/ 

.live-blog-update{
   padding: 20px 40px;
   box-shadow: 0 0 5px rgba(0,0,0,0.2);
}
.blog-lising{
    padding-top: 10px;
    max-height:640px;
    overflow: hidden;
}
.blog-lising #mCSB_1_container > li{
    padding-bottom: 10px;
    border-bottom: 1px solid #dfdfdf;
    margin-bottom: 20px;
}
.blog-lising #mCSB_1_container > li:last-child{
    border-bottom: none;
    padding-bottom: 0px;
    margin-bottom: 0px;
}
.blog-lising #mCSB_1_container{
    padding-left: 15px;
}
.blog-lising .post-date{
   font-size: 12px;
   color: #a00807;
   position: relative;
   font-weight: 700;
   margin-bottom: 5px;
}
.blog-lising .post-date::before{
    content:'';
    position: absolute;
    left: -15px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #a00807;
    -webkit-transform: translatey(-50%);
    -ms-transform: translatey(-50%);
    -o-transform: translatey(-50%);
    transform: translatey(-50%);
}
.blog-lising h3{
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
}
.blog-lising h3 a{
    color: #121212;
}
.blog-lising h3 a:hover{
    text-decoration: none;
    color:#a70000;
}
.social-media{
    display: flex;
    justify-content:flex-end;
}
.social-media ul{
    margin-bottom: 0px;
    display: flex;
}
.social-media ul li{
    position: relative;
    min-height: 1px;
}
.social-media ul li a{
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.social-media ul li svg{
    fill:#a9a9a9;
    height: 19px;
    width:19px;
}
.social-media ul li.fb-icon a:hover svg{
    fill:#3A589B;
}
.social-media ul li.twitter-icon a:hover svg{
    fill:#1CB7EB;
}
.social-media ul li.gplus-icon a:hover svg{
    fill:#E62B32;
}
.social-media ul li.chat-icon a svg{
    -webkit-transform: scale(-1,1);
    -ms-transform: scale(-1,1);
    -o-transform: scale(-1,1);
    transform: scale(-1,1);
}
.social-media ul li.chat-icon a:hover svg{
    fill:#FCBA28;
}

 /*** 
====================================================================
    12. Latest Photo Gallery
====================================================================
 ***/ 

.photo-gallery{
  background-color: #000;  
  padding: 5px;
  line-height: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.latest-photo{
  position: relative;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 67%;
  flex: 0 0 67%;
  max-width: 67%;
  padding-right: 5px;
}
.latest-photo .thumb{
    overflow: hidden;
}
.cam-icon{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
.cam-icon svg{
    height: 50px;
    width: 50px;
    fill:#fff;
    z-index: 1;
}
.latest-photo img{
    display: block;
    width: 100%;
    height: auto;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
}
.latest-photo:hover img{
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}
.latest-photo .title{
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0px;
    font-size: 16px;
    color: #fff;
    line-height: 21px;
    min-height: 23%;
    display: flex;
    align-items: flex-end;
    padding: 0 10px 7px;
    font-weight: 600;
    background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%);
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(0,0,0,1) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(0,0,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#000000',GradientType=0 );
}
.photo-list{
  position: relative;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33%;
  flex: 0 0 33%;
  max-width: 33%;
  padding-left: 5px;
}
.photo-list-item{
    line-height: 0px;
    position: relative;
    margin-bottom: 10px;
    overflow: hidden;
}
.photo-list-item:last-child{
    margin-bottom: 0px;
}
.photo-list-item img{
    width: 100%;
    height: auto;
    display: block;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
}
.photo-list-item:hover img{
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}
.photo-list-item .cam-icon{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
.photo-list-item .cam-icon svg{
    height: 30px;
    width: 30px;
}
.photo-list-item .title{
    font-size: 14px;
    line-height: 17px;
    font-weight: 600;
    color: #fff;
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    padding: 0 10px 5px;
    min-height: 60px;
    display: flex;
    align-items: flex-end;
    background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(0,0,0,0.8) 100%);
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(0,0,0,0.8) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(0,0,0,0.8) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#000000',GradientType=0 );
}

 /*** 
====================================================================
    13. varaition list
====================================================================
 ***/ 
.variation-list{
    margin-bottom: 0px;
    padding-left: 29px;
    margin-top: 25px;
}
.variation-list li{
    margin-bottom: 25px;
    position: relative;
    counter-increment: list-counter;
}
.variation-list li:last-child{
    margin-bottom: 0px;
}
.variation-list li::before{
    content: counter(list-counter);
    position: absolute;
    top: 3%;
    left:-35px;
    width: 27px;
    height: 27px;
    font-size: 18px;
    color: #fff;
    font-weight: bold;
    border-radius: 50%;
    background-color: #d20000;
    display: flex;
    justify-content: center;
    align-items: center;
}
.variation-list li a{
    font-size: 16px;
    color: #000;
    line-height: 26px;
    font-size: 'Open Sans', sans-serif;
}
.variation-list li a:hover{
 text-decoration: none;
 color:#a70000;
}

iframe{
    width: 100%;
}
.sidebar-ad img{
    width: 100%;
}
.mCSB_scrollTools{
    opacity: 1;
}
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{
    width: 10px;
    background-color:#e8e8e8;
    border-radius: 0px;
    opacity: 1;
}
.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{
    background-color:#e8e8e8;
}
.mCSB_scrollTools .mCSB_draggerRail{
    background-color: #ededed;
}

 /*** 
====================================================================
    14. footer
====================================================================
 ***/ 
footer{
    font-size: 14px;
    color:#7d7d7d;
    line-height: 18px;
    text-align: center;
    background-color: #000;
    padding: 12px 15px;
}

 /*** 
====================================================================
    15. Responsive
====================================================================
 ***/

@media (max-width:991px){
    
    .main-left-col{
        -ms-flex: 0 0 65%;
        flex: 0 0 65%;
        max-width: 65%;  
    }
    .main-right-col{
        padding:7px;
        -ms-flex: 0 0 35%;
        flex: 0 0 35%;
        max-width: 35%;
    }
    .hd-line-style h3, .hd-line-style h4, .hd-line-style h5{
        font-size: 18px;
        line-height: 20px;
    }
    .news-lising li .thumb, .news-lising li .ns-title{
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .news-lising li .ns-title{
        padding: 7px 5px 0;
    }
    .news-lising li .ns-title h4, .news-lising li .ns-title a{
        font-size: 14px;
        line-height: 19px;
        line-height: 19px;
    }
    .news-lising li .thumb img{
        width: 100%;
        height: auto;
        display: block;
    }
    .electionSection{
        margin-bottom: 30px;
    }
    .poll-of-the-week img, .so-sorry img{
        width: 100%;
        height: auto;
        display: block;
    }
    .so-sorry img{
        margin-bottom: 30px;
    }
    .live-video-section{
        padding: 10px 0px 20px;
    }
    .live-video-heading{
       padding-bottom: 7px;
       margin-bottom: 16px;
    }
    .lv-video-inner{
        width: 100%;
        padding: 0 15px;
    }
    .live-video-section h4{
        font-size: 18px;
        line-height: 22px;
    }
    .live-video-section p{
        line-height: 20px;
    }
    .live-video-section .other-videos li{
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 16px;
    }
    .live-video-section .other-videos li:last-child{
        margin-bottom: 0px;
    }
    .live-video-section .other-videos li a{
        display: flex;
        align-items: flex-start;
    }
    .live-video-section .other-videos li .v-thumb{
        width: 112px;
    }
    .live-video-section .other-videos li .des{
        padding-left: 10px;
        width: 100%;
        -ms-flex: 0 0 calc(100% - 112px);
        flex: 0 0 calc(100% - 112px);
        max-width: calc(100% - 112px);
    }
    .live-video-section .other-videos li .des h4{
        margin-top: -4px;
        line-height: 17px;
        margin-bottom: 6px;
    }
    .live-video-section .other-videos li .lv-play-icon{
        bottom: 5px;
        right: 5px;
    }
    .video-poster .lv-play-icon{
        height: 50px;
        width: 50px;
        border-width: 2px;
        right: 10px;
        bottom: 10px;
    }
    .video-poster .lv-play-icon svg{
        height: 40px;
        width: 40px;
        left: 3px;
    }
    .latest-photo{
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0px;
    }
    .photo-list{
       -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 0px;
    }
    .photo-list-item{
        width: 50%;
        float: left;
    }
    .photo-list-item:first-child{
        padding-right: 2px
    }
    .photo-list-item:last-child{
        padding-left: 2px;
    }
    .photo-list-item .title{
        position: static;
    }
    .photo-list-item{
        margin-bottom: 0px;
    }
    .photo-list-item .cam-icon{
        display: none;
    }
    .latest-photo .title{
        position: static;
        font-size: 14px;
        line-height: 18px;
        min-height: auto;
        padding: 8px 10px 15px;
    }
    .latest-photo .cam-icon{
        top:45%;
    }
    .photo-list-item .title{
       font-size: 13px;
       line-height: 16px;
        position: static;
        min-height: auto;
        padding: 7px 10px 5px;
    }
    .live-blog-update{
        padding: 15px;
    }
    
    .blog-lising{
        padding-left: 15px;
    }
    .blog-lising > li{
        padding-bottom: 6px;
        margin-bottom: 12px;
    }
    
    blockquote{
        width: 90%;
    }
    blockquote::before{
       top: -10px;
       left: -14px;
    }
    blockquote::after{
      bottom: -35px;
      right: -15px;
    }
    .section-heading h3{
        line-height: 26px;
    }
    
    .variation-list li{
        margin-bottom: 15px;
    }
    .variation-list li a{
        line-height: 24px;
    }
    .main-story h2{
        font-size: 26px;
        line-height: 31px;
        margin-bottom: 16px;
    }
    .col-md-12{
       -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%; 
    }
}

@media (max-width:799px){
    .news-lising li{
        padding-bottom: 10px;
    }
    .news-lising li:last-child{
        padding-bottom: 10px;
    }
    .news-lising li .ns-title a:last-child{
        position: absolute;
        left: auto;
        bottom: -11px;
        margin-left: 9px;
        display: inline-block;
    } 
}

@media (max-width:767px){
    .col-6, .main-left-col, .main-right-col{
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    p{
        font-size: 15px;
    }
    .header{
        padding: 10px 0px;
        margin-bottom: 10px;
    }
    .header h1{
        font-size: 24px;
        letter-spacing: 0px;
        
    }
    .main-content{
        padding-top: 0px;
    }
    .main-story{
        padding-top: 10px;
    }
    .main-story h2{
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 13px;
    }
    .news-lising li .thumb{
        -ms-flex: 0 0 112px;
        flex: 0 0 112px;
        max-width: 112px;
    }
    .news-lising li .ns-title{
        padding: 0px;
        -ms-flex: 0 0 calc(100% - 112px);
        flex: 0 0 calc(100% - 112px);
        max-width: calc(100% - 112px);
        padding-left: 10px;
    }
    .news-lising li .ns-title h4, .news-lising li .ns-title a{
        line-height: 19px;
    }
    
    .news-lising{
        margin-bottom: 20px;
    }
    .pse-section{
        padding: 6px 10px 10px;
    }
    .pse-header{
     padding-bottom: 4px;   
    }
    .main-right-col{
        text-align: center;
        border: none;
        }
    .widget-heading{
        text-align: left;
    }
    .so-sorry{
        margin-bottom: 30px;
    }
}

@media (max-width:479px), (min-width:800px) and (max-width:900px){
    .full-width-outer{
        width: calc(100% + 40px);
        margin-left: -20px;
    }
    .full-width-outer .section-heading{
        padding: 0 15px;
    }
    .electionSection .tabHead ul li{
      padding: 10px 6px;  
    }
    .section-heading h3{
        font-size: 21px;
        line-height: 27px;
    }
    .main-right-col{
        padding: 10px;
        border: none;
    }
    .main-right-col .sidebar-ad{
        display: none;
    } 
    .news-lising li{
        padding-bottom: 10px;
    }
    .news-lising li:last-child{
        padding-bottom: 10px;
    }
    .news-lising li .ns-title a:last-child{
        position: absolute;
        left: auto;
        bottom: -11px;
        margin-left: 9px;
        display: inline-block;
    } 
}

.live-video-section .other-videos li a { color:white; }	

@media screen and (min-width:768px) and (max-width:800px){
	.news-lising li .ns-title a:last-child {position: relative; left: auto; bottom: auto; margin-left: 0; display: inline-block;}           
}
 
@media screen and (max-width:767px){
	.news-lising li .ns-title a:last-child { bottom:auto}             
	.news-lising ul { margin-bottom:0px;}
	.news-lising li:last-child { padding-bottom:0px; margin-bottom:0px;}
	.electionSection iframe { height:250px;}
	.press-content { text-align:left}
	.press-date-info { text-align:left; font-weight:bold}
	.news-lising li .ns-title h4, .news-lising li .ns-title a { font-size:12px;}
	.news-lising li .ns-title a:last-child { position:relative}
	.pse-title h4 { font-size:14px;}
	.section-heading.hd-line-style { display:none}
	.news-lising li:last-child { border-bottom: 1px solid #e5e5e5;}
	.video-poster iframe{ height:230px;}
}
@media screen and (max-width:480px){
	.photo-gallery iframe {height:335px;}
}

