@font-face {
    font-family: 'icons';
    src: url('fonts/fontello.eot?98262113');
    src: url('fonts/fontello.eot?98262113#iefix') format('embedded-opentype'),
    url('fonts/fontello.woff?98262113') format('woff'),
    url('fonts/fontello.ttf?98262113') format('truetype'),
    url('fonts/fontello.svg?98262113#fontello') format('svg');
    font-weight: normal;
    font-style: normal;
}
a, p, h1, h2, h3, ul, figure, img, div, section, header, main, aside, article, input, textarea, pre, code{
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
a{
    text-decoration: none;
    color: #e74c3c;
}
a:hover{
    color: #ff0000;
}
html{
    position: relative;
}
html, body{
    width: 100%;
    float: left;
    font-size: 15px;
    font-family: arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
    color: #333;
    min-height: 100%;
}

/*common*/
.full-wrapper{
    width: 1220px;
    margin: 0 auto;
}
.full-width{
    width: 100%;
    float: left;
}
.progress-header{
    width: 100%;
    float: left;
    position: relative;
    color: #3cba54;
    font-size: 26px;
}
.progress-header span{
    display: inline-block;
    padding: 4px 30px 4px 0;
    position: relative;
    z-index: 2;
    background: #f9f9f9;
}
.progress-header span:before{
    content: '';
    width: 18px;
    height: 18px;
    background: #e74c3c;
    position: absolute;
    top: 50%;
    right: -100px;
    margin-top: -9px;
    border-radius: 50%;
}
.progress-header:before{
    content: '';
    width: 100%;
    height: 4px;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -2px;
    background: #e74c3c;
}

/* header footer main etc */
#site-main{
    position: relative;
    margin-bottom: 120px;
}
#site-footer{
    background: #e7e7e7;
    height: 80px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.user-bar{
    background: #e7e7e7;
    padding: 5px;
    font-size: 15px;
    line-height: 22px;
}
.user-bar a{
    float: right;
    color: #4286f4;
}
.user-bar a:not(:last-child){
    margin-left: 22px;
    padding-left: 22px;
    border-left: 1px solid #555;
}
.user-bar a:hover{
    color: #e74c3c;
}
.user-bar a:before, .user-bar span:before{
    font-family: 'icons', sans-serif;
    margin-right: 10px;
    position: relative;
}
#site-header .user:before{
    content: '\e803';
    color: #e74c3c;
    bottom: -1px;
}
#site-header .user span{
    font-weight: bold;
    margin-left: 2px;
}
#site-header .my-q:before{
    content: '\f29c';
    font-size: 18px;
    bottom: -1px;
}
#site-header .my-acc:before{
    content: '\f2c0';
}
#site-header .logout:before{
    content: '\e804';
}

#header-logo{
    display: block;
    float: left;
    width: 300px;
    padding: 30px 0;
}
#header-logo img{
    width: 100%;
    height: auto;
    display: block;
}

#header-nav{
    float: right;
    margin-top: 45px
}
#header-nav ul{
    list-style: none;
    display: block;
    float: left;
}
#header-nav ul li{
    display: block;
    float: left;
    margin-left: 18px;
}
#header-nav ul li a{
    display: block;
    color: #3cba54;
    font-size: 17px;
    padding: 5px 30px;
    border: 1px solid #3cba54;
    -webkit-transition: background 0.2s, color 0.2s;
    -moz-transition: background 0.2s, color 0.2s;
    -ms-transition: background 0.2s, color 0.2s;
    -o-transition: background 0.2s, color 0.2s;
    transition: background 0.2s, color 0.2s;
}
#header-nav ul li a.active,
#header-nav ul li a:hover{
    background: #3cba54;
    color: #fff;
}

/*codes*/
.code-line{
    background: #e7e7e7;
    padding-left:5px;
    padding-right: 5px;
    white-space: nowrap;
    color: #333;
    font-weight: normal;
}
.code-box{
    width: 100%;
    float: left;
    overflow: auto;
}
.code-box code{
    min-width: 100%;
    padding: 10px;
    display: block;
    float: left;
}


/*data type highlights*/
.string-type-h{
    background: #00AB6F;
    color: #fff;
    padding: 1px 5px 3px 5px;
}
.integer-type-h{
    background: #679ED2;
    color: #fff;
    padding: 1px 5px 3px 5px;
}
.object-type-h{
    background: #2219B2;
    color: #fff;
    padding: 1px 5px 3px 5px;
}
.array-type-h{
    background: #7872D8;
    color: #fff;
    padding: 1px 5px 3px 5px;
}
.boolean-type-h{
    background: #FF9700;
    color: #fff;
    padding: 1px 5px 3px 5px;
}


