@import url('https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i');
@import url('https://fonts.googleapis.com/css?family=Oswald:200,300,400,500,600,700');

body,
html { height: 100%;}

body{
	background: #EEEEEE;
	color: #1C1C1E;
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	margin: 0;
	overflow-x: hidden;
	padding: 0;
}

header{
  background-color: #1C1C1E;
  height: 70px;
  padding: 5px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2;
}

h1, h2, h3,h4,h5{
  /*font-family: 'Oswald', sans-serif;*/
	margin: 0;
	padding: 0;
}

a{
  color: #777777;
  text-decoration: none;
}

a:hover{
  color: #4884CA;
  text-decoration: none;
}

hr{
  background: #4884CA;
  border: none;
  height: 1px;
  margin: 20px 0;
  width: 100;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #BBB;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #BBB;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #BBB;
}
:-moz-placeholder { /* Firefox 18- */
  color: #BBB;
}

.no-margin{
  margin: 0px !important;
}

.no-padding {
  padding: 0px !important;
}

.no-padding-r {
  padding-right: 0px;
}

.no-display{
  display: none;
}

.overflow-h{
  overflow: hidden !important;
}

.nav .open > a, 
.nav .open > a:hover, 
.nav .open > a:focus {background-color: transparent;}

/*--------------------------------*/
/*           Scrollbar            */
/*--------------------------------*/



.scrollbar::-webkit-scrollbar-track
{
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  border-radius: 10px;
  background-color: #1C1C1E;
}

.scrollbar::-webkit-scrollbar
{
  width: 8px;
  background-color: #1C1C1E;
}

.scrollbar::-webkit-scrollbar-thumb
{
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
  background-color: #4884CA;
}

/*--------------------------------*/
/*           Content              */
/*--------------------------------*/


.content-page{
  padding-top: 100px;
}

.side-left{
  display: block !important;
  position: relative;
}

.post-box{
  width: 100%;
  background: #FFF;
  border-radius: 5px;
  margin-bottom: 10px;
  padding: 0px;
  position: relative;
  transition: all 0.5s;
  z-index: 1;
}

.post-box-title{
  height: 70px;
  padding: 20px 0 20px 80px;
  position: relative;
}

.post-box-title h2{
  font-size: 15px;
  font-weight: 500;
}

.post-box-title h3{
  color: #4884CA;
  font-size: 15px;
  font-weight: 300;
}

.post-options{
  position: absolute;
  right: 10px;
  top: 10px;
}

.post-options span{
  color: #4884CA;
  cursor: pointer;
  display: block;
  font-size: 20px;
  font-weight: 700;
}

.post-options:hover .tooltipMenu{
  visibility: visible;
  cursor: pointer;
}


.tooltipMenu{
  background: #F3F5F9;
  border-radius: 5px;
  box-shadow: 5px 5px 10px #CCC;
  padding: 10px 0;
  width: 150px;
}

.tooltipMenu ul, .tooltipMenu ul li{
  list-style: none;
  margin: 0;
  padding: 0;
}

.tooltipMenu ul li{
  color: #1C1C1E;
  padding: 10px 20px 10px 20px;
  font-family: sans-serif;
  font-size: 15px;
  width: 100%;
}


.tooltipMenu ul li:hover{
  color: #4884CA;
  cursor: pointer;
}


.tooltipMenu {
  visibility: hidden;
  position: absolute;
  z-index: 1;
}


.rightSide {
  left: 90%;
  top: 15%;
}

.tooltipMenu::after {
    content: " ";
    position: absolute;
    border-width: 10px;
    border-style: solid;
}

.rightSide.tooltipMenu::after {
    right: 100%;
    top: 5%;
    border-color: transparent #F3F5F9 transparent transparent;
}

.pagination ul li {
  display: inline-block;
}

.pagination ul li a, .pagination ul li span {
  color: #4884CA;
  float: left;
  padding: 8px 16px;
  text-decoration: none;
  transition: background-color .3s;
  border: 1px solid #ddd;
  margin: 0;
}

.pagination li.active {
  background-color: #4884CA;
  border: 1px solid #4884CA;
}

.pagination li.active a, .pagination li.active span{
  color: #FFF;
}


