@import url(https://fonts.googleapis.com/css?family=Roboto+Condensed:400,300,700,300italic);
@import url(https://fonts.googleapis.com/css?family=Lato:300);

/* CSS clear based on http://meyerweb.com/eric/tools/css/reset/ */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address,
big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl,
dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside,
canvas, details, embed,  figure, figcaption, footer, header, hgroup,  menu, nav, output, ruby, section, summary, time,
mark, audio, video {
	padding: 0; margin: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline;
}


/* HTML5 display-role reset for older browsers and specific declarations */

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: ''; content: none;
}

table {
	border-spacing: 0; border-collapse: collapse;
}


/* Main definitions */

html {
	box-sizing: border-box;
}

*, *:before, *:after {
	box-sizing: inherit;
}

body {
	padding: 0; margin: 0;
	position: relative;
	background: #eee;
        color: #5e6065;
}

body, td, p  {
	color: #303030;
	font-family: 'Roboto Condensed', Helvetica, sans-serif; font-size: 13px; line-height: 1.6em;
 }

b, strong {
	font-weight: bold;
}

i, em {
	font-style: italic;
}

a{
	color: #d06060;
	text-decoration: none;
        transition: all 0.6s ease;
}

a:hover, a:active {
	text-decoration: none;
}

p {
	margin-bottom: 1em;
	text-align: justify;
}

hr {
	height: 1px; display: block; clear: both;
	padding: 0; margin: 15px 0;
	background: #333; border: none;
}

h1 {
	margin: 15px 0;
	font-family: 'Roboto Condensed', Helvetica, sans-serif; font-size: 35px; line-height: 1.6em; font-weight: bold; text-align: left;
}

h2 {
	margin: 15px 0;
	font-family: 'Roboto Condensed', Helvetica, sans-serif; font-size: 30px; line-height: 1.6em; font-weight: bold; text-align: left;
}

h3 {
	margin: 15px 0;
	font-family: 'Roboto Condensed', Helvetica, sans-serif; font-size: 18px; line-height: 1.6em; font-weight: bold; text-align: left;
}

input{
    outline: none;
}

.clear {
	clear: both;
}

.cf:before,
.cf:after {
	content: " ";
	display: table;
}

.cf:after {
	clear: both;
}

.table-outer {
    width: 100%;
    height: 100%;
    display: table;
}

.table-cell {
    width: 100%;
    height: 100%;
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

.search-bar{
    background: #fff;
    padding: 2px 0;
}

.search-bar form{
    display: block;
    height: 63px;
    position: relative;
}

.search-bar form input[type=text]{
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border: 0;
    background: transparent;
    font-size: 20px;
    color: #6d6d6d;
    font-style: italic;
    font-weight: 300;
    width: 100%;
    max-width: 100%;
    height: 100%;
    padding-left: 156px;
    padding-right: 15px;
    font-family: 'Roboto Condensed', sans-serif;
}

.search-bar form input::-webkit-input-placeholder,
.search-bar form input:-moz-placeholder,
.search-bar form input::-moz-placeholder,
.search-bar form input:-ms-input-placeholder{
   color: #6d6d6d !important;
   opacity: 1 !important;
}

.search-bar form input[type=submit]{
    position: relative;
    float: left;
    width: 58px;
    height: 53px;
    margin-top: 5px;
    cursor: pointer;
    opacity: 1;
    border: 0;
    border-right: 1px solid #cdcdcd;
     background: url(../images/ico-search.png) no-repeat center center;
    transition: all 0.5s ease; 
}

.search-bar form input[type=submit]:hover{
    opacity: 0.8;
}

.search-bar form .filter-wrap{
    position: relative;
    float: left;
    height: 100%;
    width: 91px;
}

.search-bar form .filter-wrap:after{
    height: 53px;
    top: 5px;
    right: 0;
    background: #cdcdcd;
    width: 1px;
    content: '';
    display: inline-block;
    position: absolute;
    z-index: 3;
}

.search-bar form ul.search-filter{
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    right: 0;
    z-index: 1;
    height: 63px;
    overflow: visible;
}

.search-bar form ul.search-filter li{
    opacity: 1;
    font-size: 10px;
    color: #949598;
    font-weight: 300;
    height: 60px;
    text-align: center;
    cursor: pointer;
    transition: all 0.5s ease;
}

.search-bar form ul.search-filter li.current:after{
    content: '';
    display: inline-block;
    background: url(../images/ico-dropdown.png) no-repeat 0 0;
    width: 15px;
    height: 15px;
    position: absolute;
    z-index: 2;
    right: 10px;
    top: 27px;
}

.search-bar form ul.search-filter.hidden li{
    opacity: 0;   
}
.search-bar form ul.search-filter.hidden{
    overflow: hidden;
}
.search-bar form ul.search-filter.hidden li:first-child{
    opacity: 1;
}

.search-bar form ul.search-filter li.type-videos{
    background: url(../images/ico-video-filter.png) no-repeat 11px 23px #fff;
}

.search-bar form ul.search-filter li.type-photos{
    background: url(../images/ico-photo-filter.png) no-repeat 11px 18px #fff;
}

.search-bar form ul.search-filter li.type-members{
    background: url(../images/ico-member-filter.png) no-repeat 14px 18px #fff;
}

.search-bar form ul.search-filter:hover li:hover{
    color: #c4292b;
}

aside.sidebar {
    float: left;
    width: 289px;
    background: #d63240;   
    display: block;
    min-height: 100%;
    position: relative;
}

.logo-holder{
    padding: 15px 0;
    height: 251px;
    background: url(../images/bg-under-logo.png) no-repeat center center;
    border-bottom: 1px solid #be2936;
}

ul.nav{
    margin-top: 25px;
    margin-bottom: 15px;
}

ul.nav,
ul.nav li{
    display: block;
    position: relative;
}

ul.nav li:before{
    position: absolute;    
    display: inline-block;
    content: '';
    background: #be2936;
    width: 25px;
    height: 1px;
    top: 16px;
    left: 0;
}

ul.nav li li:before,
ul.nav li li:after{
    display: none;
}

ul.nav ul{
    margin-bottom: 3px;
}

ul.nav li{
    padding-left: 100px;
    line-height: 33px;
}

ul.nav li.video-nav{
    height: 33px;
    overflow: hidden;
}

ul.nav li li{
    padding-left: 0;
    line-height: 23px;
}

ul.nav li a{
    font-size: 20px;
    font-weight: 300;
    color: #fff;
}

ul.nav li a:hover{
    color: #f27983;
}

ul.nav li.active a{
    font-weight: 700;
}

ul.nav li.active:before{
    width: 65px;
}

ul.nav li.active:after{
    content: '';
    display: inline-block;
    width: 15px;
    height: 17px;
    background: url(../images/menu-active.png) no-repeat;
    position: absolute;
    left: 70px;
    top: 8px;
}

ul.nav li li.active:after{
    background: transparent;
}

ul.nav li li a{
    font-size: 15px;
}

ul.content-filter{
    width: 100%;
    display: block;
    border-bottom: 1px solid #d63240;
}

ul.content-filter li{
    float: left;
    display: block;
    line-height: 23px;
    transition: border-color 0.6s ease;
}

ul.content-filter li a,
ul.content-filter li span{
    line-height: 20px;
    font-weight: 300;
    color: #313131;
    font-size: 14px;
    margin: 0 10px;
    line-height: 24px;
    padding-top: 5px;
    display: block;
    position: relative; 
    transition: color 0.6s ease;
}

ul.content-filter li a{
    position: relative;
}

ul.content-filter li.active a,
ul.content-filter li:hover a{
    position: relative;
    color: #d63240;
    border-bottom: 0;
}

ul.content-filter li.active a:before{
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    content: '';
    height: 1px;
    width: 100%;
    background: #d63240;
}

ul.content-filter li.active a:after{
    display: inline-block;
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    content: '';
    height: 1px;
    width: 100%;
    background: #f2f2f2;
}

.menu-opener{                                              
    float: right;
    display: none;
}
.menu-opener a:before{
    position: absolute;
    content: '';
    display: inline-block;
    left: 50%;
    top: 0;
    margin-left: -12px;
    width: 24px;
    height: 19px;
    background: url(../images/menu-opener.png) center top no-repeat; 
    transition: all 0.6s ease;
}

.menu-opener a{
    display: block;
    width: 100%;
    height: 100%;
}

.sidebar-head{
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    font-family: 'Roboto Condensed', sans-serif;
    display: inline-block;
    margin: 12px 0 0;
    position: relative;
    background: #be2936;
    width: 100%;
    line-height: 31px;
    padding: 24px 15px 20px 38px;    
}

.sidebar-head span{
    position: relative;
    background: url(../images/bg-sidebar-head.png) no-repeat 5px center #be2936;
    padding-left: 30px;
    padding-right: 6px;
    display: inline-block;
}

.sidebar-head:before{
    position: absolute;    
    display: inline-block;
    content: '';
    background: #d63240;
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
    right: 0;
    margin-top: 1px;
}

.categories-holder{
    background: #be2936;
    padding-bottom: 25px;
}

ul.categories-list,
ul.categories-list li{
    display: block;
    background: #be2936;
}

ul.categories-list{
    max-height: 2100px;
    overflow: auto;
    width: 244px;
    margin-left: 30px;
}

ul.categories-list li{
    line-height: 29px;
}

ul.categories-list li a{
    font-size: 20px;
    color: #fff;
    font-weight: 300;
}

ul.categories-list li a:hover,
ul.categories-list li.active a{
    color: #f27983;
}

.sidebar-banner{
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;
}

footer{
    font-size: 14px;
    color: #929292;
    padding-bottom: 2px;
    border-bottom: 15px solid #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
}

footer ul.footer-links,
footer ul.footer-links li{
    float: left;
    display: block;
}

footer ul.footer-links li{
    margin-left: 4px;
    border-bottom: 1px solid #d63240;
    line-height: 22px;
}

footer .copyright{
    float: right;
    line-height: 22px;
    padding: 10px;
    margin-right: 4px;    
}

footer a,
footer span{
    color: #979797;
    font-size: 14px;
    padding: 10px;    
    display: block;
}

footer a:hover{
    color: #d63240;
}

footer.mobile-only{
    display: none;
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    padding: 2px 10px 10px;
    height: auto;
} 

footer.mobile-only,
footer.mobile-only a{
    color: #505050;
}

footer.mobile-only a:hover{
    color: #f27983;
}
    
section.main {
    padding-left: 289px;
    width: 100%;
}

.header-title{
    font-size: 24px;
    font-weight: 700;
    color: #d63240;
    font-family: 'Roboto Condensed', sans-serif;
    display: inline-block;
    margin: 0;
    position: relative;
    width: 100%;
    line-height: 29px;
    padding: 20px 20px 20px 32px;   
}

.header-title span{
    position: relative;
    padding-left: 28px;
    padding-right: 6px;
    display: inline-block;
    background: #eee;
}

.header-title span:before{
    display: inline-block;
    content: '';
    background: url(../images/bg-head-title.png) no-repeat;
    position: absolute;
    left: 6px;
    top: 50%;
    margin-top: -10px;
    width: 17px;
    height: 20px;
}

.header-title:before{
    position: absolute;    
    display: inline-block;
    content: '';
    background: #d2d2d2;
    height: 1px;
    top: 50%;
    left: 4px;
    right: 4px;
}

.main-body{
    float: left;
    width: 100%;
    position: relative;
}

.header-slider{
    position: relative;
}

.owl-carousel .owl-prev,
.owl-carousel .owl-next{
    position: absolute;
    top: 50%;
    width: 60px;
    height: 60px;
    margin-top: -30px;
    cursor: pointer;
    z-index: 10;
}

.owl-carousel .owl-prev{
    left: 0;
    background: url(../images/ico-arrow-left.png) no-repeat 16px center rgba(255,255,255,0.75);
}

.owl-carousel .owl-next{
    right: 0;
    background: url(../images/ico-arrow-right.png) no-repeat 25px center rgba(255,255,255,0.75);
}

.owl-carousel .owl-prev:hover,
.owl-carousel .owl-next:hover{
    background-color: rgba(255,255,255,1);
}

.item{
    float: left;
    padding-right: 1px;
    padding-bottom: 1px;
}

.item.slide-item{
    padding: 0;
}

.item .item-thumb{
    position: absolute;
    top: 31px;
    left: 0;
    right: 0;
    bottom: 58px;
    width: 100%;
    display: block;
}

.item.slide-item .item-thumb{
    top: 0;
    bottom: 0;
}

.item-thumb img{
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    min-height: 100%;
    width: 100%;
    transition: all 0.6s ease;
}

.item:hover img{
    filter: blur(2px);
    -webkit-filter: blur(2px);
}

.item.slide-item:hover .item-thumb img{
    filter: blur(2px);
    -webkit-filter: blur(2px);
   
}

.item .inner{
    position: relative;
    height: 0;
    padding-bottom: 83.4%;
    overflow: hidden;
}

.item.slide-item .inner{
    padding-bottom: 76%;
}


.item-body{
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    width: 100%;
}

.item .rating{
    position: absolute;
    top: 31px;
    left: 0;
    right: 0;
    bottom: 27px;
    display: block;
    width: 100%;
    background: url(../images/bg-under-rating.png) no-repeat center center rgba(0,0,0,0.54);
    text-align: center;
    opacity: 0;
    transition: all 0.6s ease;
}

.item:hover .rating{
    opacity: 1;
}

.item .rating i{  
    color: #d63240;
    font-size: 14px;
    font-weight: 300;
    width: 100%;
    display: block;
    font-style: normal;
    line-height: 17px;
    margin-top: -10px;
}

.item .rating b{  
    text-align: center;
    clear: both;
    font-size: 57px;
    color: #7f7f7f;
    font-weight: 700;
    width: 100%;
    display: block;
    line-height: 57px;
    position: relative;
    padding-bottom: 10px;
}

.item .rating b:after{ 
    width: 72px;
    height: 1px;
    display: inline-block;
    background: #d63240;
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -36px;
}

.item .item-title{     
    display: block;
    width: 100%;
    background: url(../images/bg-item-title.png) no-repeat #fff 11px 11px;
    margin: 0;
    text-align: right;
    color: #000;
    font-size: 17px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    line-height: 29px;
    transition: all 0.6s ease;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding-right: 10px;
    padding-left: 28px;
    overflow: hidden;
    height: 31px;
}
.item:hover .item-title{ 
    color: #d63240;
}

.item .item-details{  
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    display: block;
    width: 100%;    
    background: #fff;
    color: #39314c;
    font-size: 16px;
    font-weight: 300;
    transition: all 0.6s ease;    
    display: block;
    line-height: 32px;
}

.item .item-details .duration,
.item .item-details .views,
.item .item-details .added{
    position: relative;
    text-align: center;
    width: 33.33%;
    display: block;
    float: left;
}

.item .item-details .duration:before,
.item .item-details .views:before,
.item .item-details .added:before{
    content: '';
    display: inline-block;
    position: absolute;
    bottom: 1px;
    left: 1px;
    right: 1px;
    height: 1px;
    background: #d63240;
}

.slide-item{
    position: relative;
    width: 100%;
}

.item.slide-item .rating{
    top: 0;
    bottom: 0;
}

.item.slide-item .item-title{
    bottom: 10px;
    top: auto;
    right: 0;
    left: 0;
    background: transparent;
    text-align: center;
    z-index: 10;
    color: #fff;
    position: absolute;
    padding: 0 10px;
    opacity: 0;
    transition: all 0.6s ease;   
}

.item.slide-item:hover .item-title{
    opacity: 1;
}

.content{
    padding-left: 3px;
    padding-right: 3px;
}

.content-item{
    width: 20%;
}

.inner-banner-holder{
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.inner-banner-holder .inner-banner-body {
    max-width: 90%;
    height: auto;
}

.pagination{
    position: relative;
    text-align: center;
    padding-top: 19px;
    padding: 19px 5px 0 5px;
}

.pagination:after{
    position: absolute;
    left: 4px;
    right: 4px;
    bottom: 0;
    content: '';
    display: inline-block;
    height: 1px;
    background: #d2d2d2;
}

.pagination a,
.pagination span{
    display: inline-block;
    color: #363636;
    font-size: 18px;
    line-height: 44px;
    padding: 4px 10px;
    display: inline-block;
    font-weight: 300;
    line-height: 28px;
    position: relative;
}

.pagination a.prev{
    background: url(../images/ico-prev-pagination.png) no-repeat left 12px;
    padding-left: 20px;
}

.pagination a.next{
    background: url(../images/ico-next-pagination.png) no-repeat right 12px;
    padding-right: 20px;
}

.pagination span{
    position: relative;
    color: #f27983;
    border-top: 1px solid #be2936;
    font-weight: 700;
    color: #d63240;
}

.pagination span:after{
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    right: 0;
    background: #f2f2f2;
    display: inline-block;
    content: '';
    z-index: 10;
}

.pagination a:hover{
    color: #be2936;
}

.boxes-bottom{
    text-align: center;
    padding-bottom: 20px;
}

.boxes-bottom .box{
    display: inline-block;
    margin: 20px 10px 0 10px;
}

.boxes-bottom .box a,
.boxes-bottom .box a img{
    display: block;
}

.media-section img{
    max-width: 100%;
}

.body-wrap{
    width: 100%;
    max-width: 1176px;
}

.media-section .media {
    float: left;
    width: 100%;
    margin: 0 auto;
    padding-right: 320px;
    padding-left: 4px;
    position: relative;
}

.player .inner{
    position: relative;
    height: 0;
    padding-bottom: 62.5%;
    overflow: hidden;
}

.player img,
.player video,
.player embed,
.player iframe{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.video-actions,
.video-details{
    background: #fff;
}

.left-details{
    width: 50%;
    float: left;
    padding: 10px 10px 25px 10px;
}

.related-media{
    margin-bottom: 2px;
}

.media-section .b-boxes {
    float: left;
    width: 320px;
    margin-left: -320px;
    margin-bottom: 30px; 
    text-align: center;
}

.media-section .b-boxes.mobile-boxes {
    display: none;
    float: none;
    margin: 0;
    padding-top: 20px;
    text-align: center;
    width: 100%;
}

.b-boxes .b-box{
    display: inline-block;
    margin-bottom: 6px;
}

.media-section .b-boxes.mobile-boxes .b-box {
    margin: 0 10px;
    padding-bottom: 20px;
}

.video-actions{
    padding: 2px 0 10px 0;
}

.video-actions, 
.video-actions a{
    color: #fff;
    font-size: 18px;
    font-weight: 300;
}

.video-actions li{
    float: left;
}

.video-actions a{
    padding: 0 8px;
    display: inline-block;
    background: #f2f2f2;
    margin-right: 10px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    color: #505258;
    font-size: 16px;
    line-height: 32px;
}

.video-actions a:hover{
    color: #fff;
    background: #be2936;
}

.video-actions .rating{
    margin-right: 15px;
}

.video-parms b{
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: #505258;
    font-weight: 400;
    width: 90px;
}

.rating-bar-off{
    display: block;
    float: right;
    width: 120px;
    height: 20px;
    background: url(../images/stars.png) left bottom;
    margin-right: 7px;
    margin-top: 7px;
}

.rating-bar-on{
    display: block;
    float: right;
    width: auto;
    float: left;
    height: 20px;
    background: url(../images/stars.png) left top;
}

.current-rating{
    float: right;
    padding-left: 7px;
    font-size: 30px;
    font-weight: 700;
    margin-top: 3px;
    color: #505258;
    font-size: 18px;
    font-weight: 700;
    border-left: 1px solid #c4292b;
    line-height: 27px;
}

.video-parms,
.video-parms a{
    font-size: 16px;
    font-weight: 300;
    color: #505258;
}

.video-parms li{
    line-height: 26px;
}

.video-parms a:hover{
    color: #be2936;
}

.right-details a.embed{
    font-size: 16px;
    color: #505258;
    text-decoration: underline;
    margin-top: 10px;
    display: inline-block;
}

.right-details a.embed:hover{
    color: #be2936;
}

.right-details{
    font-size: 16px;
    color: #f08903;
    float: left;
    width: 50%;
    padding: 10px 20px 25px 10px;
    border-left: 1px solid #eeeeee;
}

.left-details .desc-title{
    font-size: 16px;
    color: #5e6065;
    display: inline-block;
    width: 100%;
    max-width: 130px;
    border-bottom: 1px solid #d63240;
    line-height: 35px;
    margin-top: 10px;
    font-weight: 400;
}

.left-details .description{
    font-size: 16px;
    color: #5e6065;
    line-height: 22px;
    margin-top: 10px;
    font-weight: 300;
}

ul.coments-list,
ul.coments-list li{
    display: block;
    color: #5e6065;
    font-size: 16px;
    font-weight: 300;
}

ul.coments-list li{
    padding: 20px 20px 20px 40px;
    border-bottom: 1px solid #d2d2d2;
}

ul.coments-list li:first-child{
    padding-top: 0;
}

ul.coments-list a{
    color: #d63240;
}

.sendCommentsBox{
    padding: 15px 15px 15px 40px;
}

.sendCommentsBox textarea{
    width: 100%;
    height: 82px;
    background: #fff;
    border: 0;
    resize: none;
    font-family: 'Roboto Condensed', sans-serif;
    color: #505258;
    font-size: 14px;
    font-weight: 300;
    padding: 10px 15px;
    border-top: 1px solid #d9d9d9;
    border-left: 1px solid #d9d9d9;
}

.sendCommentsBox .form-action {
    text-align: left;
}

.sendCommentsBox input[type=submit]{
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    background: #c4292b;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    line-height: 30px;
    padding: 0 10px;
    margin-top: 10px;
    border: 0;
    font-family: 'Roboto Condensed', sans-serif;
    cursor: pointer;
    transition: all 0.6s ease;    
}

.sendCommentsBox input[type=submit]:hover{
    background: #e03d3f;
}

.c-comment{
    font-style: italic;
    margin-top: 20px;
}

.mm-listview .mm-divider{
    font-size: 15px;
    line-height: 43px;
}

.gallery-images{
    position: relative;
}

.photo-gallery{
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.photo-item{
    position: relative;
    float: left;
    width: 33.33%;
}

.photo-item img{
    width: 100%;
    min-height: 100%;
    transition: all 0.6s ease;  
}

.content.static-page{
    max-width: 1165px;
}

.body-wrapper{
    max-width: 1176px;
}

.static-page .content-item{
    width: 33.33%;
}


/* Additional styles */

.half-column{
    width: 50%;
    float: left;
}

.left-half{
    padding-right: 17px;
}

.right-half{
    padding-left: 17px;
}

form label {
    width: 100%;
    display: inline-block;
    font-size: 14px; font-size: 0.875rem;
    font-weight: 700;
}

form input[type="text"],
form input[type="email"],
form input[type="password"],
form select,
form textarea {
    width: 78%;
    display: inline-block;
}

form .description {
    width: 78%; 
    display: inline-block;
    margin-left: 21%; margin-bottom: 10px; 
    *zoom: 1; clear: both;
    font-size: 11px; font-size: 0.6875rem;
    font-style: italic; 
}

form .description:before,
form .description:after {
    display: block;
    clear: both;
    content: " ";
}

form .form-item {
    margin-bottom: 10px; margin-top: 5px;
}

form .form-item.error {
    color: #d70a0a;
}

form .form-item.form-textarea label {
    vertical-align: top;
}

form .form-item.form-checkbox label,
form .form-item.form-radio label {
    width: auto;
    margin-right: 25px;
    display: inline-block;
    font-weight: 400;
}

form .form-action {
    padding-top: 10px; 
}

form legend {
    padding: 0 10px;
}

form fieldset {
    margin: 5px 0 10px;
}

.body-wrapper{
    padding: 0 15px;
    font-size: 16px;
}

.body-wrapper p{
    font-size: 14px;   
}

.body-wrapper form button,
.body-wrapper form input[type="submit"] {
    font-size: 18px;
    font-weight: 300;
    color: #2a2a2a;
    background: #e2e2e2;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    line-height: 40px;
    padding: 0 15px;
    margin-top: 10px;
    border: 0;
    font-family: 'Roboto Condensed', sans-serif;
    cursor: pointer;
    transition: all 0.6s ease;  
}

.body-wrapper form button:hover,
.body-wrapper form input[type="submit"]:hover {
    color: #fff;
    background: #c4292b;
}

.miniform{
    font-size: 14px;
}

.miniform input[type=text],
.miniform input[type=password],
.miniform input[type=email],
.miniform select,
.miniform textarea,
#comment-form input[type=text],
#comment-form input[type=password],
#comment-form input[type=email],
#comment-form textarea,
#mailbox .compose input[type='text'],
#mailbox .compose textarea{
    width: 100%;
    padding: 7px 12px;
    max-width: 100%;
    border: 1px solid #d9d9d9;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    font-size: 14px;
    background: #fff;
    color: #505258;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.sep-row{
    margin-top: 15px;
}

.miniform input[type=submit],
.miniform button,
#comment-form input[type=submit],
#comment-form button{
    font-size: 18px;
    font-weight: 300;
    color: #2a2a2a;
    background: #e2e2e2;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    line-height: 30px;
    padding: 0 10px;
    margin-top: 10px;
    border: 0;
    font-family: 'Roboto Condensed', sans-serif;
    cursor: pointer;
    transition: all 0.6s ease;
}

.miniform input[type=submit]:hover,
.miniform button:hover,
#comment-form input[type=submit]:hover,
#comment-form button:hover{
    color: #fff;
    background: #c4292b;
}

#comment-form .form-action{
    margin-top: 10px;
}

.form-item,
.form-item-actions{
    margin-top: 15px;
}

.captcha-img{
    margin-top: 15px;
}

.btn-transparent{
    margin: 0 10px;
}

.comments-block {
    padding: 20px 0;
}

.comments-block h3 {
    padding: 8px 0 8px 25px;
    position: relative; 
    border-top: 1px solid #dfdfdf;
    border-bottom: 1px solid #dfdfdf; 
    font-size: 16px; font-size: 1rem;
}

.comments-block .c-description,
.comments-block form {
    width: 100%; 
    float: left;
    padding-left: 75px;
}

.comments-block .c-author {
    font-size: 12px; font-size: 0.75rem;
    margin-bottom: 3px;
}

.comments-block .c-comment {
    color: #7f7f7f;
    font-size: 12px; font-size: 0.75rem;
    font-weight: 300;
}

.comments-block ul {
    padding: 0;
    margin: 0;
}

.comments-block ul li {
    list-style-type: none;
    margin: 0;
    padding: 0;
    list-style-image: none;
}

.comments-block ul li {
    *zoom: 1; clear: both;
    margin-bottom: 15px;
}

.comments-block ul li:before,
.comments-block ul li:after {
    display: block;
    clear: both; content: " ";
}

.comments-block .sep-row .sep-line {
    margin-bottom: 20px;
    margin-top: 10px;
}

.comments-block form {
    position: relative;
}

.comments-block form:before {
    width: 0px; height: 0px;
    display: block;
    position: absolute; top: 15px; left: 64px; 
    content: " ";
    border-style: solid; 
    border-color: transparent #dfdfdf transparent transparent;
    border-width: 8px 12px 8px 0;
}

.comments-block form:after {
    width: 0px; height: 0px;
    display: block; 
    position: absolute; top: 15px; left: 66px;
    content: " ";
    border-style: solid;
    border-color: transparent #ffffff transparent transparent;
    border-width: 8px 12px 8px 0;
}

.comments-block form textarea {
    width: 100%;
    height: 124px;
    padding: 5px;
}

.comments-block form input[type="submit"] {
    padding: 7px 20px; 
    border: none;
    border-radius: 0;
    background-color: #2f2d2c;
    color: #ffffff;
    font-size: 14px; font-size: 0.875rem;
    font-weight: 300;
}

#mailbox:before,
#mailbox:after{
    content: '';
    display: inline-block;
    width: 100%;
}