/*player live example*/
.player-example > div{
    width: 600px;
    max-width: 100%;
}
.player-example.full > div{
    width: 100%;
}



/* cover styles */
.support-main .cover{
    position: relative;
}
.support-main .cover:before{
    content: '';
    position: absolute;
    left: -100vw;
    top: 0;
    width: 300vw;
    height: 100%;
    background: #4286f4;
}
.support-main .cnt{
    position: relative;
    z-index: 2;
}
.cover{
    background: #4286f4;
    padding: 40px 0;
}
.cover .cnt{
    width: 50%;
    float: left;
    color: #fff;
    margin-top: 32px;
}
.cover .cnt.full{
    margin-top: 0;
    width: 100%;
}
.cover .cnt.article{
    margin-top: 0;
    width: calc(100% - 320px);
}
.cover .cnt > h1{
    font-size: 30px;
}
.cover .cnt > p{
    font-size: 16px;
    margin-top: 10px;
    line-height: 24px;
}
.cover .cnt a{
    color: #fff;
    text-decoration: underline;
}
.cover .cnt .butt{
    border: 1px solid #fff;
    padding: 5px 16px;
    text-decoration: none;
    margin: 0 5px;
}
.cover .cnt .butt:hover{
    background: #fff;
    color: #4286f4;
}
.cover-illustration{
    width: 45%;
    float: right;
}

/* homes intro */
.home-intro{
    margin-top: 30px;
}
.home-intro .progress-header{
    margin-bottom: 18px;
}
.home-intro .code{
    width: 50%;
    float: right;
}
.home-intro p{
    width: 100%;
    float: left;
    margin-bottom: 10px;
    line-height: 24px;
}
.home-intro p{
    margin-bottom: 14px;
}
.home-intro strong{
    color: #4286f4;
}
.home-intro :not(.code) .code-box{
    margin-bottom: 14px;
}
.home-intro .player-example{
    width: 48%;
    float: left;
}



/* goodies list for plaer methods etc */
.goodies-list{
    width: 100%;
    float: left;
    border: 1px solid #ccc;
    margin-top: 10px;
}
.goodies-list > div{
    width: 100%;
    float: left;
    border-bottom: 1px solid #ccc;
    background: #f5f5f5;
}
.goodies-list > div > div{
    float: left;
    width: 300px;
    padding: 10px;
    line-height: 22px;
}
.goodies-list > div > div:last-child{
    width: calc(100% - 300px);
    background: #f9f9f9;
}
.goodies-list > div > div > p{
    width: 100%;
    float: left;
}










/* skins list */
.skins-list{
    margin-top: 60px;
}
.skins-list.spf{
    margin-top: 30px;
}
.skins-list .progress-header{
    margin-bottom: 16px;
}
.skins-list header p{
    width: 100%;
    float: left;
    line-height: 24px;
    margin-bottom: 20px;
}
.skins-list .skin-brick{
    width: calc(33.33% - 14px);
    display: block;
    float: left;
    margin: 0 20px 20px 0;
    position: relative;
    background: rgba(235, 235, 235, 0.6);
}
.skins-list .skin-brick:nth-child(3n){
    margin-right: 0;
}
.skins-list .skin-brick > img{
    width: 100%;
    float: left;
    height: auto;
}
.skins-list .skin-brick > h3{
    width: 100%;
    float: left;
    font-weight: normal;
}
.skins-list .skin-brick > h3 > a{
    padding: 12px 10px 0 10px;
    display: block;
    color: #4286f4;
}
.skins-list .skin-brick > h3 > a:before,
.skins-list .skin-brick > h3 > a:after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #4286f4;
    -webkit-pointer-events: none;
    -moz-pointer-events: none;
    -ms-pointer-events: none;
    -o-pointer-events: none;
    pointer-events: none;
}
.skins-list .skin-brick > h3 > a:after{
    width: 0;
    background: #3cba54;
    -webkit-transition: width 0.7s linear;
    -moz-transition: width 0.7s linear;
    -ms-transition: width 0.7s linear;
    -o-transition: width 0.7s linear;
    transition: width 0.7s linear;
}
.skins-list .skin-brick > h3 > a:hover{
    color: #3cba54;
}
.skins-list .skin-brick > h3 > a:hover:after{
    width: 100%;
}
.skins-list .skin-brick > p{
    width: 100%;
    float: left;
    padding: 12px 10px;
}