.post-user{
  background: rgba(72,132,202,1);
  background: -moz-linear-gradient(top, rgba(72,132,202,1) 0%, rgba(44,91,150,1) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(72,132,202,1)), color-stop(100%, rgba(44,91,150,1)));
  background: -webkit-linear-gradient(top, rgba(72,132,202,1) 0%, rgba(44,91,150,1) 100%);
  background: -o-linear-gradient(top, rgba(72,132,202,1) 0%, rgba(44,91,150,1) 100%);
  background: -ms-linear-gradient(top, rgba(72,132,202,1) 0%, rgba(44,91,150,1) 100%);
  background: linear-gradient(to bottom, rgba(72,132,202,1) 0%, rgba(44,91,150,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4884ca', endColorstr='#2c5b96', GradientType=0 );
  left: 0;
  position: absolute;
  top: 0;
  height: 100%;
  max-height: 70px;
  width: 70px;
  border-top-left-radius: 5px;
  overflow: hidden;
}


.post-user:before {
  border-left: 70px solid transparent;
  border-top-left-radius: 5px;
  border-top: 70px solid #FFF;
  content: '';
  left: 0;
  position: absolute;
  top: 0;
  width: 0;
}

.post-user-image{
  border: 2px solid #FFF;
  width: 50px;
  height: 50px;
  background-color: #1C1C1E;
  border-radius: 50%;
  color: #FFF;
  font-size: 20px;
  font-weight: 500;
  left: 10px;
  letter-spacing: -1px;
  overflow: hidden;
  padding: 9px;
  position: absolute;
  text-align: center;
  top: 10px;
}

.post-box-image img{
  width: 100%;
}

.post-box-text{
  padding: 10px 20px;
  position: relative;
}

.post-box-text h2{
  color: #1C1C1E;
  font-size: 18px;
  font-weight: 500;
}

.post-box-text p{
  color: #777777;
  font-size: 14px;
  font-weight: 300;
}

.post-box-text p a{
  color: #4884CA;
  font-weight: 500;
}

.post-box-social{
  padding: 10px 20px;
  position: relative;
}

.post-box-social ul, .post-box-social ul li{
  margin: 0;
  padding: 0;
  list-style: none;
}

.post-box-social ul li{
  display: inline-block;
  padding: 0 20px 0 0;
  vertical-align: top;
}

.post-box-social ul li .fas{
  color: #FF0000;
}

.post-comments{
  padding: 10px;
}

.post-comments form textarea.form-control{
  max-height: 40px;
}

ul.comments{
  list-style: none;
  margin: 0;
  padding: 10px;
  width: 100%;
}

ul.comments li{
  list-style: none;
  margin: 5px 0;
  padding: 0;
  width: 100%;
}

.comment-user-image{
  border: 2px solid #FFF;
  width: 40px;
  height: 40px;
  background-color: #1C1C1E;
  border-radius: 50%;
  color: #FFF;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -1px;
  margin-right: 5px;
  max-width: 40px;
  padding: 5px;
  text-align: center;
  vertical-align: text;
}

.comment-text{
  background-color: #eff1f3;
  border-radius: 5px;
  font-size: 13px;
  line-height: 16px;
  padding: 10px;
}

#comment-form{
  margin-bottom: 10px;
}


.post-input{
  color: #777777;
  padding: 10px;
}

#post-input-open{
  cursor: pointer;
  min-height: 50px;  
  width: 100%;
}

#post-input-form{
  display: none;
}

.post-input input[type="text"]{
  background: #FFF;
  border: none;
  border-bottom: 1px solid #BBBBBB;
  border-radius: 0;
  color: #777777;
  height: 50px;
  width: 100%;
}

.post-input select{
  background: #FFF;
  border: none;
  border-bottom: 1px solid #BBBBBB;
  border-radius: 0;
  color: #777777;
  margin: 5px 0;
  height: 50px;
  width: 100%;
}

.post-input textarea{
  background: #FFF;
  border-radius: 0;
  color: #777777;
  margin: 5px 0;
  min-height: 100px;
  width: 100%;
}

#post-input-media ul{
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

#post-input-media ul li{
  list-style: none;
  display: inline-block;
  border-left: 1px solid #BBB;
  cursor: pointer;
  margin: 0;
  padding: 0 5px 0 5px;
  vertical-align: top;
}

#post-input-media ul li:first-child{
  border: none;
}

#post-input-media ul li i{
  font-size: 20px;
}

#post-input-media .file-caption-main .btn-primary{
  border: none;
  background: #CCC;
}

#post-input-media .file-caption-main .form-control{
  height: 36px;
}

#post-input-media .file-caption-main .file-caption{
  height: 39px;
}

.tab-media:hover i{
  color: #4884CA;
}

.input-media{
  display: none;
}

.side-right{
  position: relative;
}