.ilibox-iframe{
    background: #fff;
}

.ilibox-frame{
    padding: 20px;
}

.ilibox-frame h1{
    font-weight: 300;
}

.ilibox-frame .ilibox-label{
    width: 121px;
}
.ilibox-frame .ilibox-input{
    width: 369px;
}

#video_rating{
    position: relative;
}

.rating-module #ratingStarsMessage{
    top: 44px;
}

#ratingStarsMessage{
    color: #5e6065;
}

.notification {
    position: relative;
    clear: both;
    padding: 17px;
    margin: 15px 0;
    border-radius: 2px;
    text-align: left;
}

.notification p {
    margin: 0;
    padding: 0;
    background: none repeat scroll 0 0 transparent;
    border: 0 none;
    color:#333333;
    font-size: 14px;
    line-height:21px;
    vertical-align: baseline;
}

.notification.info {
    background-color:#f8faff;
    border: 1px solid #f1f3f8;
    vertical-align: baseline;
}

.notification.success {
    background: #EFFEB9;
    border: 1px solid #C1D779;
}

.notification.error {
    background: #FAD5CF;
    border: 1px solid #E18B7C;
}

.notification.alert {
    background: #FFE9AD;
    border: 1px solid #EAC572;
}

.my_profile h4 {
    background-color: #FAFAFA;
    border-bottom-width: 2px;
    border-bottom-style: solid;
    border-bottom-color: #d3d6dd;
    color: #000000;
    padding: 7px;
    cursor:pointer;
}