/*docs sidebar*/
.article-sidebar{
    width: 300px;
    float: right;
    background: #e7e7e7;
    margin-top: 20px;
    padding: 14px 20px;
    position: absolute;
    right: 50%;
    margin-right: -610px;
}
.article-sidebar.docs{
    background: #3cba54;
    height: calc(100vh - 40px);
}
.article-sidebar.docs.fixed{
    position: fixed;
    top: 20px;
    margin-top: 0;
}
.article-sidebar.docs.fixed.bottom{
    position: absolute;
    top: auto;
    bottom: 0;
}
.article-sidebar .skins-list{
    margin-top: 0;
}
.article-sidebar h2, .article-sidebar > h3{
    width: 100%;
    float: left;
    font-size: 30px;
    font-weight: normal;
}
.article-sidebar h2{
    font-size: 24px;
    margin-bottom: 12px;
}
.article-sidebar .skins-list header p{
    margin-top: 6px;
    margin-bottom: 12px;
}
.article-sidebar .skins-list .skin-brick{
    width: 100%;
    margin-right: 0;
    background: none;
}
.article-sidebar .skins-list .skin-brick > h3 > a{
    padding: 12px 2px;
}
.article-sidebar.docs > h3{
    color: #fff;
}
.article-sidebar > nav{
    width: calc(100% - 40px);
    position: absolute;
    top: 60px;
    bottom: 14px;
    left: 20px;
    overflow: auto;
}
.article-sidebar > nav > ul{
    width: 100%;
    list-style: none;
    float: left;
    padding-right: 10px;
}
.article-sidebar > nav > ul > li{
    width: 100%;
    float: left;
    margin-top: 4px;
    margin-bottom: 4px;
}
.article-sidebar > nav > ul > li > a{
    display: block;
    position: relative;
    padding: 6px 10px;
    border: 1px solid #fff;
    border-left-size: 6px;
    font-size: 17px;
    color: #fff;
    -webkit-transition: border-left 0.2s;
    -moz-transition: border-left 0.2s;
    -ms-transition: border-left 0.2s;
    -o-transition: border-left 0.2s;
    transition: border-left 0.2s;
}
.article-sidebar > nav > ul > li > a:hover,
.article-sidebar > nav > ul > li > a.active{
    border-left: 8px solid #fff;
}
.article-sidebar .like{
    margin-bottom: 26px;
}

/* social liking */
.like{
    width: 100%;
    float: left;
}
.like div a{
    width: calc(33.33% - 8px);
    margin-right: 12px;
    padding: 65px 0 14px 0;
    background: #000;
    display: block;
    float: left;
    color: #fff;
    text-align: center;
    font-size: 13px;
    position: relative;
    border-top: 2px solid #e7e7e7;
    border-bottom: 2px solid #e7e7e7;
}
.like div a:before{
    position: absolute;
    top: 16px;
    left: 0;
    width: 100%;
    font-size: 33px;
}
.like div a.fb{
    background: #4267b2;
}
.like div a.fb:before{
    content: '\f09a';
    font-family: 'icons', sans-serif;
}
.like div a.tw{
    background: #1da1f2;
}
.like div a.tw:before{
    content: '\f099';
    font-family: 'icons', sans-serif;
}
.like div a.gp{
    background: #db4437;
}
.like div a.gp:before{
    content: '\f30f';
    font-family: 'icons', sans-serif;
}
.like div a:last-child{
    margin-right: 0;
}
.like div a:hover{
    border-color: transparent;
}

/* docs page main */
.article-content{
    width: calc(100% - 320px);
    float: left;
}
.article-content h2{
    width: 100%;
    float: left;
    font-size: 24px;
    margin-top: 20px;
    font-weight: normal;
}
.article-content h3{
    width: 100%;
    float: left;
    font-size: 20px;
    margin-top: 14px;
    font-weight: normal;
}
.article-content p{
    width: 100%;
    float: left;
    margin-top: 10px;
    line-height: 22px;
}
.article-content .img img{
    max-width: 100%;
    height: auto;
}
.article-content .player-example{
    width: 100%;
    float: left;
}
.article-content .dwn{
    display: block;
    width: 100%;
    float: left;
    padding: 10px 20px 10px 50px;
    color: #fff;
    font-size: 17px;
    background: #3cba54;
    margin-top: 10px;
    position: relative;
    -webkit-transition: background 0.2s;
    -moz-transition: background 0.2s;
    -ms-transition: background 0.2s;
    -o-transition: background 0.2s;
    transition: background 0.2s;
}
.article-content .dwn:hover{
    background: #e74c3c;
}
.article-content .dwn:before{
    content: '\f0ed';
    font-family: 'icons', sans-serif;
    font-size: 22px;
    position: absolute;
    top: 9px;
    left: 14px;
}
.article-content .code-box, .article-content .player-example, .article-content .img{
    margin-top: 10px;
}