.colum-box{
  background: #FFF;
  border-radius: 5px;
  margin-bottom: 10px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.colum-box h2{
  color: #1C1C1E;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
}

.side-left .user-profile{
  background-color: #4884CA;
  width: 100%;
  height: 80px;
  padding: 10px;
  position: absolute;
  top: 0;
  left: 0;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.user-profile-img{
  background-color: #1C1C1E;
  border-radius: 50%;
  border: 2px solid #FFF;
  color: #FFF;
  display: inline-block;
  font-size: 20px;
  font-weight: 500;
  height: 50px;
  letter-spacing: -1px;
  margin-right: 10px;
  max-width: 50px;
  overflow: hidden;
  padding: 9px;
  text-align: center;
  width: 50px;
  vertical-align: middle;
  max-width: 30%;
}

.user-profile-text{
  display: inline-block;
  vertical-align: middle;
  max-width: 65%;
}

.user-profile-text h2{
  color: #FFF;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -1px;
  margin: 0;
  padding: 0;
  text-align: left;
}

.user-profile-text h3{
  color: #000;
  font-weight: 300;
  font-size: 12px;
  margin: 0;
  padding: 0;
  text-align: left;
}

.user-menu{
  padding-top: 100px;
}

.user-menu ul li{
  list-style: none;
  margin: 0;
  padding: 0;
}

.post-colum-box-item{
  margin-bottom: 20px;
}

.post-colum-box-img{
  border: 2px solid #4884CA;
  max-width: 50px;
  width: 50px;
  height: 50px;
  background-color: #1C1C1E;
  border-radius: 50%;
  color: #FFF;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -1px;
  overflow: hidden;
  padding: 9px;
  text-align: center;
}

.post-colum-box-text{
  text-align: left;
}

.post-colum-box-text span{
  display: block;
  font-size:  12px;
  color: #4884CA;
  text-align: left;
}

.post-colum-box-text h2{
  display: block;
  font-size:  14px;
  color: #1C1C1E;
  margin: 0px;
  padding: 0px;
  text-align: left;
}

.post-colum-box-text p{
  display: block;
  font-size:  12px;
  color: #AAAAAA;
  margin: 0px;
  padding: 0px;
  text-align: left;
}

.box-sticky{
  position: -webkit-sticky;
  position: sticky;
  top: 90px;
}

.box-login{
 
}

#resetpass-form, #resetpass-form-m{
  display: none;
}


.form-group{
  margin-bottom: 10px;
  padding: 0;
}

.form-control{
  background: #F3F5F9;
  border: none;
  border-radius: 5px;
  font-size: 0.8rem;
}

.form-control span{
  font-size: 12px;
}

.form-control span a{
  text-decoration: underline;
}

.form-control-check{
  background: #F3F5F9;
  border: none;
  border-radius: 5px;
}

.form-submit, .btn-action{
  background: rgba(72,132,202,1);
  background: -moz-linear-gradient(top, rgba(72,132,202,1) 0%, rgba(44,91,150,1) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(72,132,202,1)), color-stop(100%, rgba(44,91,150,1)));
  background: -webkit-linear-gradient(top, rgba(72,132,202,1) 0%, rgba(44,91,150,1) 100%);
  background: -o-linear-gradient(top, rgba(72,132,202,1) 0%, rgba(44,91,150,1) 100%);
  background: -ms-linear-gradient(top, rgba(72,132,202,1) 0%, rgba(44,91,150,1) 100%);
  background: linear-gradient(to bottom, rgba(72,132,202,1) 0%, rgba(44,91,150,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4884ca', endColorstr='#2c5b96', GradientType=0 );
  border: none;
  border-radius: 5px;
  color: #FFF;
  cursor: pointer;
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 10px;
  padding: 10px 10px;
  text-align: center;
  transition: all 1s;
  width: 100%;
}

.form-submit:hover, .btn-action:hover{
  background: rgba(44,91,150,1);
}

.modal-content .form-submit, .modal-content .btn-action{
  margin-top: 0px;
}

.bt-max-wd{
  max-width: 150px;
}

.btn-secondary{
  border: none;
  border-radius: 5px;
  color: #FFF;
  cursor: pointer;
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 10px 10px;
  text-align: center;
}

/*-------------------------------*/
/*           Modals              */
/*-------------------------------*/

.modal-content{
  border: none;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.modal-header{
  background: #4884CA;
  color: #FFF;
}

.modal-header .close{
  color: #FFF;
  text-shadow: none;
  opacity: 1;
}




/*-------------------------------*/
/*           Wrappers            */
/*-------------------------------*/

#wrapper {
  padding-left: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#wrapper.toggled {
  padding-left: 220px;
}

#sidebar-wrapper {
  z-index: 1000;
  left: 220px;
  width: 0;
  height: 100%;
  margin-left: -220px;
  overflow-y: auto;
  overflow-x: hidden;
  background: #1a1a1a;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#sidebar-wrapper::-webkit-scrollbar {
  display: none;
}

#wrapper.toggled #sidebar-wrapper {
  width: 220px;
}

