/* audio-css */
#wrapper { 
    margin: 10px auto; 
    max-width: 600px; }
.audioplayer {
    display: flex;
    flex-direction: row;
    box-sizing: border-box;
    margin: 1em 0;
    padding: 0 24px;
    width: 100%;
    height: 50px;
    align-items: center;
    border: 1px solid #DDE2E6;
    border-radius: 4px;
    background: #333333;
}
.podcast-wrapper audio{
    width: -moz-available;          
    width: -webkit-fill-available; 
    width: fill-available;
    display: inline-block;
    vertical-align: baseline;
}
.audioplayer-playpause {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    transition: all .2s ease-in-out;
}

.audioplayer:not(.audioplayer-playing) .audioplayer-playpause {
    background: rgba(91, 130, 255, 0);
    border: 1px solid #fff;
}

.audioplayer:not(.audioplayer-playing) .audioplayer-playpause:hover {
    background: rgba(91, 130, 255, 0.1);
}

.audioplayer-playing .audioplayer-playpause {
    background: rgba(253, 79, 26, 0);
    border: 1px solid #fff;
}

.audioplayer-playing .audioplayer-playpause:hover {
    background: rgba(255, 255, 255);
}

.audioplayer:not(.audioplayer-playing) .audioplayer-playpause a {
    content: '';
    justify-content: center;
    width: 0;
    height: 0;
    margin-left: 2px;
    border-top: 7px solid transparent;
    border-right: none;
    border-bottom: 7px solid transparent;
    border-left: 12px solid #fff;
}

.audioplayer-playing .audioplayer-playpause a {
    content: '';
    display: flex;
    justify-content: space-between;
    width: 16px;
    height: 18px;
    background:url("../../../../images/pse1.png");
}

.audioplayer-playing .audioplayer-playpause a::before, .audioplayer-playing .audioplayer-playpause a::after {
    content: '' !important;
    width: 4px !important;
    height: 14px !important;
    background: none;
}

.audioplayer-time {
    display: flex;
    width: 40px;
    justify-content:center;
    font-size: 16px;
    color: #fff;
}

.audioplayer-time-current {
    margin-left: 24px;
}

.audioplayer-time-duration {
    margin-right: 24px;
}

.audioplayer-bar {
    position: relative;
    display: flex;
    margin: 0 12px;
    height: 12px;
    flex-basis: 0;
    flex-grow: 1;
    cursor: pointer;
}

.audioplayer-bar::before {
    content: '';
    position: absolute;
    top: 5px;
    width: 100%;
    height: 2px;
    background-color: #DDE2E6;
}

.audioplayer-bar > div {
    position: absolute;
    left: 0;
    top: 5px;
}
.audioplayer-bar-loaded {
    z-index: 1;
    height: 2px;
    background: #BEC8D2;
}