/* 404 page */
.p404{
    border-top: 12px solid #4286f4;
    padding-top: 46px;
}
.p404 .player-illustration{
    border-color: #3cba54;
    height: 510px;
}
.p404 .player-illustration .ns{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.p404 .player-illustration .ns div{
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: rgb(247, 202, 24);
}
.p404 .player-illustration .ns div:nth-child(2){
    left: 14.285714285714286%;
    background: rgb(25, 181, 254);
}
.p404 .player-illustration .ns div:nth-child(3){
    left: 28.571428571428573%;
    background: rgb(0, 230, 64);
}
.p404 .player-illustration .ns div:nth-child(4){
    left: 42.85714285714286%;
    background: rgb(142, 68, 173);
}
.p404 .player-illustration .ns div:nth-child(5){
    left: 57.142857142857146%;
    background: rgb(240, 52, 52);
}
.p404 .player-illustration .ns div:nth-child(6){
    left: 71.42857142857143%;
    background: rgb(65, 131, 215);
}
.p404 .player-illustration .ns div:nth-child(7){
    left: 85.71428571428572%;
    background: #333;
}
.p404 .player-illustration .ns p{
    position: absolute;
    top: 48%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 22px 80px;
    text-align: center;
}
.p404 .player-illustration .ns p span:first-child{
    letter-spacing: 28px;
    font-size: 180px;
    line-height: 160px;
}
.p404 .player-illustration .ns p span:last-child{
    letter-spacing: 4px;
    font-size: 40px;
    line-height: 50px;
    display: block;
}






/* support */
.support-form{
    width: 100%;
    float: left;
    position: relative;
}
.cover .support-form{
    margin-top: 22px;
}
.support-form input[name="support-field"]{
    display: block;
    width: 100%;
    float: left;
    line-height: 38px;
    padding: 0 12px;
    color: #333;
    border: 1px solid #fff;
    box-shadow: 0 0 5px 0 #fff;
    font-size: 15px;
}
.support-form .support-submit{
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 100%;
    text-align: center;
}
.support-form .support-submit input{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: none;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}
.support-form .support-submit:before{
    content: '\e801';
    font-family: 'icons', sans-serif;
    font-size: 30px;
    color: #3cba54;
    display: inline-block;
    margin-top: 4px;
}

.support-useful-links{
    margin-top: 20px;
}
.support-useful-links > h2{
    width: 100%;
    float: left;
    color: #fff;
    font-weight: normal;
    font-size: 24px;
}
.support-useful-links > div{
    width: 100%;
    float: left;
    margin-top: 3px;
}
.support-useful-links > div > ul{
    width: 100%;
    float: left;
    list-style: none;
}
.support-useful-links > div > ul > li{
    width: 25%;
    display: block;
    float: left;
    margin-top: 11px;
}
.support-useful-links > div > ul > li > a{
    color: #fff;
    font-size: 16px;
    position: relative;
    display: inline-block;
    padding-bottom: 3px;
}
.support-useful-links > div > ul > li > a:before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    border-bottom: 1px dashed #fff;
}
.support-useful-links > div > ul > li > a:hover:before{
    border-bottom-style: solid;
}

.support-contacts article{
    width: 50%;
    padding: 0 50px;
    margin-top: 40px;
    float: left;
}
.support-contacts article h3{
    font-weight: normal;
    width: 100%;
    float: left;
    font-size: 24px;
    padding-bottom: 12px;
    color: #4286f4;
    border-bottom: 1px solid #4286f4;
}
.support-contacts article p{
    width: 100%;
    float: left;
    padding: 20px 0;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1px;
}
.support-contacts article a,
.support-sidebar .ask,
.support-sidebar .email{
    display: inline-block;
    padding: 14px 40px;
    font-size: 18px;
    color: #e74c3c;
    border: 1px solid #e74c3c;
    -webkit-transition: background 0.2s, color 0.2s;
    -moz-transition: background 0.2s, color 0.2s;
    -ms-transition: background 0.2s, color 0.2s;
    -o-transition: background 0.2s, color 0.2s;
    transition: background 0.2s, color 0.2s;
}
.support-contacts article a:hover,
.support-sidebar .ask:hover,
.support-sidebar .email:hover{
    color: #fff;
    background: #e74c3c;
}
.support-contacts article a:before,
.support-sidebar .ask:before,
.support-sidebar .email:before{
    font-size: 22px;
    font-family: 'icons', sans-serif;
    margin-right: 10px;
}
.support-contacts article:first-child a:before,
.support-sidebar .ask:before{
    content: '\f1cd';
    bottom: -1px;
    position: relative;
}
.support-contacts article:last-child a:before,
.support-sidebar .email:before{
    content: '\e800';
}