#page-content-wrapper {
  width: 100%;
}

#wrapper.toggled #page-content-wrapper {
  position: absolute;
  margin-right: -220px;
}

/*-------------------------------*/
/*        nav General            */
/*-------------------------------*/

.ham-ico{
  display: none;
  position: absolute;
  height: 50px;
  width: 50px;
  padding: 10px;
  color: #FFF;
}

.ham-ico a{
  font-size: 30px;
  color: #FFF;
}

ul.nav-general{
  list-style: none;
  margin: 0;
  margin-left: 50px;
  padding: 0;
}

ul.nav-general li{
  display: inline-block;
  list-style: none;
  margin: 0;
  padding: 0;
}

ul.nav-general li a{
  display: block;
  padding: 20px 10px;
  color: #FFF;
  font-size: 12px;
  position: relative;
  text-transform: uppercase;
}

ul.nav-general li a:hover{
  color: #4884CA;
}

ul.nav-general li a:before {
    content: "";
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 0;
    height: 2px;
    background: #4884CA;
    transition-property: left,right;
    transition-duration: .3s;
    transition-timing-function: ease-out;
}

ul.nav-general li:hover a:before {
    left:0;
    right: 0;
}



/*-------------------------------*/
/*     Sidebar nav styles        */
/*-------------------------------*/

.sidebar-nav {
  position: absolute;
  top: 0;
  width: 220px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-nav li {
  position: relative; 
  line-height: 20px;
  display: inline-block;
  width: 100%;
}

.sidebar-nav li:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
  width: 3px;
  background-color: #1c1c1c;
  -webkit-transition: width .2s ease-in;
  -moz-transition:  width .2s ease-in;
  -ms-transition:  width .2s ease-in;
  transition: width .2s ease-in;

}
.sidebar-nav li:first-child a {
  color: #fff;
  background-color: #1c1c1c;
}

.sidebar-nav li:nth-child(2):before {
  background-color: #FF0000;   
}
.sidebar-nav li:nth-child(3):before {
  background-color: #FF0000;   
}
.sidebar-nav li:nth-child(4):before {
  background-color: #FF0000;   
}
.sidebar-nav li:nth-child(5):before {
  background-color: #FF0000;   
}
.sidebar-nav li:nth-child(6):before {
  background-color: #FF0000;   
}
.sidebar-nav li:nth-child(7):before {
  background-color: #FF0000;   
}
.sidebar-nav li:nth-child(8):before {
  background-color: #FF0000;   
}
.sidebar-nav li:nth-child(9):before {
  background-color: #FF0000;   
}
.sidebar-nav li:nth-child(10):before {
  background-color: #FF0000;   
}
.sidebar-nav li:hover:before,
.sidebar-nav li.open:hover:before {
  width: 100%;
  -webkit-transition: width .2s ease-in;
  -moz-transition:  width .2s ease-in;
  -ms-transition:  width .2s ease-in;
  transition: width .2s ease-in;

}

.sidebar-nav li a {
  display: block;
  color: #ddd;
  text-decoration: none;
  padding: 10px 15px 10px 30px;    
}

.sidebar-nav li a:hover,
.sidebar-nav li a:active,
.sidebar-nav li a:focus,
.sidebar-nav li.open a:hover,
.sidebar-nav li.open a:active,
.sidebar-nav li.open a:focus{
  color: #fff;
  text-decoration: none;
  background-color: transparent;
}

.sidebar-nav > .sidebar-brand {
  height: 130px;
  font-size: 20px;
  margin-bottom: 30px;
}
.sidebar-nav .dropdown-menu {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
  border-radius: 0;
  border: none;
  background-color: #222;
  box-shadow: none;
}

/*-------------------------------*/
/*       Hamburger-Cross         */
/*-------------------------------*/