#mailbox .navi {
    width:100%;
    float:left;
    padding:0px;
    margin:0px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #d3d6dd;
}

#mailbox .cnt:before,
#mailbox .cnt:after {
    display: table;
    content: '';
    clear: both;
}

#mailbox .navi li {
    display:block;
    padding:0px;
    margin:0px;
}

#mailbox .navi li a {
    margin-right: 3px;
    padding: 5px 10px;
    float: left;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
}

#mailbox .navi li a:hover,
#mailbox .navi li.active a {
    background-color: #E9E9E9;
    color: #000000;
}

#mailbox table {
    width: 100%;
    border-collapse:collapse;
}

#mailbox input[type='submit'],
#mailbox a.delete,
#mailbox a.reply { 
    font-size: 18px;
    font-weight: 300;
    color: #2a2a2a;
    background: #e2e2e2;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    line-height: 30px;
    padding: 0 10px;
    margin-top: 10px;
    border: 0;
    font-family: 'Roboto Condensed', sans-serif;
    cursor: pointer;
    transition: all 0.6s ease;
}

#mailbox a.reply { 
    color: #c4292b;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    font-size: 14px;
}

#mailbox a.delete, 
#mailbox a.reply{
    padding: 0;
    margin-top: 10px;
    background: transparent;
    color: #c4292b;
}