.tickets-list{
    margin-top: 60px;
}
.tickets-list header p{
    width: 100%;
    float: left;
    line-height: 22px;
    margin-top: 10px;
}
.ticket-brick{
    width: 100%;
    float: left;
    margin-top: 30px;
    background: rgba(235, 235, 235, 0.6);
    padding: 12px 20px;
    position: relative;
}
.ticket-brick > h2{
    width: 100%;
    float: left;
}
.ticket-brick > h2 > a{
    color: #4286f4;
    font-size: 24px;
    font-weight: normal;
    display: block;
    float: left;
    -webkit-transition: color 0.1s;
    -moz-transition: color 0.1s;
    -ms-transition: color 0.1s;
    -o-transition: color 0.1s;
    transition: color 0.1s;
}
.ticket-brick > h2 > a:hover{
    color: #e74c3c;
}
.ticket-brick > span{
    position: absolute;
    top: 18px;
    right: 28px;
    color: #000;
    font-size: 14px;
}
.ticket-brick > p{
    width: 100%;
    float: left;
    margin-top: 6px;
    line-height: 22px;
}
.ticket-brick > div{
    width: 100%;
    float: left;
    border-top: 1px solid #4286f4;
    margin-top: 12px;
    padding-top: 10px;
}
.ticket-brick > div .author{
    float: left;
    line-height: 22px;
}
.ticket-brick > div .author span{
    font-weight: bold;
}
.ticket-brick > div .state{
    float: right;
    color: #fff;
    background: #4286f4;
    display: block;
    padding: 0 6px;
    line-height: 22px;
}
.ticket-brick > div .state.solved{
    background: #3cba54;
}
.ticket-brick > div .state.canceled{
    background: #e74c3c;
}
.ticket-brick > div .replied{
    float: right;
    margin-right: 40px;
    display: block;
    line-height: 22px;
}
.ticket-brick > div .replied:before{
    content: '\e802';
    font-family: 'icons', sans-serif;
    margin-right: 5px;
    color: #3cba54;
    position: relative;
    bottom: -1px;
}

.support-holder{
    overflow: hidden;
}
.support-main{
    width: calc(100% - 320px);
    float: left;
}

.forum-answers > h3{
    width: 100%;
    float: left;
    font-size: 30px;
    font-weight: normal;
    padding: 50px 0 20px 20px;
}
.forum-answers .post .status{
    width: 100%;
    float: left;
    background: #3cba54;
    padding: 10px 20px 10px 56px;
    color: #fff;
    position: relative;
    font-size: 16px;
}
.forum-answers .post .status:before{
    content: '\e805';
    font-family: 'icons', sans-serif;
    position: absolute;
    font-size: 30px;
    top: 3px;
    left: 18px;
}
.post{
    width: 100%;
    float: left;
}
.forum-answers .post:not(:last-child){
    border-bottom: 1px solid #555;
    padding-bottom: 20px;
    margin-bottom: 24px;
}
.post .left{
    width: 130px;
    float: left;
    text-align: center;
}
.forum-answers .post .left{
    width: 100%;
    text-align: left;
    padding: 10px 20px;
    background: #f0f0f0;
}
.post .left figure{
    width: 100%;
    height: 130px;
    background: #FFC840;
    border-radius: 50%;
    margin-top: 12px;
    display: inline-block;
}
.forum-answers .post .left figure{
    width: 50px;
    height: 50px;
    vertical-align: middle;
    margin-top: 0;
}
.post .left .author{
    margin-top: 10px;
    font-size: 16px;
    display: inline-block;
}
.forum-answers .post .left .author{
    vertical-align: middle;
    margin-top: 0;
    margin-left: 10px;
}
.post .left .date{
    margin-top: 10px;
    display: inline-block;
}
.forum-answers .post .left .date{
    float: right;
}
.post .right{
    width: calc(100% - 170px);
    float: right;
}
.forum-answers .post .right{
    width: 100%;
    padding: 0 12px;
}
.post .right p{
    line-height: 22px;
    width: 100%;
    float: left;
    margin-top: 10px;
}
.post .controls{
    width: 100%;
    float: left;
    margin-top: 12px;
    font-size: 14px;
    color: #888;
    text-align: right;
}
.post .controls a{
    padding: 3px 10px;
    border: 1px solid;
    display: inline-block;
    font-size: inherit;
    -webkit-transition: background 0.2s, color 0.2s;
    -moz-transition: background 0.2s, color 0.2s;
    -ms-transition: background 0.2s, color 0.2s;
    -o-transition: background 0.2s, color 0.2s;
    transition: background 0.2s, color 0.2s;
    margin: 0 4px;
}
.post .controls a.edit{
    border-color: #4286f4;
    color: #4286f4;
}
.post .controls a.edit:hover{
    background: #4286f4;
    color: #fff;
}
.post .controls a.remove{
    border-color: #e74c3c;
    color: #e74c3c;
}
.post .controls a.remove:hover{
    background: #e74c3c;
    color: #fff;
}