.hamburger {
  position: fixed;
  top: 10px;  
  z-index: 999;
  display: block;
  width: 32px;
  height: 32px;
  margin-left: 15px;
  background: transparent;
  border: none;
}
.hamburger:hover,
.hamburger:focus,
.hamburger:active {
  outline: none;
}
.hamburger.is-closed:before {
  content: '';
  display: block;
  width: 100px;
  font-size: 14px;
  color: #fff;
  line-height: 32px;
  text-align: center;
  opacity: 0;
  -webkit-transform: translate3d(0,0,0);
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-closed:hover:before {
  opacity: 1;
  display: block;
  -webkit-transform: translate3d(-100px,0,0);
  -webkit-transition: all .35s ease-in-out;
}

.hamburger.is-closed .hamb-top,
.hamburger.is-closed .hamb-middle,
.hamburger.is-closed .hamb-bottom,
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-middle,
.hamburger.is-open .hamb-bottom {
  position: absolute;
  left: 0;
  height: 4px;
  width: 100%;
}
.hamburger.is-closed .hamb-top,
.hamburger.is-closed .hamb-middle,
.hamburger.is-closed .hamb-bottom {
  background-color: #FFF;
}
.hamburger.is-closed .hamb-top { 
  top: 5px; 
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-closed .hamb-middle {
  top: 50%;
  margin-top: -2px;
}
.hamburger.is-closed .hamb-bottom {
  bottom: 5px;  
  -webkit-transition: all .35s ease-in-out;
}

.hamburger.is-closed:hover .hamb-top {
  top: 0;
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-closed:hover .hamb-bottom {
  bottom: 0;
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-middle,
.hamburger.is-open .hamb-bottom {
  background-color: #FFF;
}
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-bottom {
  top: 50%;
  margin-top: -2px;  
}
.hamburger.is-open .hamb-top { 
  -webkit-transform: rotate(45deg);
  -webkit-transition: -webkit-transform .2s cubic-bezier(.73,1,.28,.08);
}
.hamburger.is-open .hamb-middle { display: none; }
.hamburger.is-open .hamb-bottom {
  -webkit-transform: rotate(-45deg);
  -webkit-transition: -webkit-transform .2s cubic-bezier(.73,1,.28,.08);
}
.hamburger.is-open:before {
  content: '';
  display: block;
  width: 100px;
  font-size: 14px;
  color: #fff;
  line-height: 32px;
  text-align: center;
  opacity: 0;
  -webkit-transform: translate3d(0,0,0);
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-open:hover:before {
  opacity: 1;
  display: block;
  -webkit-transform: translate3d(-100px,0,0);
  -webkit-transition: all .35s ease-in-out;
}

/*-------------------------------*/
/*            Overlay            */
/*-------------------------------*/

.overlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,.8);
  z-index: 10;
}

ul.nav-social{
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: right;
}

ul.nav-social li{
	margin: 0;
	padding: 0;
  margin-left: 10px;
  list-style: none;
  display: inline-block;
}

ul.nav-social li a{
  background-color: #262626;
  border-radius: 50%;
  color: #FFF;
  font-size: 14px;
  display: block;
  padding: 10px;
  text-align: center;
  width: 40px;
  height: 40px;
}

/*-------------------------------*/
/*            Play area          */
/*-------------------------------*/

.bt-play{
  background: rgba(72,132,202,1);
  background: -moz-linear-gradient(top, rgba(72,132,202,1) 0%, rgba(44,91,150,1) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(72,132,202,1)), color-stop(100%, rgba(44,91,150,1)));
  background: -webkit-linear-gradient(top, rgba(72,132,202,1) 0%, rgba(44,91,150,1) 100%);
  background: -o-linear-gradient(top, rgba(72,132,202,1) 0%, rgba(44,91,150,1) 100%);
  background: -ms-linear-gradient(top, rgba(72,132,202,1) 0%, rgba(44,91,150,1) 100%);
  background: linear-gradient(to bottom, rgba(72,132,202,1) 0%, rgba(44,91,150,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4884ca', endColorstr='#2c5b96', GradientType=0 );
  color: #FFF;
  cursor: pointer;
  height: 100%;
  padding: 10px;
  position: absolute;
  right: 0;
  top: 0;
  text-align: center;
  width: 300px;
}

.bt-play:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  border-top: 70px solid #1C1C1E;
  border-right: 70px solid transparent;
  width: 0;
}

.bt-play-icon{
  display: inline-block;
  margin-right: 10px;
  font-size: 40px;
}

.bt-play-text{
  display: inline-block;
  text-align: left;
}

.bt-play-text h2{
  font-size: 18px;
  font-weight: 700;
}

.bt-play-text p{
  color: #FFF;
}

#sidebar-play {
    background: #1C1C1E;
    color: #fff;
    transition: all 0.3s;
    min-width: 400px;
    max-width: 400px;
    margin-right: -400px;
    height: 100vh;
    overflow:hidden;
    padding: 20px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 11;
}

#sidebar-play.active {
    margin-right: 0px;
}

.sidebar-title{
  height: 8vh;
  padding-bottom: 20px; 
  position: relative;
  width: 100%;
}

.sidebar-title h2{
  color: #4884CA;
  font-size: 25px;
  font-weight: 500;
}

.sidebar-title p{
  color: #FFF;
}

#sidebar-close{
  color: #FFF;
  cursor: pointer;
  font-size: 30px;
  position: absolute;
  right: 10px;
  text-align: right;
  top:0;
}