.audioplayer-bar-played {
    flex-direction: row-reverse;
    z-index: 2;
    height: 2px;
    background: -webkit-linear-gradient(left,#ff3c5a,#ff622f);
}

.audioplayer-bar-played::after {
    display: flex;
    position: absolute;
    content: '';
    box-sizing: border-box;
    top: -5px;
    right: -1px;
    margin-right: -5px;
    width: 12px;
    height: 12px;
    background-color: #fff;
    border-radius: 6px;
}

.audioplayer:not(.audioplayer-playing) .audioplayer-bar-played::after {
    border: 2px solid #BEC8D2;
}

.audioplayer-playing .audioplayer-bar-played::after {
    border: 2px solid #fff;

}

.audioplayer-volume {
    display: flex;
    align-items: center;
}

.audioplayer-volume-button {
    display: flex;
    align-items: center;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.audioplayer-volume-button a {
    display: flex;
    width: 6px;
    height: 8px;
    background-color: #fff;
    position: relative;
}

.audioplayer-volume-button a:before, .audioplayer-volume-button a:after {
    content: '';
    position: absolute;
}

.audioplayer-volume-button a:before {
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-right: 9px solid #fff;
    border-bottom: 8px solid transparent;
    border-left: none;
    top: -4px;
}

.audioplayer:not(.audioplayer-mute) .audioplayer-volume-button a:after {
    left: 10px;
    top: 0px;
    width: 8px;
    height: 8px;
    border: 6px double #fff;
    border-width: 6px 6px 0 0;
    border-radius: 0 12px 0 0;
    transform: rotate(45deg);
}

.audioplayer-mute .audioplayer-volume-button a {
    background-color: #FD4F1A;
}

.audioplayer-mute .audioplayer-volume-button a:before {
    border-right: 9px solid #FD4F1A;
}

.audioplayer-volume-adjust {
    display: flex;
    align-items: center;
    margin-left: 8px;
}

.audioplayer-volume-adjust > div {
    position: relative;
    display: flex;
    width: 60px;
    height: 2px;
    cursor: pointer;
    background-color: #BEC8D2;
}

.audioplayer-volume-adjust div div {
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    background-color: #ff5927;
}

/* responsive | you can change the max-width value to match your theme */

@media screen and (max-width: 679px) {
    .audioplayer-volume-adjust {
        display: none;
    }
}

/* audio-css */

.cc-bottom,  .fb_iframe_widget{display:none;}
.mob-view{
    position:relative;
    display:block;
    width:95px;
    margin:0px auto;
}
.topbanner{
    margin:0px auto;
    text-align: center;
    position: relative;
}
 .podcast p{font-family: 'Open Sans', sans-serif;
    margin: 30px 0px;
    padding: 0px;
    color: #000;
    text-align: left;
    font-size: 17px;
    line-height: 29px;
    }
    p.podcast-title{font-family: 'Open Sans', sans-serif;
        margin: 2px 0px;
        padding: 0px 20px;
        color: #000;
        text-align: left;
        font-size: 17px;
        line-height: 29px;
        } 
    .white-bg p{font-family: 'Open Sans', sans-serif;
    margin: 5px 0px;
    padding: 5px 30px;
    color: #000;
    text-align: left;
    font-size: 17px;
    line-height: 29px;
    }
    span.pink1 {
    font-family: 'Montserrat', sans-serif;
    margin: 0px;
    padding: 0px;
    color: #fd2854;
    text-align: center;
    line-height: 29px;
}
p.pink5{
    font-family: 'Montserrat', sans-serif;
    margin: 0px;
    padding: 7px 0px 0px;
    color: #fd2854;
    text-align: center;
    line-height: 29px;
    font-size: 20px;
    letter-spacing: 0px;
}
    .white-bg h4{font-family: 'Open Sans', sans-serif;
    margin: 0px 0px 5px;
    text-transform: uppercase;
    padding: 0px;
    color: #fd2854;
    text-align: center;
    font-size: 23px;
    line-height: 24px;
    font-weight:bold;
    }
.topbanner h1{font-family: 'Poppins', sans-serif;
    margin: 5px 0px 10px;
    text-transform: uppercase;
    padding: 0px;
    color: #fd2854;
    text-align: center;
    font-size: 71px;
    line-height: 45px;
    font-weight:800;
    }
    .topbanner h1:after{content: " ";background:url('../../../../images/pod3.png') no-repeat;width: 95px;
        height: 95px;
        position: absolute;
        top: 15px;
        margin-left: 3px;
    }
   .logo-podcast{position: absolute;
    top: 62px;
    left: 150px;}
    img.logo-podcast{
        vertical-align: top;
        margin-top: 0px;
        margin-left: 10px;
        max-width: 30px;
        max-height: 41px;
    }
    .podcast h2{font-family: 'Open Sans', sans-serif;
    margin: 10px 0px 15px;
    padding: 0px;
    color: #101526;
    text-align: center;
    font-size: 35px;
    line-height: 39px;
    }
    h2.title{font-family: 'Open Sans', sans-serif;
    margin: 15px 0px 2px;
    padding: 0px 15px;
    color: #101526;
    text-align: left;
    font-size: 35px;
    line-height: 39px;
    }
    .white-bg{
        background:#fff;
        width:80%;
        margin:20px auto;
        border-radius:5px;
        padding:30px 0px;
     }
    .left{text-align:left !important;}
    .podcast-wrapper .box span.date{
        font-family: 'Open Sans', sans-serif;
        padding: 0px 1px;
        color: #ce1050;
        font-size: 13px;
        }
    span.date{
    font-family: 'Open Sans', sans-serif;
    padding: 0px 18px;
    color: #ce1050;
    font-size: 13px;
    }
    span.back{
    font-family: 'Open Sans', sans-serif;
    padding: 0px 15px;
    color: #535353;
    font-size: 13px;
    }
    .podcast h3{font-family: 'Open Sans', sans-serif;
    margin: 0px;
    padding: 7px 0px;
    color: #101526;
    text-align: left;
    font-size: 20px;
    line-height: 26px;
    }
    span.pink{font-family: 'Montserrat', sans-serif;
    margin: 0px;
    padding: 0px;
    color: #fd2854;
    text-align: center;
    font-size: 30px;
    line-height: 29px;
    }
   span.subtitle{font-family: 'Roboto Slab', serif;
    text-transform: uppercase;
    padding: 0px;
    color: #000;
    font-size: 29px;
}
.ashbg{background:#f8f9fb
} 
.podcast-wrapper{
    margin:0px;
} 
.podcast-wrapper .box{
    width:350px;
    float:left;
    border:1px solid #dadbdd;
    position: relative;
    padding:0px 20px;
    margin:0px 15px;
} 
.orange-border{
    width: 91%;
    height: 6px;
    background: #ff5927;
    left: 5%;
    position: absolute;
}
.pink-border{
    width: 100%;
    height: 1px;
    background: #e13b73;
    top:2%;
    }  
.podcast-wrapper .box img{
margin:0px auto;
display:block;
text-align:center;
} 
.box p{font-family: 'Open Sans', sans-serif;
    margin: 0px;
    padding: 15px 0px;
    color: #000;
    text-align: left;
    font-size: 15px;
    line-height: 26px;}
.height10{
    height:10px;
}
.height20{
    height:20px;
}
.height30{
    height:30px;
}
.height40{
    height:40px;
}
.height50{
    height:50px;
}
.height60{
    height:60px;
}
.clear{
    clear:both;
}
.orange-btn{
    background: #ff5827;
    border: none;
    color: white;
    padding: 5px 40px 5px 60px;
    text-align: center;
    text-decoration: none important;
    display: block;
    font-size: 16px;
    margin: 20px auto;
    cursor: pointer;
    width: 200px;
    position: relative;
    transition: all 350ms cubic-bezier(0.395, 0.425, 0.015, 1);
}
a{
    text-decoration: none !important; 
}
a:hover{
    text-decoration: none !important; 
}
.orange-btn:hover{
    background: #e13b73;
    border: none;
    color: white;
    padding: 5px 40px 5px 60px;
    text-align: center;
    text-decoration: none !important;
    display: block;
    font-size: 16px;
    margin: 20px auto;
    cursor: pointer;
    width: 200px;
    position: relative;
    transition: all 350ms cubic-bezier(0.395, 0.425, 0.015, 1);
}
.orange-btn img{
    position: absolute;
    left: 20px;
    width: 27px;
    height: 27px;
    top: 4px;
}
.center{
    text-align:center;
}

.download-wrap{margin:19px 0px 0px 0px;width:70px;vertical-align: middle;}
span#count{font-size:17px;font-weight:bold;}
span.download-txt{padding-left:1px;font-family:arial;font-size:15px}
.download-wrap .fa-download{font-size: 20px;}
.fa-download:before {
    content: "\f019";
    font-size: 35px;
}
.podcast-subscribe{margin:0px auto;width:607px;padding-left: 15px;padding-right: 15px;}
.podcast-subscribe a{margin: 10px 4px; display: inline-block;float: none;}
.podcast-subscribe a {
    background: url(../../../../images/podcast-btn.png) no-repeat;
    width: 176px;
    height: 51px;
    display: inline-block;
    margin: 10px 4px;
}
.podcast-subscribe a.itune{background-position: -5px 0;}
.podcast-subscribe a.gp{background-position: -215px 0;}
.podcast-subscribe a.soc{background-position: -431px 0;}
.podcast-subscribe a.tunein{background-position: -5px -64px;}
.podcast-subscribe a.spo{background-position: -215px -64px;}
.podcast-subscribe a.pod{background-position: -431px -64px;}
.white-bg .center img{margin:0px auto;}


.dkrp-section {
    float: left;
    width: 100%;
    font-size: 18px;
    font-family: "Open Sans",Arial,sans-serif;
    text-align: left;
 }
 .rel-menu {
    position: relative;
 }
 .line{width:50%;margin:0px auto;height:1px;background:#ababab;}
 .dkrp-navs.rel-menu { margin-bottom: 0;text-align: center;}
 .dkrp-navs.rel-menu li a{color:#3d1f65}
 .dkrp-navs li {
    display: inline-block;
    text-align: center;
    width: auto;
    padding: 1px 30px 1px 0px;
 }
 .dkrp-navs li a {
    color: #545454;
    display: block;
    font-size: 1.1003em;
    font-weight: 600;
    margin: 0 auto;
    padding: 5px 0;
    text-transform: uppercase;
    width: 100%;
 }
 
 .dkrp-navs .active a {
     color: #f25b22 !important;
 }
 .space50{height:50px;}


 .article-add{margin:0px;text-align:center;}
 .article-add h6{margin:0px; line-height: 27px;font-weight:bold;text-align: center;font-size: 21px;color:#fd2854;padding: 8px 20px 1px;}
 .article-add p{margin: 0 0 5px; line-height: 20px;text-align: center;font-size: 17px;}
 a.article-btn { display: inline-block; margin: 1px 1px 30px;padding: 0px 12px;color: #ffffff !important;font-size: 15px;border: 1px solid #ff5827; background: #ff5827;}
 a.article-btn:hover { display: inline-block; margin: 1px 1px 30px;padding: 0px 12px;color: #ffffff !important;font-size: 15px;border: 1px solid #ff5827; background: #e13b73;}
 .height30{height:30px;}
 .height20{height:20px;}
 .height10{height:10px;}
 .height5{height:5px;}
 @media screen and (min-width:0px) and (max-width:600px){
     .article-add p{text-align:center;}
     .article-add{text-align:center;}
 }



 @media screen and (max-width: 640px) and (min-width: 300px){
    .dkrp-navs li a {
     color: #fff;
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin: 0 auto;
    padding: 2px 0;
    width: 100%;
    }
    .dkrp-navs li {
    width: auto;
    padding: 3px 15px;
    text-align: center;
    }
    .space50{height:20px;}
}
@media screen and (max-width: 480px) and (min-width: 0px){
    .dkrp-navs li {
        width: auto;
        padding: 3px 15px;
        text-align: center;
    }
    .space50{height:20px;}
}




@media screen and (min-width:0px) and (max-width:449px){
    .podcast-subscribe{width: 300px;
        float: none;
        display: block;
        text-align: center;margin:10px auto;}
        .podcast-subscribe a{margin:8px;}
}
@media screen and (min-width:450px) and (max-width:650px){
    .podcast-subscribe{width: 400px;}
}

@media screen and (min-width:601px) and (max-width:890px){
    .podcast-wrapper .box{
        margin: 0px 5px 20px;
    }
}
@media screen and (min-width:980px) and (max-width:1200px){
    .podcast-wrapper .box{
        width: 300px;
        margin: 0px 6px 40px;
    }
}
@media screen and (min-width:890px) and (max-width:979px){
    .podcast-wrapper .box{
        width: 273px;
        margin: 0px 6px 0px;
    }
}
@media screen and (min-width:601px) and (max-width:752px){
    .podcast-wrapper .box{
        width: 271px;
        margin: 0px 6px 40px;
    }
}
@media screen and (min-width:0px) and (max-width:600px){
    .podcast-wrapper .box{
        width: 290px;
        margin: 15px auto;
        float:none;
    }
    .box p{
        padding: 15px 0px;
    }
    .podcast h2{
        margin: 3px 0px 15px;
        font-size:20px;
        line-height: 33px;
    }
    h2.title{
        margin: 5px 0px 8px;
        font-size: 30px;
        padding:0px 15px;
    }
    .white-bg p{
        font-size: 15px;
        padding: 5px 0px;
    }
    .audioplayer-playpause{
        width: 30px;
        height: 30px;
    }
    .audioplayer-time-current{
        margin-left: 7px;
    }
    .download-wrap{margin:1px auto;width:80px;}
}
@media screen and (min-width:0px) and (max-width:820px){
    .white-bg{
       width:100%;
       padding: 30px 15px;
       margin: 0px auto;
    }
}
@media screen and (min-width:0px) and (max-width:767px){
    .topbanner h1{
        font-size: 51px;
        line-height: 41px;
    }
    span.subtitle{
        font-size: 21px;
    }
    .topbanner h1:after{display:none;}
    .white-bg .center img{margin:0px auto;}
}
@media screen and (min-width:768px) and (max-width:18000px){
    .mob-view{
        display: none;
    }
}

/*--podcast page box alignment even*/
#pod_search_result {
    display: flex;
    flex-wrap: wrap;
}
.podcast-wrapper {
    flex-basis: calc(33.33% - 40px);
    margin-bottom: 20px;
    display: flex;
    align-items: stretch;
}
.box {
    flex: 1;
    display: flex;
    flex-direction: column;
}
@media screen and (min-width:0px) and (max-width:600px){
    #pod_search_result {
        display: block;
    }
}