.create-post.new-q, .create-post.contact-support-team{
    margin-top: 14px;
}
.create-post > h3{
    width: 100%;
    float: left;
    padding: 50px 20px 0 20px;
    font-size: 23px;
    font-weight: normal;
}
.create-post > p, .create-post > form > p, .create-post > form .butts{
    width: 100%;
    float: left;
    margin-top: 10px;
}
.create-post > form > p > button{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    border: none;
    font-size: inherit;
    padding: 0;
    cursor: pointer;
}
.create-post > form > p > button:first-child{
    color: #4286f4;
}
.create-post > form > p > button:last-child{
    color: #e74c3c;
}
.create-post > form .butts button{
    background: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 5px 20px;
    border: 1px solid;
    display: inline-block;
    font-size: inherit;
    -webkit-transition: background 0.2s, color 0.2s;
    -moz-transition: background 0.2s, color 0.2s;
    -ms-transition: background 0.2s, color 0.2s;
    -o-transition: background 0.2s, color 0.2s;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
}
.create-post > form .butts .login{
    border-color: #4286f4;
    color: #4286f4;
    margin-right: 6px;
}
.create-post > form .butts .login.active, .create-post > form .butts .login:hover{
    background: #4286f4;
    color: #fff;
}
.create-post > form .butts .signup{
    border-color: #e74c3c;
    color: #e74c3c;
    margin-left: 6px;
}
.create-post > form .butts .signup.active, .create-post > form .butts .signup:hover{
    background: #e74c3c;
    color: #fff;
}
.create-post.contact-support-team > form > .field input{
    width: 600px;
}
.create-post .tab .field input{
    width: 600px;
}

/*support sidebar*/
.support-sidebar{
    margin-top: 20px;
    width: 300px;
    float: right;
    background: #f0f0f0;
    position: relative;
    z-index: 3;
    padding: 0 14px;
}
.support-sidebar .support-form input[type="text"]{
    border: 1px solid #ddd;
    box-shadow: none;
}
.support-sidebar .support-form .support-submit{
    width: 46px;
}
.support-sidebar > p{
    width: 100%;
    float: left;
    padding: 10px 0;
    font-size: 16px;
}
.support-sidebar .ask, .support-sidebar .email{
    width: 100%;
    padding: 10px 20px;
    margin: 10px 0;
}

/* related */
.related{
    width: 100%;
    float: left;
    padding-top: 14px;
}
.related.popular{
    border-top: 1px solid #aaa;
    margin-bottom: 20px;
}
.related > h2{
    font-weight: normal;
    font-size: 20px;
    width: 100%;
    float: left;
}
.related > ul{
    width: 100%;
    float: left;
    list-style: none;
}
.related > ul > li{
    width: 100%;
    float: left;
    border-bottom: 1px solid #ccc;
    margin-top: 10px;
    padding-bottom: 10px;
}
.related.popular > ul > li:last-child{
    border-bottom: 0;
    padding-bottom: 0;
}
.related > ul > li > a{
    color: #4286f4;
    font-size: 15px;
}
.related > ul > li > a:hover{
    color: #e74c3c;
}

/* just tab */
.tab{
    display: none;
}
.tab.active{
    display: block;
}