#mailbox .actions{
    width: 100%;
    clear: both;
    margin-top: 26px;
}

#mailbox .notification{
    clear: both;
    margin-top: 30px;
    width: 100%;
}

#mailbox table a {
    color:#434343;
    text-decoration:underline;
}

#mailbox .row {
    margin-top:20px;
}

#mailbox .compose {
    padding:0px;
    margin:0px;
    list-style-type:none;
}

#mailbox .compose textarea {
    height:240px;
}

#mailbox .compose li {
    width:100%;
    padding: 5px 0 5px 0;
    margin: 5px 0 0 0;
}

#mailbox table td,
#mailbox table th {
    padding:5px 10px; 
    text-align:left;
}

#mailbox table td {
    background-color:#FAFAFA;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #F7F2F7;
}

#mailbox table tr th {
    border-bottom-width: 2px;
    border-bottom-style: solid;
    border-bottom-color: #666666;
}

#mailbox table tr:hover td {
    background-color:#E8F5F5;
}

#captchaCom{
    border: 0 !important;
    width: 100%;
    background: #313131;
    border: 0;
    resize: none;
    font-family: 'Roboto Condensed', sans-serif;
    color: #e2e2e2;
    font-size: 14px;
    font-weight: 300; 
    border-top: 1px solid #d2d2d2 !important;
    border-left: 1px solid #d2d2d2 !important;    
}