.video-playlist{
  height: 90vh;
  overflow:hidden;
  overflow-y: scroll;
  padding-right: 10px;
}


/*-------------------------------*/
/*            LIVE EVENT         */
/*-------------------------------*/

.section-live{
  background: url('../img/back_live.png');
  background-size: cover;
  background-position: center center;
  color: #FFF;
  height: auto;
  margin-top: -30px;
  margin-bottom: 20px;
  padding: 20px 0; 
  position: relative;
  text-align: center;
}

.section-live h2{
    color: #FFF;
    font-size: 25px;
    font-weight: 500;
    margin: 0 auto;
    width: 90%;
}

.section-live-content{
  position: relative;
}

.section-live-video{
  margin-top: 20px;
}

.live-icon{
  background-color: #FF0000;
  border-radius: 2px;
  color: #FFF;
  font-size: 15px;
  font-weight: 500;
  left: 15px;
  padding: 5px;
  position: absolute;
  top: 5px;
  text-align: center;
}


.live-event{
  background: #111;
	margin-top: 50px;
	margin-bottom: 20px;
	padding: 20px 0 0 0;
}

.live-event-header{
	background: #333333;
	margin: 0;
}

.live-event-title{
	padding: 50px 0;
	height: 170px;
	position: relative;
}

.live-event-title h3{
	font-size: 30px;
	font-weight: 300;
}

.live-event-image {
  background-position: top center;
  background-size: cover;
  height: 170px;
}

.live-event-live {
	background: #FF0000;
	color: #FFF;
	font-size: 30px;
	font-weight: 500;
	padding: 50px 0;
	position: relative;
	height: 170px;
}

.live-event-live span{
	display: block;
	font-size: 14px;
	font-weight: 300;
}

.triangle-bottomright-red {
	width: 0;
	height: 0;
	border-bottom: 170px solid #FF0000;
	border-left: 170px solid transparent;
	position: absolute;
	top:0;
	left: -170px;
}

.triangle-bottomright-gray {
	width: 0;
	height: 0;
	border-bottom: 170px solid #333;
	border-left: 170px solid transparent;
	position: absolute;
	top:0;
	left: -170px;
}

.live-event-media{
	background: #1A1C1E;
}

.live-event-details{	
  color: #CCC;
  padding: 20px;
  text-align: center;
}

.live-chat{
	height: 500px;
}

.live-event-details .social {
	margin: 10px auto 0px auto;
	display: table;
}


/*-------------------------------*/
/*         HOME CONTENT          */
/*-------------------------------*/


.section-fluid{
  background: #111;
  padding: 20px 0;
  margin: 20px 0; 
}

.section-header{
  border-bottom: 2px solid #e4e3f0;
  position: relative;
  margin: 30px 0;
  text-align: left;
}

.section-title{
  position: relative;
  width: 100%;
  margin:30px 0 10px 0;
}

.section-title h4{
  margin-bottom: 20px;
  position: relative;
  text-align: center;
  width: 100%;
}

.section-title h4::before{
  content: '';
  background: #555;
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 50%;
  width: 100%;
  height: 1px;
  z-index: 0;
}

.section-title h4 span{
  color: #fff;
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  padding: 5px 10px;
  position: relative;
  text-transform: uppercase;
  transform: skewX(-15deg);
  z-index: 1;
}

.section-fluid .section-title h4::before{
  background: #DFDFDF;
}



.section-icon{
  position: absolute;
  right: 0;
  top: 5px;
  font-size: 16px;
}

.section-mark{
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  color: #FFF;
  font-size: 25px;
  height: 50px;
  left: 20px;
  opacity: .9;
  padding: 10px;
  position: absolute;
  text-align: center;
  top: 20px;
  width: 50px;
}