/*forms forms*/
.form-message{
    width: 100%;
    float: left;
    padding: 12px 20px;
    color: #fff;
}
.form-message.success{
    background: #019875;
}
.form-message.error{
    background: #CF000F;
}
.field{
    width: 100%;
    float: left;
    margin-top: 14px;
}
.field.rich-text .ql-container, .field.rich-text .ql-toolbar{
    border-color: #aaa;
}
.field.rich-text.focused .ql-container, .field.rich-text.focused .ql-toolbar{
    border-color: #4286f4;
}
.field.rich-text .ql-editor{
    min-height: 180px;
}
.field > input{
    background: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    float: left;
    padding: 0 12px;
    line-height: 36px;
    font-size: 15px;
    border: 1px solid #aaa;
}
.field.big > input{
    line-height: 42px;
    font-size: 17px;
}
.field.error > input{
    border-color: #CF000F;
}
.field > input:focus{
    border-color: #4286f4;
}
.field.error .error, .field .note{
    width: 100%;
    float: left;
    margin-top: 4px;
    padding-left: 3px;
}
.field.error .error{
    color: #CF000F;
}
.field.error .error:before{
    content: '\e806';
    font-family: 'icons', sans-serif;
    color: inherit;
    margin-right: 5px;
}
.field .note{
    color: #888;
    font-size: 13px;
}
.submit{
    display: inline-block;
    margin-top: 14px;
    clear: left;
    color: #3cba54;
    font-size: 18px;
    cursor: pointer;
    -webkit-transition: color 0.2s, background 0.2s;
    -moz-transition: color 0.2s, background 0.2s;
    -ms-transition: color 0.2s, background 0.2s;
    -o-transition: color 0.2s, background 0.2s;
    transition: color 0.2s, background 0.2s;
    position: relative;
}
.submit:before{
    content: '\e805';
    font-family: 'icons', sans-serif;
    font-size: 26px;
    position: absolute;
    top: 8px;
    left: 20px;
}
.submit > input{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: 1px solid #3cba54;
    padding: 10px 30px 10px 58px;
    font-size: inherit;
    color: inherit;
    cursor: inherit;
}
.submit:hover{
    color: #fff;
    background: #3cba54;
}