.dark-padding-box{
    padding: 0 15px;
}

.dark-padding-box p,
.dark-box p,
.login-alert p{
    font-size: 15px;
    padding: 15px 20px;
    display: block;
    margin: 0;
}

.dark-box .sendCommentsBox{
    padding: 15px 20px;
}

.dark-padding-box input[type=text],
.dark-box input[type=text]{
    width: 100%;
    background: #fff;
    border: 1px solid #d9d9d9;
    resize: none;
    font-family: 'Roboto Condensed', sans-serif;
    color: #e2e2e2;
    font-size: 14px;
    font-weight: 300;
    border-top: 1px solid #d2d2d2 !important;
    border-left: 1px solid #d2d2d2 !important;
}

#comment-form textarea,
.dark-padding-box textarea{
    width: 100%;
    height: 82px;
    background: #fff;
    border-top: 1px solid #d2d2d2 !important;
    border-left: 1px solid #d2d2d2 !important;
    border: 0;
    resize: none;
    font-family: 'Roboto Condensed', sans-serif;
    color: #5e6065;
    font-size: 14px;
    font-weight: 300;
    padding: 10px 15px;   
}

#myspan{
    padding: 0 20px;
}

.star-image-row .image,
.half-column.avatar .image{
    display: block;
    width: 300px;
    max-width: 100%;
}
.star-image-row .image img,
.half-column.avatar .image img{
    width: 100%;
}


