/* Player */
:root {
    --plyr-color-main: #108DE5;
    --plyr-audio-controls-background: transparent;
}

.news-detail-player {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 24px;
    background-color: #f4f4f4;
}

.news-detail-player > .player {
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    padding-right: 24px;
}

.news-detail-player > .source {
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
}

.news-detail-player > .tools {
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
}

.news-switch {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.news-switch .news-switch-btn {
    margin-left: 5px;
    position: relative;
    width: 44px;
    height: 22px;
}

.news-switch .news-switch-btn .news-switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: .4s;
    transition: .4s;
}

.news-switch .news-switch-btn .news-switch-slider:before {
    position: absolute;
    content: "";
    background-color: #d6dadf;
    -webkit-transition: .4s;
    transition: .4s;
    height: 14px;
    width: 36px;
    left: 4px;
    bottom: 4px;
    border-radius: 7px;
}

.news-switch .news-switch-btn .news-switch-slider:after {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 0;
    bottom: 0;
    background-color: #4a5464;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}

.news-switch .news-switch-btn.checked .news-switch-slider:after {
    background-color: #108DE5;
    -webkit-transform: translateX(22px);
    -ms-transform: translateX(22px);
    transform: translateX(22px);
}
.newscenter{
    position: relative;
    margin-bottom: 15px;
}
.newscenter .img-box{
    position: relative;
    max-height: 320px;
    overflow: hidden;
}

.newscenter h3{
    padding: 10px 0 6px;
    font-size: 16px;
}
.othernews {
    padding: 4px 8px 5px 8px !important;
    margin: 0px;
    max-height: 450px;
    background: #f5f8fb;
    list-style: none;
    clear: both;
}

.othernews li {
    padding: 6px 5px 6px 15px;
    position: relative;
    background: url(../images/bullet.png) no-repeat left;
    border-bottom: 1px dotted #e2e2e3;
}

.othernews li:last-child{
    border-bottom: none;
}

.othernews li span{
    font-style: italic;
    font-size: 13px;
}

.viewcat-news h2,
.viewcat-news h3{
    font-size: 18px;
    font-weight: 500;
}

.viewcat-news img{
    margin-right: 10px;
}

.other-news .h3{
    font-size: 16px;
    font-weight: 500;
    margin: 10px 0;
}

.other-news li{
    font-size: 16px;
    margin-bottom: 2px !important;
}

.viewcat-main-right{
    position: relative;
    margin-bottom: 20px;
}

.viewcat-main-right .box-large img{
    width: 260px;
    margin-right: 10px
}

.viewcat-main-right .list-unstyled{
    font-size: 14px;
    margin-top: 4px;
}

.viewcat-main-right .related li{
    position: relative;
    padding-left: 10px;
}

.viewcat-main-right .related li:before{
    content: '';
    width: 3px;
    height: 3px;
    background: #999;
    position: absolute;
    left: 0;
    top: 10px;
}

.viewcat-grid .item{
    position: relative;
    border-radius: 4px;
    border: 1px solid #eee;
    margin-bottom: 15px;
    background-color: #eee;
    overflow: hidden;
}

.viewcat-grid .item .thumb{
    position: relative;
    height: auto;
    overflow: hidden;
    padding-top: 80%;
}

.viewcat-grid .item .thumb img{
    right: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    top: 0;
    margin: 0;
    position: absolute;
    object-position: 50% 50%;
    object-fit: cover;
}

.viewcat-grid .item h2,
.viewcat-grid .item h3{
    font-size: 14px;
    font-weight: 500;
    padding: 6px 10px;
    height: 54px;
    overflow: hidden;
}

@media (max-width: 767.98px) {
    .viewcat-news img{
        width: 100%;
        margin: 0 0 10px 0;
    }
    .viewcat-main-right .box-large img{
        width: 100%;
        margin-bottom: 15px;
        margin-right: 0;
    }
	.news-detail-player {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .news-detail-player > .player {
        padding-right: 0;
        width: 100%;
        -ms-flex-order: 1;
        order: 2;
    }

    .news-detail-player > .source {
        padding-right: 10;
        -ms-flex-order: 0;
        order: 0;
        margin-top: 12px;
    }

    .news-detail-player > .tools {
        padding-right: 0;
        -ms-flex-order: 0;
        order: 1;
        margin-top: 12px;
    }
}