.section-mark i{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.back-video{ background-color: #FF0000; }
.text-video{ color: #FF0000; }

.back-post{ background-color: #FF0000; }
.text-post{ color: #4884CA; }

.back-event{ background-color: #FF0000; }
.text-event{ color: #FF0000; }

.first-video{
  background: #000;
  height: 600px;
  line-height: 0;
  position: relative;
  overflow: hidden;
}

.first-video img{
  left: -9999px;
  margin: 0 auto;
  min-width: 300px;
  position: absolute;
  right: -9999px;
  width: 100%;
}

.first-post{
  background: #000;
  height: 290px;
  line-height: 0;
  max-height: 290px;
  position: relative;
  overflow: hidden;
}

.first-post img{
  margin: 0 auto;
  position: absolute;
  left: -9999px;
  min-width: 620px;
  right: -9999px;
  width: 100%;
}

.first-post-section{
  background: #000;
  height: 600px;
  line-height: 0;
  max-height: 600px;
  position: relative;
  overflow: hidden;
}

.first-post-section img{
  margin: 0 auto;
  position: absolute;
  left: -9999px;
  min-width: 560px;
  right: -9999px;
  width: 100%;
}

.first-event{
  margin-top: 20px;
}

.first-content-text{
  background-image: -moz-linear-gradient(to bottom,rgba(0,0,0,0) 0, rgba(0,0,0,0.6) 50%, rgba(0,0,0,.9) 100%);
  background-image: -ms-linear-gradient(to bottom,rgba(0,0,0,0) 0, rgba(0,0,0,0.6) 50%, rgba(0,0,0,.9) 100%);
  background-image: -o-linear-gradient(to bottom,rgba(0,0,0,0) 0, rgba(0,0,0,0.6) 50%, rgba(0,0,0,.9) 100%);
  background-image: -webkit-gradient(linear, center top, center bottom, from(rgba(0,0,0,0)), to(rgba(0,0,0,0.9)));
  background-image: -webkit-linear-gradient(to bottom,rgba(0,0,0,0) 0, rgba(0,0,0,0.6) 50%, rgba(0,0,0,.9) 100%);
  background-image: linear-gradient(to bottom,rgba(0,0,0,0) 0, rgba(0,0,0,0.6) 50%, rgba(0,0,0,.9) 100%);
  bottom: 0;
  left: 0;
  padding: 15px;
  padding-top: 100px;
  position: absolute;
  width: 100%;
  text-align:left;
}

.first-post .first-content-text{
  padding-top: 100px;
}

.first-post-section .first-content-text{
  padding-top: 200px;
}

.first-content-date{
  margin: 10px 0 5px 0;
  width: 100%;
}

.first-content-date span:first-child{
  font-weight: 700;
  text-transform: uppercase;
}

.first-content-date span:nth-child(2){
  color: #dfdfdf;
  display: inline-block;
  font-size: .9em;
  font-weight: 400;
  line-height: 1;
  margin-left: 5px;
}

.first-content-text h2{
  color: #fff;
  font-size: 3.3rem;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: .95;
  margin-right: 10%;
  width: 90%;
}

.first-content-text p{
  color: #eee;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.4;
  padding-top: 10px;
  width: 100%;
}

.first-post .first-content-text h2{
  font-size: 1.8rem;
  line-height: 1.1;
  margin-right: 10%;
  width: 90%;
}

.second-post{
  position: relative;
  height: 300px;
}

.second-post a{
  text-decoration: none;
}

.second-post-img{
  background: #000;
  height: 200px;
  line-height: 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-height: 200px;
}

.second-post-img img{
  margin: 0 auto;
  position: absolute;
  left: -9999px;
  right: -9999px;
  width: 100%;
}

.second-post-text{
  padding: 10px 0;
}

.second-post .section-mark{
  font-size: 15px;
  height: 30px;
  padding: 10px;
  width: 30px;
}

.second-post h2{
  color: #000;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.1;
  width: 100%;
}

.third-post, .video-list{
  text-align: left;
  margin-bottom: 20px;
}

.third-post-img, .video-list-img{
  background: #000;
  line-height: 0;
  position: relative;
  overflow: hidden;
}

.third-post-img img, .video-list-img img{
  width: 100%;
}

.third-post h2, .video-list h2{
  color: #000;
  text-decoration: none;
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 1.1;
  width: 100%;
}


.third-post .first-content-date span:first-child,{
  font-size: .8em;
}

.third-post .first-content-date span:nth-child(2){
  color: #333;
  font-size: .8em;
}

.video-list .first-content-date span:first-child,{
  font-size: .8em;
}

.video-list .first-content-date span:nth-child(2){
  font-size: .8em;
}

.first-video-list{
  background: #000;
  line-height: 0;
  overflow: hidden;
  height: 443px;
}

.first-video-list img{
  margin: 0 auto;
  position: absolute;
  left: -9999px;
  right: -9999px;
  width: 100%;
  min-width: 744px;
}

.video-list a, .video-list a:hover{
  text-decoration: none;
}

.video-list h2{
  color: #FFF;
  font-size: 18px;
  font-weight: 300;
}

.video-list .section-mark{
  font-size: 15px;
  height: 30px;
  padding: 10px;
  width: 30px;
}

#banner-top-video{
  border: none;
  margin: 0px;
  margin-top: 20px;
}

.insta-post{
  position: relative;
  height: 250px;
}

.insta-post a{
  text-decoration: none;
}

.insta-post-img{
  background: #000;
  height: 200px;
  line-height: 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-height: 200px;
}

.insta-post-img img{
  margin: 0 auto;
  position: absolute;
  left: -9999px;
  right: -9999px;
  width: 100%;
}

.insta-post-text{
  padding: 10px 0;
}

.insta-post .section-mark{
  font-size: 15px;
  height: 30px;
  padding: 10px;
  width: 30px;
}

.insta-post h2{
  color: #000;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.1;
  width: 100%;
}

.insta-post .first-content-date span:nth-child(2){
  color: #333;
}

.post-content{
  background: #FFF;
  border-radius: 5px;
  margin-top: -200px;
  padding-top: 30px;
  padding-bottom: 20;
}

.post-header{
  margin-bottom: 30px;
  padding-bottom: 20px;
  width: 100%;
  border-bottom: 1px solid #4884CA;
}

.post-header h3{
    margin-bottom: 10px;
    width: 100%;
}

.post-header h3 a span{
    background: none;
    color: #4884CA;
}

.post-header h1{
    color: #000;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.1;
    text-transform: uppercase;
}

.post-header a{
  display: block;
  margin-bottom: 10px;
}

.post-header a span{
    background: none;
    color: #4884CA;
    font-weight: 500;
}

.post-header a:hover{
  color: #777777;
}

.post-content .post-box-social{
  text-align: right;
}



.post-header span.post-abstract{
    color: #555;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.55;
    margin-top: 15px;
    width: 100%;
}

.post-header .post-author{
    color: #999;
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    margin: 8px 0 0 0px;
    width: 100%;
}

.post-image{
    line-height: 0;
    margin-bottom: 30px;
    text-align: center;
    width: 100%;
}

.post-image img{
  border-radius: 5px;
  max-width: 100%;
}

.post-user-detail{
  height: 50px;
  margin-bottom: 20px;
  padding: 20px 0 20px 80px;
  position: relative;
}

.post-user-detail .post-user-image{
  top:0;
  left: 20px;
}

.post-text{
    text-align: justify;
}

.post-text img{
      max-width: 100%;
}

.posts-related{
  margin-top: 20px;
  padding: 0;
}

.posts-related h2{
  border-bottom: 1px solid #4884CA;
  color: #000;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin: 30px 0;
  padding-bottom: 20px;
  text-transform: uppercase;
  width: 100%;
}

.post-related{
  background: #FFF;
  border-radius: 5px;
  min-height: 320px;
  overflow: hidden;
}

.post-related-img{
  width: 100%;
  height: 200px;
}

.post-related-img img{
  max-width: 100%;
}

.post-related-txt{
  padding: 10px;
}

.post-related-txt a{
  display: block;
  margin-bottom: 10px;
}

.post-related-txt a span{
    background: none;
    color: #4884CA;
    font-weight: 500;
}

.post-related-txt a:hover{
  color: #777777;
}

.post-relation .section-title{
    margin: 0 0 20px 0;
}

.post-item-list{
  margin-bottom: 20px;
}

.post-item-list a{
  text-decoration: none;
}

.post-item-list h2{
    color: #222;
    font-size: 2.5em;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.1;
    width: 100%;
}

.post-item-list p{
    color: #555;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.4;
    margin-top: 10px;
    width: 100%;
}


footer{
  background-color: #111;
  text-align: center;
  margin-top: 20px;
  padding: 20px 0 0 0 !important;
}

footer ul.nav-social{
  list-style: none;
  margin: 20px 0;
  padding: 0;
  text-align: center;
}

footer ul.foot-menu{
    text-align: center;
    width: 100%;
    margin: 20px 0;
    padding: 0;
}

footer ul li:first-child {
    margin-left: 0;
}

footer ul li {
    display: inline-block;
    margin: 0 0 10px 20px;
}

footer ul.foot-menu li a{
    color: #888;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
}

footer ul.foot-menu li a:hover{
    color: #FFF;
}

.foot-copy{
  background-color: #000;
  color: #FFF;
  padding: 20px 0;
}

.youmax-video-modal{
   left: 50%; 
   position:absolute; 
   top: 20%;
   transform: translateX(-50%);
   width:50%; 
}