/* Media queries */

@media(min-width: 1400px) and (max-width: 1800px) {
    .content-item{
        width: 25%;
    }
    .video-actions .rating{
        margin-top: 10px;
        clear: both;
        float: left;
    }       
}

@media(min-width: 1250px) and (max-width: 1399px) {
    .content-item{
        width: 33.33%;
    }
    footer ul.footer-links,
    footer .copyright{
        text-align: center;
        width: 100%;
    }
    
    footer ul.footer-links li{
        display: inline-block;
        float: none;
    }    
    .video-actions .rating{
        margin-top: 10px;
        clear: both;
        float: left;
    }
}

@media(min-width: 990px) and (max-width: 1249px) {
    .content-item{
        width: 50%;
    }
    
    .static-page .content-item{
        width: 50%;
    }     
    
    .pagination a{
        display: none;
    }
    
    .pagination a.prev,
    .pagination a.next{
        display: inline-block;
    }
    
    .media-section .media{
        padding-right: 2px;
    }
    
    .media-section .b-boxes{
        display: none;
    }    
    
    .media-section .b-boxes.mobile-boxes {
        display: block;
    }
    
    .media-section .b-boxes.mobile-boxes .b-box:last-child {
        display: none;
    }
    footer ul.footer-links,
    footer .copyright{
        text-align: center;
        width: 100%;
    }
    
    footer ul.footer-links li{
        display: inline-block;
        float: none;
    }   
    .video-actions .rating{
        margin-top: 10px;
        clear: both;
        float: left;
    }    
}