/* login signup and reset password forms */
.user-form{
    margin-top: 14px;
}
.user-form .field input{
    width: 600px;
}
.user-form .alt{
    display: inline-block;
    margin-left: 10px;
    font-size: 17px;
}
.user-form .forget{ /* forget password */
    width: 100%;
    float: left;
    margin-top: 26px;
    font-size: 17px;
    border-top: 1px solid #ddd;
    padding-top: 10px;
}
.user-form .alt a{
    padding: 6px 20px;
    margin: 0 10px;
    -webkit-transition: background 0.2s, color 0.2s;
    -moz-transition: background 0.2s, color 0.2s;
    -ms-transition: background 0.2s, color 0.2s;
    -o-transition: background 0.2s, color 0.2s;
    transition: background 0.2s, color 0.2s;
}
.user-form.login .alt a{
    border: 1px solid #e74c3c;
    color: #e74c3c;
}
.user-form.login .alt a:hover{
    background: #e74c3c;
    color: #fff;
}
.user-form.signup .alt a{
    border: 1px solid #4286f4;
    color: #4286f4;
}
.user-form.signup .alt a:hover{
    background: #4286f4;
    color: #fff;
}
.user-form.account .avatar{
    font-size: 0;
}
.user-form.account .avatar figure{
    width: 130px;
    height: 130px;
    display: inline-block;
    position: relative;
    overflow: hidden;
    margin-right: 14px;
    border-radius: 50%;
    border: 1px solid #ccc;
    vertical-align: middle;
}
.user-form.account .avatar figure img{
    width: auto;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.user-form.account .avatar div{
    display: inline-block;
    vertical-align: middle;
}
.user-form.account .avatar div button{
    background: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 6px 20px;
    font-size: 15px;
    border: 1px solid #e74c3c;
    color: #e74c3c;
    display: block;
    -webkit-transition: background 0.2s, color 0.2s;
    -moz-transition: background 0.2s, color 0.2s;
    -ms-transition: background 0.2s, color 0.2s;
    -o-transition: background 0.2s, color 0.2s;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
}
.user-form.account .avatar div button:hover{
    background: #e74c3c;
    color: #fff;
}

@media (max-width: 1140px){
    .full-wrapper{
        width: calc(100% - 22px);
    }
}















/*player illustration*/
.player-illustration{
    width: 100%;
    border: 3px solid rgba(255, 255, 255, 0.7);
    height: 340px;
    position: relative;
    overflow: hidden;
    pointer-events: none;
}
.player-illustration .movie{
    position: absolute;
    width: auto;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.25;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    -webkit-animation: player-illustration-movie 30s linear alternate infinite;
    -moz-animation: player-illustration-movie 30s linear alternate infinite;
    -ms-animation: player-illustration-movie 30s linear alternate infinite;
    -o-animation: player-illustration-movie 30s linear alternate infinite;
    animation: player-illustration-movie 30s linear alternate infinite;
}
.player-illustration .big-play-button{
    width: 110px;
    height: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -55px;
    margin-top: -60px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 4px;

}
.player-illustration .big-play-button:before{
    content: '';
    border: 24px solid transparent;
    border-left: 46px solid #e74c3c;
    position: absolute;
    margin-top: -23px;
    margin-left: -17px;
    top: 50%;
    left: 50%;
}
.player-illustration .small-play-button{
    border: 12px solid transparent;
    border-left: 20px solid #fff;
    position: absolute;
    left: 12px;
    bottom: 12px;
}
.player-illustration .time-progress-bar{
    position: absolute;
    bottom: 22px;
    left: 47px;
    width: calc(87% - 167px ); /*60*/
    height: 4px;
    background: #fff;
}
.player-illustration .time-progress-bar span{
    position: absolute;
    left: 40%;
    width: 16px;
    height: 16px;
    top: 50%;
    margin-top: -8px;
    background: #fff;
    border-radius: 50%;
}
.player-illustration .time-log{
    position: absolute;
    bottom: 17px;
    right: calc(67px + 13%);
    font-size: 12px;
    color: #fff;
    line-height: 13px;
    height: 13px;
    width: 40px;
    text-align: center;
}
.player-illustration .volume-progress-bar{
    height: 2px;
    width: 13%;
    position: absolute;
    bottom: 22px;
    right: 55px;
    margin-bottom: 1px;
    background: #fff;
}
.player-illustration .volume-progress-bar span{
    width: 4px;
    height: 10px;
    position: absolute;
    top: 50%;
    left: 70%;
    margin-top: -5px;
    background: #fff;
    border-radius: 4px;
}
.player-illustration .fullscreen-button{
    width: 24px;
    height: 24px;
    border: 2px solid #fff;
    position: absolute;
    bottom: 13px;
    right: 13px;
}

@-khtml-keyframes player-illustration-movie {
    from{
        left: 0;
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        transform: translateX(0);
    }
    to{
        left: 100%;
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}
@-webkit-keyframes player-illustration-movie {
    from{
        left: 0;
        -webkit-transform: translateX(0);
    }
    to{
        left: 100%;
        -webkit-transform: translateX(-100%);
    }
}
@-moz-keyframes player-illustration-movie {
    from{
        left: 0;
        -moz-transform: translateX(0);
    }
    to{
        left: 100%;
        -moz-transform: translateX(-100%);
    }
}
@-ms-keyframes player-illustration-movie {
    from{
        left: 0;
        -ms-transform: translateX(0);
    }
    to{
        left: 100%;
        -ms-transform: translateX(-100%);
    }
}
@-o-keyframes player-illustration-movie {
    from{
        left: 0;
        -o-transform: translateX(0);
    }
    to{
        left: 100%;
        -o-transform: translateX(-100%);
    }
}
@keyframes player-illustration-movie {
    from{
        left: 0;
        transform: translateX(0);
    }
    to{
        left: 100%;
        transform: translateX(-100%);
    }
}


/* highlightjs */
.hljs {
    display: block;
    overflow-x: auto;
    padding: 0.5em;
    background: #333;
    color: white;
}

.hljs-name,
.hljs-strong {
    font-weight: bold;
}

.hljs-code,
.hljs-emphasis {
    font-style: italic;
}

.hljs-tag {
    color: #62c8f3;
}

.hljs-variable,
.hljs-template-variable,
.hljs-selector-id,
.hljs-selector-class {
    color: #ade5fc;
}

.hljs-string,
.hljs-bullet {
    color: #a2fca2;
}

.hljs-type,
.hljs-title,
.hljs-section,
.hljs-attribute,
.hljs-quote,
.hljs-built_in,
.hljs-builtin-name {
    color: #ffa;
}

.hljs-number,
.hljs-symbol,
.hljs-bullet {
    color: #d36363;
}

.hljs-keyword,
.hljs-selector-tag,
.hljs-literal {
    color: #fcc28c;
}

.hljs-comment,
.hljs-deletion,
.hljs-code {
    color: #888;
}

.hljs-regexp,
.hljs-link {
    color: #c6b4f0;
}

.hljs-meta {
    color: #fc9b9b;
}

.hljs-deletion {
    background-color: #fc9b9b;
    color: #333;
}

.hljs-addition {
    background-color: #a2fca2;
    color: #333;
}

.hljs a {
    color: inherit;
}

.hljs a:focus,
.hljs a:hover {
    color: inherit;
    text-decoration: underline;
}