
#html_video{
    width: 280px;
}


.play_list ul li{
    float: left;
    list-style: none;
}

.play_list img{
    width: 20px;
    margin-left: 10px;
}




.logincss {
  padding: 0px 0px 0px 50px;
}


.audiop {
  padding: 15px;

}

.playcont {
            max-width: 35rem;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 5px;
        }

.col-xs-pog {
  width: 140px;
}

.clr{
	clear: both;
}

@import url('reset.css');


@font-face {
    font-family: 'WebSymbolsRegular';
    src: url('../fonts/websymbols-regular-webfont.eot');
    src: url('../fonts/websymbols-regular-webfont.eot?#iefix') format('embedded-opentype'),
        url('../fonts/websymbols-regular-webfont.woff') format('woff'),
        url('../fonts/websymbols-regular-webfont.ttf') format('truetype'),
        url('../fonts/websymbols-regular-webfont.svg#WebSymbolsRegular') format('svg');
    font-weight: normal;
    font-style: normal;
}
.ca-menu{
    padding:0;
    margin:20px auto;
    width: 100%;
    float: center;
}
.ca-menu li{
    width: 180px;
    height: 200px;
    overflow: hidden;
    position: relative;
    margin:10px 10px 0 4px;
    float:left;
    background: #000999; /* Old browsers */
    background: -moz-linear-gradient(left, #ffffff 0%, #f6f6f6 47%, #ededed 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%,#ffffff), color-stop(47%,#f6f6f6), color-stop(100%,#ededed)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(left, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(left, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(left, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* IE10+ */
    background: linear-gradient(left, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed',GradientType=1 ); /* IE6-9 */
    -webkit-box-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    -moz-box-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    box-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    margin-right: 4px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.ca-menu li:last-child{
    margin-right: 0px;
}
.ca-menu li a{
    text-align: left;
    width: 100%;
    height: 100%;
    display: block;
    color: #333;
    position: relative;
}
.ca-icon{
    font-family: 'WebSymbolsRegular', cursive;
    font-size: 50px;
    color: #ddd;
    text-shadow: 1px 0px 1px rgba(255,255,255,0.8);
    line-height: 50px;
    position: absolute;
    width: 100%;
    height: 20%;
    left: 0px;
    top: 0px;
    text-align: center;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}
.ca-content{
    position: absolute;
    left: 0px;
    width: 100%;
    height: 30%;
    top: 30%;
}
.ca-main{
    font-size: 25px;
    opacity: 0.8;
    text-align: center;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
    padding: 0 10px 10px 0;
}
.ca-sub{
    text-align:center;
    font-size: 14px;
    color: #000099;
    text-shadow: 1px 1px 1px #fff;
    line-height: 20px;
    opacity: 0.8;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}
.ca-menu li:hover{
    background:#fff;

}
.ca-menu li:hover .ca-icon{
    color: #000099;
    font-size: 90px;
    opacity: 0.1;
    -webkit-animation: moveFromLeft 400ms ease;
    -moz-animation: moveFromLeft 400ms ease;
    -ms-animation: moveFromLeft 400ms ease;

}
.ca-menu li:hover .ca-main{
    color: #000099;
    -webkit-animation: moveFromRight 300ms ease;
    -moz-animation: moveFromRight 300ms ease;
    -ms-animation: moveFromRight 300ms ease;
}
.ca-menu li:hover .ca-sub{
    color: #000;
    -webkit-animation: moveFromBottom 500ms ease;
    -moz-animation: moveFromBottom 500ms ease;
    -ms-animation: moveFromBottom 500ms ease;
}
@-webkit-keyframes moveFromLeft{
    from {
        -webkit-transform: translateX(-100%);
    }
    to {
        -webkit-transform: translateX(0%);
    }
}
@-moz-keyframes moveFromLeft{
    from {
        -moz-transform: translateX(-100%);
    }
    to {
        -moz-transform: translateX(0%);
    }
}
@-ms-keyframes moveFromLeft{
    from {
        -ms-transform: translateX(-100%);
    }
    to {
        -ms-transform: translateX(0%);
    }
}

@-webkit-keyframes moveFromRight {
    from {
        -webkit-transform: translateX(100%);
    }
    to {
        -webkit-transform: translateX(0%);
    }
}
@-moz-keyframes moveFromRight {
    from {
        -moz-transform: translateX(100%);
    }
    to {
        -moz-transform: translateX(0%);
    }
}
@-ms-keyframes moveFromRight {
    from {
        -ms-transform: translateX(100%);
    }
    to {
        -ms-transform: translateX(0%);
    }
}

@-webkit-keyframes moveFromBottom {
    from {
        -webkit-transform: translateY(100%);
    }
    to {
        -webkit-transform: translateY(0%);
    }
}
@-moz-keyframes moveFromBottom {
    from {
        -moz-transform: translateY(100%);
    }
    to {
        -moz-transform: translateY(0%);
    }
}
@-ms-keyframes moveFromBottom {
    from {
        -ms-transform: translateY(100%);
    }
    to {
        -ms-transform: translateY(0%);
    }
}


/*izlew*/



/*qosiqlar kalonasi*/

.col-md-qos1{
    
    width: 62.33333333333333%;
    position:relative;
    min-height:1px;
    padding-right:15px;
    padding-left:15px;
    float:left;
}




.col-md-qos2{
    
    width: 32.33333333333333%;
    position:relative;
    min-height:1px;
    padding-right:15px;
    padding-left:15px;
    float:right;
}

.baner100-15 img{
   	margin:10px;
	height:auto;
	width: 100%;
}




/*tabs*/
.tabs-nav ul {
  margin: 0;
  padding: 0; }
.tabs-nav li {
  width: 100px;
  padding: 1%;
  display: inline-block;
  float: center;
  /* For normal, healthy browsers */
  /*white-space: nowrap;*/
  }

.swit-cher {
    text-align: center;
    margin: 5px 0 5px;
}
.swit-cher ul {
    padding-left: 0;
}
.swit-cher ul li {
    list-style-type: none;
    display: inline-block;
    margin: 0 5px;
}
.swit-cher ul li {
    color: #ccc;
  cursor:  pointer;
}
.swit-cher ul li:hover {
    color: #000099;
}
.swit-cher ul li i {
    font-size: 32px;
    -webkit-font-smoothing: antialiased;
}

.swit-cher ul li.grid-active,
.swit-cher ul li.list-active {
  color: #000099;
}



.tab-container {
  width: 100%;
  padding: 1%;
  background-color: #fff; }
  .tagline {
  position: relative;
  margin-bottom: 0; }
  .tagline:after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    height: 5px;
    width: 105px;
    background-color: #000099; }
  @media (max-width: 700px) {
    .tagline {
      margin-bottom: 8%; } }
  @media (max-width: 500px) {
    .tagline {
      margin-bottom: 12%; } }


.tab-msenu li:last-child{
    margin-right: 0px;
}
.tabs-mesnu li a{
    text-align: left;
    width: 100%;
    height: 100%;
    display: block;
    color: #333;
    position: relative;
}
.tab-icon{
    font-family: 'WebSymbolsRegular', cursive;
    font-size: 30px;
    color: #ddd;
    text-shadow: 1px 0px 1px rgba(255,255,255,0.8);
    line-height: 50px;
    line-height: 50px;
    position: absolute;
    width: 100%;
    height: 20%;
    left: 0px;
    top: 0px;
    text-align: center;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}
.tab-content img{
    width: 19%;
    float: center;
    margin: 1px;

}

.tab-content video{
    width: 30%;
    float: center;
    margin: 5px;

}

/*data*/


.araliq i{
    overflow: hidden;
    padding: 0px 0px 0px 10px;

       
}



.col-vid-4{
    
}

.bfWrap i.fa {
    color: #ccc !important;
}

.bfWrap i.fa:hover {
    color:#00329B !important;
}

/*audioplayer*/
.info1 .aplayer, .glall .aplayer {
    position: relative;
    width: 100%; height: 100%px;
    background: #FBFBFB;
    border: 1px solid #f2f2f2;
    padding-bottom: 10px;
}

.glall .aplayer {
    width: 100%; 
}

.videos {
    border: 1px solid #f2f2f2;
}

.info1 .aplayer h4, .glall .aplayer h4 {
    position: absolute;top: 0; left: 15px; color:  #000; font-size: 12px; z-index: 999; font-weight: normal;
    margin: 10px 100px 0 10px;
}

.info2 .aplayer h4.vtitle {
    position: absolute;bottom: 0; color:  #000; font-size: 12px; z-index: 999; font-weight: normal; line-height: 36px;
    background: #FBFBFB; padding: 0 100px 0 10px; width: 651px; margin: 0; height: 40px;

}

.info2 .aplayer {

    margin-bottom: 30px !important; display: block; height: 340px;
    position: relative;
} 

.audios .mejs-container {
    background: #FBFBFB !important;
}

.mejs-container .mejs-controls {background: #FBFBFB !important;}

.mejs-controls .mejs-time-rail .mejs-time-total {
    background: #227fbd !important; height: 5px !important; top: 8px !important;

 }

 .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
    height: 5px !important; background: #227fbd !important; top: 13px !important;
 }

 .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
    height: 5px !important; background: #145a88 !important; top: 13px !important;
 }

 .mejs-container .mejs-controls .mejs-time {
    color: #000 !important;
 }


.mejs-controls .mejs-time-rail .mejs-time-loaded {
    height: 5px !important;
}

.mejs-controls .mejs-time-rail span, .mejs-controls .mejs-time-rail a {
    height: 5px !important; background: #145a88 !important;
}

.logo .audiop .mejs-container, .logo .audiop .mejs-container .mejs-controls {
    background: #FFA300;
}

.logo .audiop {
    position: relative;
}

.logo .audiop h3 {
    position: absolute; top: 0; right: -40px; color: #fff; z-index: 999; font-size: 16px; font-weight: 400; padding: 8px 36px 8px 0;
    font-family: "Open Sans", Arial, sans-serif; background: url('../images/headphone.png') no-repeat right top;
}



.logo .mejs-container .mejs-controls{
    background: #FFA300 !important;
}

.like-button {
    background: url('../images/like.png') no-repeat; width: 80px; height: 30px; position: absolute; 
    display: block; z-index: 9999; color: #fff; padding-left: 25px; cursor: pointer;
}

.mejs-time-rail .mejs-time-total, .mejs-time-rail  .mejs-time-slider {
    width: 200px;
}

.download-button {
    display: block; width: 25px; height: 25px; position: absolute;  z-index: 9999; color: #fff;
}

.audios .like-button {
    right: 5px; top: 28px; color: #227fbd;
}

.audios .download-button {
    top: 32px; right: 90px; color: #227fbd;
}

.videos .download-button {
    bottom: 0; right: 90px;color: #227fbd;
}

.videos .like-button {
    bottom: 0; right: 10px;color: #227fbd;
}

.glall .like-button {
    top: 5px;
}

.glall .download-button {
    top: 10px;
}

.glall .audios .like-button {
    top: 25px; right: 10px;
}

.glall .audios .download-button {
    top: 30px; right: 100px;
}


.sots li {
    float: left;
    margin: 5px;
}