@media(min-width: 768px) and (max-width: 989px) {
    .content-item{
        width: 33.33%;
    }
    
    .static-page .content-item{
        width: 33.33%;
    }          
    
    .item .item-details{
        font-size: 12px;
    }
    
    section.main,
    aside.sidebar{
        width: 100%;
        padding: 0;
        margin: 0;
        float: left;
    }
    
    ul.nav,
    .sidebar-head,
    .categories-holder,
    .sidebar-banner{
        display: none;
    }
    
    .media-section .b-boxes{
        display: none;
    }
    
    .media-section .media{
        padding: 0 2px;
    } 
    
    .media-section .b-boxes{
        display: none;
    }    
    
    .media-section .b-boxes.mobile-boxes {
        display: block;
    }
    
    .media-section .b-boxes.mobile-boxes .b-box:last-child {
        display: none;
    }  
    
    footer ul.footer-links,
    footer .copyright{
        text-align: center;
        width: 100%;
    }
    
    footer ul.footer-links li{
        display: inline-block;
        float: none;
    }
    .video-actions .rating{
        margin-top: 10px;
        clear: both;
        float: left;
    } 
    aside.sidebar{
        text-align: center;
        min-height: 88px !important;
        height: 88px;
    }
    .logo-holder{
        height: 61px;
        background: transparent;
        display: inline-block;
        border-bottom: 0;
        border-right: 1px solid #be2936;
        padding: 0 25px 0 0;
        margin-top: 15px;
    }
    .menu-opener{
        float: none;
        position: relative;
        width: 20px;
        height: 41px;
        margin-left: 25px;
        padding-left: 25px;
        display: inline-block;
    }
}

@media(min-width: 480px) and (max-width: 767px) {
    .content-item{
        width: 50%;
    }
    .static-page .content-item{
        width: 50%;
    }        
    
    section.main,
    aside.sidebar{
        width: 100%;
        padding: 0;
        margin: 0;
        float: left;
    }
    aside.sidebar{
        min-height: 150px !important;
    }
    ul.nav,
    .sidebar-head,
    .categories-holder,
    .sidebar-banner{
        display: none;
    }  
  
    .pagination a{
        display: none;
    }
    .pagination a.prev,
    .pagination a.next{
        display: inline-block;
    } 
    .media-section .b-boxes{
        display: none;
    }
    .media-section .media{
        padding: 0 2px;
    }
    .left-details,
    .right-details,
    ul.coments-list li,
    .video-actions{
        padding: 10px 15px;
        width: 100%;
    }        
    .left-details, 
    .right-details{
        padding: 10px 15px;
    }
    .video-actions{
        text-align: center;
    }
    .video-actions ul{
        width: 100%;
        text-align: center;
    }
    .video-actions .rating{
        display: inline-block;
        float: none;
        margin: 10px 0 0 0;
    }
    .video-actions li{
        float: none;
        display: inline-block;
        margin-bottom: 11px;
    }
    .media-section .b-boxes{
        display: none;
    }    
    
    .media-section .b-boxes.mobile-boxes {
        display: block;
    }
    
    .media-section .b-boxes.mobile-boxes .b-box:last-child {
        display: none;
    } 
    
    footer ul.footer-links,
    footer .copyright{
        text-align: center;
        width: 100%;
    }
    
    footer ul.footer-links li{
        display: inline-block;
        float: none;
    }   
    aside.sidebar{
        text-align: center;
        min-height: 88px !important;
        height: 88px;
    }
    .logo-holder{
        height: 61px;
        background: transparent;
        display: inline-block;
        border-bottom: 0;
        border-right: 1px solid #be2936;
        padding: 0 25px 0 0;
        margin-top: 15px;
    }
    .menu-opener{
        float: none;
        position: relative;
        width: 20px;
        height: 41px;
        margin-left: 25px;
        padding-left: 25px;
        display: inline-block;
    } 
    .photo-item{
        width: 50%;
    }        
    
    /* Additional styles */
    .half-column{
        width: 100%;
    }
    .left-half,
    .right-half{
        padding: 0;
    }      
    .photo-item{
        width: 50%;
    }    
    .login-mobile-padding{
        padding-bottom: 20px;
    }        
}

@media(max-width: 479px) {
    .content-item{
        width: 100%;
    }
    .static-page .content-item{
        width: 100%;
    }        
    
    section.main,
    aside.sidebar{
        width: 100%;
        padding: 0;
        margin: 0;
        float: left;
    }
    aside.sidebar{
        min-height: 150px !important;
    }
    ul.nav,
    .sidebar-head,
    .categories-holder,
    .sidebar-banner{
        display: none;
    }

    .pagination a{
        display: none;
    }
    .pagination a.prev,
    .pagination a.next{
        display: inline-block;
    }
    .media-section .b-boxes{
        display: none;
    }
    .media-section .media{
        padding: 0 2px;
    }    
    .left-details,
    .right-details,
    ul.coments-list li,
    .video-actions{
        padding: 10px 15px;
        width: 100%;
    }    
    .sendCommentsBox,
    ul.coments-list li{
        padding: 20px 15px;
    }    
    .left-details, 
    .right-details{
        padding: 10px 15px;
    }
    .video-actions{
        text-align: center;
    }
    .video-actions ul{
        width: 100%;
        text-align: center;
    }
    .video-actions .rating{
        display: inline-block;
        float: none;
        margin: 10px 0 0 0;
    }
    .video-actions li{
        float: none;
        display: inline-block;
        margin-bottom: 11px;
    }
    .media-section .b-boxes{
        display: none;
    }    
    
    .media-section .b-boxes.mobile-boxes {
        display: block;
    }
    
    .media-section .b-boxes.mobile-boxes .b-box{
        margin: 0;
    }
    
    .media-section .b-boxes.mobile-boxes .b-box:last-child {
        display: none;
    }    
    
    footer ul.footer-links,
    footer .copyright{
        text-align: center;
        width: 100%;
    }
    
    footer ul.footer-links li{
        display: inline-block;
        float: none;
    }  
    aside.sidebar{
        text-align: center;
        min-height: 88px !important;
        height: 88px;
    }
    .logo-holder{
        height: 61px;
        background: transparent;
        display: inline-block;
        border-bottom: 0;
        border-right: 1px solid #be2936;
        padding: 0 25px 0 0;
        margin-top: 15px;
    }
    .menu-opener{
        float: none;
        position: relative;
        width: 20px;
        height: 41px;
        margin-left: 25px;
        padding-left: 25px;
        display: inline-block;
    }   
    .photo-item{
        width: 100%;
    }    
    
    /* Additional styles */
    .half-column{
        width: 100%;
    }
    .left-half,
    .right-half{
        padding: 0;
    }     
    .photo-item{
        width: 100%;
    }
    .login-mobile-padding{
        padding-bottom: 20px;
    }    
}