
@import url("../../static/fonts/awesome.css");
body {
  background-color: #0f0f0f; /* YouTube dark background */
  color: #793939;            /* Light gray text for contrast */
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

#content-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
}

#browse {
  flex: 1;
  display: flex;
  flex-direction: column;
}
#channels {
  flex: 1;
  display: flex;
  flex-direction: column;
}
#login {
  flex: 1;
  display: flex;
  flex-direction: column;
}
#profile {
  flex: 1;
  display: flex;
  flex-direction: column;
}
#upload {
  flex: 1;
  display: flex;
  flex-direction: column;
}
#page404 {
  flex: 1;
  display: flex;
  flex-direction: column;
}
/* Optional: smooth font rendering */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body a,
body a:active {
  color: #3f444e;
  text-decoration: none;
}
body a:hover,
body a:active:hover {
  color: #ac1c21;
  text-decoration: none;
}
body a:active,
body a:active:active,
body a:visited,
body a:active:visited,
body a:focus,
body a:active:focus {
  text-decoration: none;
}
body h1 {
  font-size: 25px;
}
body h2 {
  font-size: 17px;
  font-weight: 700;
}
body h2.header {
  color: #000;
}
body h2.header-featured {
  color: #d8232a;
}
body h3 {
  font-size: 15px;
  padding-top: 10px;
}
body h3.header-in {
  font-size: 1.3em;
  font-weight: 700;
  margin: 15px 0;
}
body .header-holder h2.header {
  width: auto;
}
body .btn {
  font-weight: 700;
  transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
}
body .btn.btn-primary {
  background: #3f444e;
  border-color: #3f444e;
  color: #fff;
}
body .btn.btn-primary:hover,
body .btn.btn-primary.active {
  background: #565d6a;
  color: #fff !important;
}
body .btn.btn-primary-outline {
  border: 2px solid #dcdee3;
  color: #4a505c;
  border-radius: 200px;
  -moz-border-radius: 200px;
  -webkit-border-radius: 200px;
}
body .btn.btn-primary-outline:hover {
  border-color: #a4aab5;
}
body .btn.btn-info {
  background: #3f444e;
  border-color: #3f444e;
  color: #fff;
}
body .btn.btn-info:hover,
body .btn.btn-info.active {
  background: #565d6a;
  color: #fff !important;
}
body .btn.btn-warning {
  background: #F8CB1C;
  border-color: #F8CB1C;
  color: #fff;
}
body .btn.btn-warning:hover,
body .btn.btn-warning.active {
  background: #fad64d;
  color: #fff;
}
body .btn.btn-success {
  background: #3ecf8e;
  border-color: #3ecf8e;
  color: #fff;
}
body .btn.btn-success:hover,
body .btn.btn-success.active {
  background: #67d9a6;
  color: #fff;
}
body .btn.btn-danger {
  background: #d8232a;
  border-color: #d8232a;
  color: #fff;
}
body .btn.btn-danger:hover,
body .btn.btn-danger.active {
  background: #e24c52;
  color: #fff;
}
body .btn.btn-facebook {
  background: #3B5998;
  color: #fff;
  transition: all 0.5s linear;
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
}
body .btn.btn-facebook:hover {
  background-color: #4c70ba;
}
body .btn.btn-twitter {
  background: #409DD5;
  color: #fff;
  transition: all 0.5s linear;
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
}
body .btn.btn-twitter:hover {
  background-color: #6ab2de;
}
body .btn.btn-google {
  background: #D34836;
  color: #fff;
  transition: all 0.5s linear;
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
}
body .btn.btn-google:hover {
  background-color: #dc6e60;
}
body .alert {
  color: #fff;
  border: 0;
  font-weight: 700;
  position: relative;
  cursor: pointer;
}
body .alert.custom-alert {
  border-radius: 0 !important;
  margin: 0 !important;
}
body .alert.alert-primary {
  background-color: #3f444e;
}
body .alert.alert-primary:before {
  font-family: FontAwesome;
  content: '\f06a';
  font-size: 1.2em;
  margin-right: 10px;
  position: absolute;
  right: 0;
}
body .alert.alert-success {
  background-color: #3ecf8e;
}
body .alert.alert-success:before {
  font-family: FontAwesome;
  content: '\f05d';
  font-size: 1.2em;
  margin-right: 10px;
  position: absolute;
  right: 0;
}
body .alert.alert-danger {
  background-color: #d8232a;
}
body .alert.alert-danger:before {
  font-family: FontAwesome;
  content: '\f057';
  font-size: 1.2em;
  margin-right: 10px;
  position: absolute;
  right: 0;
}
body .this-hide {
  display: none;
}
body .panel-default {
  border: 0;
  background: transparent;
  box-shadow: none;
}
body .panel-default .panel-heading {
  background: transparent;
  color: #3f444e;
  border: 0;
  font-size: 1.2em;
  padding: 0;
  margin-bottom: 20px;
  border-radius: 2px 2px 0 0;
  -moz-border-radius: 2px 2px 0 0;
  -webkit-border-radius: 2px 2px 0 0;
}
body .panel-default .panel-heading:after {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  margin: 10px 0;
  background: #dcdee3;
  border-radius: 200px;
  -moz-border-radius: 200px;
  -webkit-border-radius: 200px;
}
body .panel-default .panel-heading a {
  color: #3f444e;
}
body .panel-default .panel-heading a:hover {
  color: #000;
}
body .panel-default .panel-heading .btn {
  color: #fff;
}
body .panel-default .panel-heading h3 {
  display: inline;
  font-size: 1.4em;
  font-weight: 700;
  border-bottom: 2px solid #d8232a;
  padding-bottom: 14px;
}
body .panel-default .panel-heading h3 i {
  background: #d8232a;
  padding: 5px 6px;
  color: #fff;
  font-size: 0.8em;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  margin-right: 10px;
}
body .panel-default .panel-heading.panel-heading-alt {
  padding: 4px 0;
}
body .panel-default .panel-heading.panel-heading-alt .chosen-single {
  min-width: 100px;
  color: #f8f9fa;
  height: 28px;
  padding: 2px 5px;
  background: #888f9e;
  border: 0;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}
body .panel-default .panel-heading.panel-heading-alt h1 {
  font-size: 1.1em;
  margin: 0;
  padding: 11px 0;
  font-weight: 700;
}
body .panel-default .panel-body {
  padding: 20px;
  background: #000000;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}

body .media {
  padding: 0;
  overflow: visible;
}
body .media .media-item {
  margin-bottom: 30px;
}

.media .media-item .mediathumb {
  position: relative;
  display: block;
  background: #8b8b8b;
  width: 100%;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.1); /* soft white border */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* subtle shadow for depth */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.media .media-item .mediathumb:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

body .media .media-item .mediathumb .mediabg {
  width: 100%;
  min-height: 190px;
  text-indent: -9999px;
  display: block;
  background-position: center center;
  background-size: cover !important;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
}
body .media .media-item .mediathumb .mediabg:hover {
  opacity: 0.5;
}
body .media .media-item .mediathumb small {
  position: absolute;
  bottom: 2px;
  right: 2px;
  color: #fff;
  padding: 0 5px;
  background: #3f444e;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}
body .media .media-item .mediathumb small.mediacount {
  top: 0;
  bottom: 0;
  right: 0;
  margin-right: -2px;
  padding: 30px 10px;
  font-size: 1em;
}
body .media .media-item .mediathumb .mediatype {
  position: absolute;
  top: 5px;
  left: 5px;
  font-size: 0.9em;
  color: #fff;
  background: #000000;
  background: rgba(0, 0, 0, 0.5);
  padding: 0 5px;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}
body .media .media-item .mediathumb .mediatype .mediadate {
  display: none;
  margin-left: 5px;
}
body .media .media-item .mediathumb .mediansfw {
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 0.75em;
  color: #fff;
  background: #FF2F97;
  background: rgba(225, 47, 151, 0.8);
  padding: 1px 2px;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}
body .media .media-item .mediathumb .mediacontainer:hover .mediansfw {
  display: none;
}
body .media .media-item .mediathumb .mediacontainer:hover .mediadate {
  display: inline-block;
}
body .media .media-item .mediadescription {
  display: none;
}
body .media .media-item h4 {
  margin: 10px 0 10px 0;
  font-size: 1em;
  max-height: 35px;
  width: 100%;
}
body .media .media-item h4 a.medialink {
  font-weight: 700;
  color: #556268;
}
body .media .media-item h4 a.medialink:hover {
  color: #d8232a;
  transition: all 0.5s linear;
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
}
body .media .media-item h4 small {
  margin-left: 5px;
}
body .media .media-item h4 span.mediacomments,
body .media .media-item h4 span.mediavotes {
  display: none;
  float: right;
  font-size: 12px;
  margin-left: 20px;
  font-weight: 700;
  color: #aaa;
}
body .media .media-item a.mediaauthor {
  color: #94a2a8;
  width: 100%;
  display: block;
  font-size: 12px;
}
body .media .media-item a.mediaauthor:hover {
  color: #000000;
}
body .media .media-item a.mediaauthor span.mediaauthorname {
  color: #b2b7c1;
}
body .media .media-item a.mediaauthor span.mediaauthorname strong {
  margin-left: 5px;
  color: #d8232a;
}
body .media .media-item a.mediaauthor span.mediaviews {
  float: right;
  font-size: 12px;
  font-weight: 700;
  color: #aaa;
}
body .media .media-item.media-item-featured .mediathumb:before {
  bottom: 0;
  left: 0;
  z-index: 99999;
  position: absolute;
  content: '\f005';
  font-family: FontAwesome;
  background: #d8232a;
  font-size: 0.8em;
  color: #fff;
  padding: 5px;
  border-radius: 0 3px 0 3px;
  -moz-border-radius: 0 3px 0 3px;
  -webkit-border-radius: 0 3px 0 3px;
}
body .media .media-item.media-item-2 {
  margin-bottom: 15px !important;
}
body .media .media-item.media-item-2 .mediathumb .mediabg {
  min-height: 100px;
}
body .media .media-item.media-item-2 .mediathumb .mediatype,
body .media .media-item.media-item-2 .mediathumb small {
  display: none;
}
body .media .media-item .buttons {
  margin-top: 5px;
  display: block;
}
body .media .media-item .buttons a {
  font-size: 11px;
}
body .media.media-playlist .mediatype {
  display: none !important;
}
body .media.media-sidebar .media-item,
body .media.media-sidebar-featured .media-item {
  margin-bottom: 10px;
}
body .media.media-sidebar .media-item h4,
body .media.media-sidebar-featured .media-item h4 {
  min-height: auto;
}
body .media.media-inline .media-item {
  float: left;
  margin: 0 8px;
  width: 250px;
}
body .media.media-inline .media-item .mediaauthor {
  display: none;
}
body .media.media-inline .media-item .mediainfo h4 a.medialink {
  color: #fff;
}
body .media.media-grid .media-item {
  width: 100%;
  max-width: 100%;
  min-height: 50px;
}
body .media.media-grid .media-item .mediathumb {
  width: 25%;
  float: left;
}
body .media.media-grid .media-item .mediathumb .mediabg {
  min-height: 110px;
}
body .media.media-grid .media-item .mediainfo {
  width: 73%;
  float: right;
  color: #8c8c8c;
}
body .media.media-grid .media-item .mediainfo h4 {
  margin-bottom: 5px;
  min-height: 0;
}
body .media.media-grid .media-item span.mediacomments,
body .media.media-grid .media-item span.mediavotes {
  display: inline-block !important;
}
body .media.media-grid .media-item .mediadescription {
  color: #666666;
  display: block;
}
body .media-row .panel {
  background: #fff;
  border-color: #E6E6E6;
}
body .media-row .panel .panel-heading {
  padding: 10px;
  margin: 0;
  border-bottom-width: 1px;
}
body .media-row .panel .panel-body {
  margin: 0;
  padding: 10px;
}
body .media-row .panel a {
  color: #3f444e;
}
body .media-row .media-player {
  text-align: center;
  line-height: 0;
  padding: 0 1px;
}
body .media-row .media-player iframe,
body .media-row .media-player embed,
body .media-row .media-player object {
  width: 100%;
  min-height: 450px;
}
body .media-row .media-player img {
  width: 100%;
}
body .media-row .media-avatar img {
  width: 48px;
  margin-right: 10px;
  border-radius: 200px;
  -moz-border-radius: 200px;
  -webkit-border-radius: 200px;
}
body .media-row .media-stats {
  font-size: 12px;
  margin-top: 12px;
  color: #a6a6a6;
}
body .media-row .media-stats strong {
  font-size: 16px;
  color: #808080;
}
body .activities .panel-heading {
  color: #3f444e;
  font-weight: 400;
}
body .activities .panel-heading span {
  float: right;
  color: #3f444e;
  font-size: 11px;
  padding-top: 3px;
  vertical-align: bottom;
}
body .activities .panel-heading a {
  color: #3f444e;
}
body .activities .media-grid {
  margin: 0;
}
body .activities .media-grid li {
  margin-bottom: 0;
}
body .ads {
  text-align: center;
  margin: 0 auto 35px auto;
  clear: both;
  position: relative;
  z-index: 0;
}
body .ads:before {
  content: 'Please disable adblock for this domain. We are showing you clean and harmless advertisement.';
  top: 35%;
  text-align: center;
  width: 96%;
  margin-left: 2%;
  position: absolute;
  z-index: -1;
  color: #fff;
  font-weight: 700;
}
body .ads.ads-1 {
  width: 100%;
}
body .ads.ads-1:before {
  content: "";
}
body .ads.ads-729 {
  max-width: 728px;
  height: 90px;
  width: 100%;
  background: #b5bec2;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}
body .ads.ads-729 img,
body .ads.ads-729 embed,
body .ads.ads-729 iframe {
  max-width: 728px;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}
body .ads.ads-301 {
  max-width: 300px;
  height: 250px;
  width: 100%;
  background: #b5bec2;
}
body .ads.ads-301 img,
body .ads.ads-301 embed,
body .ads.ads-301 iframe {
  max-width: 300px;
  max-height: 250px;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}
body .ads.ads-469 {
  max-width: 468px;
  height: 60px;
  width: 100%;
  background: #b5bec2;
}
body .ads.ads-469 img,
body .ads.ads-469 embed,
body .ads.ads-469 iframe {
  max-width: 468px;
  max-height: 60px;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}
body .ads.ads-rep:before {
  content: '';
}
body ul.form_opt {
  list-style: none;
  padding: 0;
  clear: both;
  overflow: hidden;
  margin-bottom: 25px;
  min-height: 60px;
}
body ul.form_opt li {
  float: right;
  margin-top: 15px;
}
body ul.form_opt li.text-label {
  width: 60%;
  float: left;
  color: #3f444e;
  font-weight: 700;
  text-align: left;
  margin-top: 0;
  font-size: 14px;
}
body ul.form_opt li.text-label small {
  display: block;
  margin-top: 5px;
  color: #777;
  font-weight: 400;
}
body ul.form_opt li a {
  background: #3f444e;
  color: #fff;
  padding: 5px 10px;
  font-weight: 700;
  transition: all 0.5s linear;
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
}
body ul.form_opt li a.round {
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}
body ul.form_opt li a.first {
  border-radius: 2px 0 0 2px;
  -moz-border-radius: 2px 0 0 2px;
  -webkit-border-radius: 2px 0 0 2px;
}
body ul.form_opt li a.last {
  border-radius: 0 2px 2px 0;
  -moz-border-radius: 0 2px 2px 0;
  -webkit-border-radius: 0 2px 2px 0;
}
body ul.form_opt li a:hover {
  background: #4c92e2;
}
body ul.form_opt li a.current {
  background: #2378D8;
}
body .nav-pills > li > a {
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
}
body .alert span {
  display: block;
}
body .subs {
  margin-right: 8px;
  margin-bottom: 10px;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}
body .dob {
  width: 40%;
}
body .dob input {
  width: 25%;
  border: none;
  margin: 0 0 0 10px;
  padding: 0;
}
body .bubble {
  position: relative;
  background: transparent;
  border: 1px solid #d9d9d9;
  padding: 5px;
  top: 5px;
  color: #808080;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}
body .bubble.bubble-left {
  margin-left: 5px;
}
body .bubble:before {
  right: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-right-color: #d9d9d9;
  border-width: 5px;
  margin-top: -5px;
}
body .admin-bar {
  background: #4a505c;
  width: 100%;
  overflow: hidden;
  color: #fff;
}
body .admin-bar .admin-bar-menu {
  list-style: none;
  margin: 0;
  padding: 5px 10px;
}
body .admin-bar .admin-bar-menu li {
  display: inline-block;
  margin-right: 15px;
}
body .admin-bar .admin-bar-menu li a {
  color: #dcdee3;
}
body .admin-bar .admin-bar-menu li a:hover {
  color: #ffffff;
}
body .admin-bar .admin-bar-menu li a.admin-alt {
  background: #d8232a;
  color: #fff;
  padding: 2px 5px;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}
body #modal-shadow {
  background: #4a505c;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 200;
  display: none;
  clear: both;
}
body #modal-shadow.modal-light {
  background: #fff;
  background: rgba(255, 255, 255, 0.8);
}
body #modal-shadow #modal-loader {
  width: 64px;
  height: 64px;
  position: absolute;
  top: 40%;
  left: 50%;
  margin: -28px 0 0 -25px;
}
body #modal-alert {
  width: 90%;
  max-width: 500px;
  min-height: 150px;
  position: fixed;
  z-index: 999;
  display: none;
  background: #fff;
  text-align: left;
  padding: 10px;
  clear: both;
  color: #222;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}
body #modal-alert form {
  overflow: visible !important;
}
body #modal-alert .modal-title {
  margin: -10px -10px 10px -10px;
  padding: 10px;
  display: block;
  background: #3f444e;
  color: #fff;
  font-weight: 700;
  border-radius: 2px 2px 0 0;
  -moz-border-radius: 2px 2px 0 0;
  -webkit-border-radius: 2px 2px 0 0;
}
body #modal-alert #modal-content {
  margin: 10px 0;
  line-height: 25px;
}
body #tooltip {
  background: #3f444e;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 2px 5px;
  position: relative;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}
body #tooltip:before {
  right: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
body #tooltip:before {
  border-right-color: #3f444e;
  border-right-color: rgba(0, 0, 0, 0.8);
  border-width: 5px;
  margin-top: -5px;
}
body span.featured {
  font-size: 11px;
  color: #fff;
  background: #d8232a;
  padding: 1px 5px;
  vertical-align: middle;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}
body span.nsfw {
  font-size: 11px;
  color: #fff;
  background: #FF2F97;
  padding: 1px 5px;
  vertical-align: middle;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}
body .covers {
  margin: 0;
}
body .covers h3 {
  color: #3f444e;
  margin-top: 0;
  padding-top: 0;
  font-weight: 700;
  font-size: 1em;
}
body .covers ul {
  list-style: none;
  padding: 0;
}
body .covers ul li {
  padding-bottom: 5px;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}
body .covers ul li img {
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}
body .covers ul li a.current img {
  border: 2px solid #d8232a;
}
body #live-search {
  position: absolute;
  width: 100%;
  z-index: 999999;
  background: #fff;
}
body #live-search ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
body #live-search ul li {
  padding: 10px 5px;
  border-bottom: 1px solid #d9d9d9;
}
body #live-search ul li:hover {
  background: #f7f7f7;
}
body #live-search ul li a {
  color: #808080;
}
body #live-search ul li a strong {
  color: #333333;
}
body a.arrow-prev,
body a.arrow-next {
  display: none;
}
body a.arrow-prev {
  position: fixed;
  top: 50%;
  left: 0;
  background: #3f444e;
  color: #fff;
  font-size: 18px;
  padding: 10px 15px;
  border-radius: 0 2px 2px 0;
  -moz-border-radius: 0 2px 2px 0;
  -webkit-border-radius: 0 2px 2px 0;
}
body a.arrow-next {
  position: fixed;
  top: 50%;
  right: 0;
  background: #3f444e;
  color: #fff;
  font-size: 18px;
  padding: 10px 15px;
  border-radius: 0 2px 2px 0;
  -moz-border-radius: 0 2px 2px 0;
  -webkit-border-radius: 0 2px 2px 0;
}
body .play-gif {
  position: relative;
  color: #fff;
  transition: all 0.5s linear;
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
}
body .play-gif img {
  z-index: 0;
}
body .play-gif span {
  position: absolute;
  z-index: 9999;
  top: -40px;
  left: 49%;
  font-size: 5em;
}
body .pager {
  background: #000000;
  padding: 15px;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}
body .pager li a {
  background: #d8232a;
  color: #fff;
  border: 0;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}
body .pager li a:hover,
body .pager li a:focus,
body .pager li a:active {
  background: #3f444e;
}
body .pager li.active a {
  background: #3f444e;
}
/*
  Header
 */
header {
  background: #d7d7d7;
  color: #000000;
  border-bottom: 1px solid #303030;
  width: 100%;
  display: flex;
  flex-wrap: wrap; /* <-- Allows wrapping on small screens */
  align-items: center;
  justify-content: space-between; /* <-- Good for spacing logo/menu */
  padding: 0 16px;
  font-family: 'Roboto', 'Helvetica Neue', sans-serif;
  font-size: 14px;
  box-sizing: border-box; /* Ensures padding doesn't break layout */
}
@media (max-width: 600px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 8px;
  }

  header .logo,
  header nav,
  header .menu-button {
    width: 100%;
    margin: 5px 0;
  }
}


header .logo a {
  font-size: 20px;
  font-weight: 700;
  display: inline-block;
}
header .logo a span {
  margin-top: 14px;
  display: block;
}
header .logo a img {
  max-height: 40px;
  margin-top: 10px;
}
header .search {
  padding-top: 13px;
}
header .search ul.navbar-nav {
  padding: 0;
}
header .search ul.navbar-nav li {
  font-weight: 700;
  font-size: 1.15em;
  margin-right: 5px;
}
header .search ul.navbar-nav li a {
  color: #565d6a;
  padding: 5px 15px;
}
header .search ul.navbar-nav li a:hover,
header .search ul.navbar-nav li a.active {
  color: #3f444e;
  background: #eaecee;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
}
header #main-search {
  margin-top: 15px;
}
header #main-search .input-group {
  width: 100%;
}
header #main-search .input-group .input-group-addon {
  border: 0;
  background: #e6e6e6;
  color: #999999;
  padding-left: 20px;
}
header #main-search .input-group input {
  background: #e6e6e6;
  color: #666666;
  padding: 15px 15px 15px 0;
  height: auto;
  border: 0;
  box-shadow: none;
  transition: all 0.5s linear;
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
}
header #main-search .input-group input:hover,
header #main-search .input-group input:focus {
  color: #333333;
}
header .nav ul.nav-list {
  display: inline-block;
  float: right;
  padding-top: 11px;
}
header .nav ul.nav-list > li {
  list-style: none;
  float: left;
  margin: 0 8px;
}
header .nav ul.nav-list > li .btn-xs {
  font-size: 1em;
  padding: 5px 10px;
}
header .nav ul.nav-list > li .user-avatar img {
  width: 25px;
  margin-right: 5px;
  margin-top: -5px;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}
header .nav ul.nav-list > li.dropdown {
  position: relative;
}
header .nav ul.nav-list > li.dropdown ul {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99999;
    display: none;
    padding: 0;
    list-style: none;
    min-width: 200px;
    max-width: 90vw;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, .1);
}

header .nav ul.nav-list > li.dropdown ul li {
  padding: 10px 15px;
  border-bottom: 1px solid #eee;
}
header .nav ul.nav-list > li.dropdown ul li:hover {
  background: #f2f2f2;
}
header .nav ul.nav-list > li.dropdown ul li a {
  color: #3f444e;
  display: block;
}
header .nav ul.nav-list > li.dropdown ul li .fa {
  padding-right: 10px;
}
header .nav ul.nav-list > li.dropdown.hover:hover ul {
  display: block;
}
header .nav ul.nav-list > li.dropdown.dropdown-alt .fa-new {
  position: relative;
}
header .nav ul.nav-list > li.dropdown.dropdown-alt .fa-new:after {
  content: '\2022';
  font-size: 45px;
  position: absolute;
  left: 0;
  bottom: 0;
  color: #d8232a;
}
.nav ul.nav-list > li.dropdown.dropdown-alt {
  position: relative; /* Required for absolute child to position correctly */
}

.nav ul.nav-list > li.dropdown.dropdown-alt .dropdown-holder {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 250px;
  max-width: 90vw;
  background: #fff;
  border: 1px solid #4a505c;
  border-radius: 4px;
  padding: 0;
  list-style: none;
  z-index: 99999;
  display: none; /* Or block when active */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  white-space: normal;
}

.nav ul.nav-list > li.dropdown.dropdown-alt .dropdown-holder::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%; /* Center horizontally */
  transform: translateX(-50%);
  border: solid transparent;
  border-width: 8px;
  border-bottom-color: #4a505c; /* same as dropdown border */
  pointer-events: none;
}

header .nav ul.nav-list > li.dropdown.dropdown-alt .dropdown-holder .panel-heading {
  background: #565d6a;
  padding: 10px;
  color: #fff;
  margin-bottom: 0;
}
header .nav ul.nav-list > li.dropdown.dropdown-alt .dropdown-holder .panel-heading:after {
  background: transparent;
  margin: 0;
}
header .nav ul.nav-list > li.dropdown.dropdown-alt .dropdown-holder .panel-body {
  padding: 0;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
}
header .nav ul.nav-list > li.dropdown.dropdown-alt ul {
  height: 250px;
  overflow-y: scroll;
  top: 5px;
  display: block;
  position: relative;
  margin-bottom: 5px;
}
header .nav ul.nav-list > li.dropdown.dropdown-alt ul li.notification_new {
  background: #dcdee3;
}
header .nav ul.nav-list > li.dropdown.dropdown-alt ul a {
  display: inline;
}
header .nav ul.nav-list > li.dropdown.dropdown-alt > a {
  color: #3f444e;
  position: relative;
  font-size: 20px;
}
header .nav ul.nav-list > li.dropdown.dropdown-alt > a .fa-circle {
  position: absolute;
  top: 0;
  left: 1px;
  font-size: 8px;
  color: red;
}
/*  
  Main Navigation
*/
nav#main-menu {
  padding: 0;
  background: #000000;
  color: #3f444e;

  border-bottom: 1px solid #e6e6e6;
  box-shadow: none;
}
nav#main-menu ul.nav {
  margin: 10px 0;
  position: relative;
  width: 100%;
}
nav#main-menu ul.nav a:focus {
  background: transparent;
}
nav#main-menu ul.nav > li {
  min-height: 45px;
  margin-right: 5px;
}
nav#main-menu ul.nav > li > a {
  margin-top: 5px;
  padding-top: 10px;
  padding-bottom: 10px;
  color: #798293;
  font-weight: 700;
  font-size: 14px;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}
nav#main-menu ul.nav > li > a span {
  margin-right: 5px;
}
nav#main-menu ul.nav > li.dropdown {
  position: relative;
}
nav#main-menu ul.nav > li.dropdown > a {
  border-radius: 2px 2px 0 0;
  -moz-border-radius: 2px 2px 0 0;
  -webkit-border-radius: 2px 2px 0 0;
}
nav#main-menu ul.nav > li.dropdown ul.child {
  background: #d8232a;
  display: none;
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 9999;
  color: #3f444e;
  list-style: none;
  margin: 0;
  padding: 0;
  border-radius: 0 0 2px 2px;
  -moz-border-radius: 0 0 2px 2px;
  -webkit-border-radius: 0 0 2px 2px;
}
nav#main-menu ul.nav > li.dropdown ul.child li {
  padding: 5px 0;
  border-bottom: 1px solid #ac1c21;
}
nav#main-menu ul.nav > li.dropdown ul.child li a {
  color: #fff;
  padding: 5px 10px;
}
nav#main-menu ul.nav > li.dropdown ul.child li a .fa {
  margin-right: 5px;
}
nav#main-menu ul.nav > li.dropdown:hover ul.child {
  display: block;
}
nav#main-menu ul.nav > li a.active {
  color: #fff;
  background: #d8232a;
}
nav#main-menu ul.nav > li:hover a {
  background-color: #d8232a;
  color: #fff;
}
/*
  Content
 */
section {
  padding-top: 30px;
  padding-bottom: 30px;
  /*
    Promo
   */
  /*
    Main Sidebar
   */
  /*
    Main Content
   */
  /*
    Sidebar
  */
  /*
    Main Content
   */
  /*
    404 Page
   */
  /*
    Profile Page
   */
  /*
    Upload Page
   */
  /*
    Login/Register
   */
  /*
      Embed Page
   */
}
section.promo {
  background: #3f444e;
  min-height: 150px;
  color: #fff;
  overflow: hidden;
}
section.promo h1 {
  color: #fff;
  font-size: 3em;
  font-weight: 700;
}
section.promo p {
  font-size: 1.2em;
}
section.main-content {
  border-left: 1px solid #e6e6e6;
}
section.main-content .content {
  width: 74.68134%;
}
section.main-content .sidebar {
  width: 24.9%;
}
section#page .content .panel .panel-heading {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 10px;
  padding-top: 10px;
  font-size: 20px;
  color: #3f444e;
}
section#page .content .panel .panel-heading a {
  color: #3f444e;
}
section#page .content .panel .panel-body {
  line-height: 25px;
}
section .sidebar {
  width: 28.32%;
}
section .sidebar h2 {
  margin-top: 0;
}
section .sidebar .sidenav {
  list-style: none;
  padding: 0;
  margin: 0;
}
section .sidebar .sidebar-playlist {
  margin-left: -30px;
  background: #000000;
  height: 451px;
  color: #fff;
  margin-bottom: 15px;
  border-radius: 0 2px 2px 0;
  -moz-border-radius: 0 2px 2px 0;
  -webkit-border-radius: 0 2px 2px 0;
}
section .sidebar .sidebar-playlist ul {
  height: 90%;
  overflow-y: scroll;
  padding: 0;
  margin: 0;
}
section .sidebar .sidebar-playlist ul li {
  width: 99%;
  border-bottom: 1px solid #565d6a;
  padding: 10px;
  min-height: 20px !important;
  margin-bottom: 0;
}
section .sidebar .sidebar-playlist ul li.playlist-current {
  background: #565d6a;
}
section .sidebar .sidebar-playlist ul li .mediathumb {
  width: 30%;
  float: left;
}
section .sidebar .sidebar-playlist ul li .mediaviews {
  display: none;
}
section .sidebar .sidebar-playlist ul li .mediathumb .mediabg {
  min-height: 50px !important;
}
section .sidebar .sidebar-playlist ul li .mediathumb small {
  display: none;
}
section .sidebar .sidebar-playlist ul li .mediainfo h4 {
  width: 65%;
  margin-bottom: 0;
  min-height: 15px;
}
section .sidebar .sidebar-playlist ul li .mediainfo h4 a {
  color: #dcdee3;
}
section .sidebar .sidebar-playlist ul li .mediainfo .mediaauthorname {
  width: 65%;
  float: right;
  display: block !important;
}
section .sidebar .panel .panel-heading {
  padding: 3px 0;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 1.2em;
}
section .sidebar .panel .panel-heading span {
  border-bottom: 2px solid #3f444e;
  padding-bottom: 16px;
}
section .sidebar .panel .panel-heading:after {
  margin-top: 13px;
}
section .sidebar ul.blog-posts {
  margin: 0;
  padding: 0;
  list-style: none;
}
section .sidebar ul.blog-posts li {
  background: #fafafa;
  padding: 10px 15px;
  border-bottom: 1px solid #e6e6e6;
  color: #808080;
  margin-bottom: 5px;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}
section .sidebar ul.blog-posts li .btn {
  margin-top: 10px;
}
section .sidebar ul.blog-posts li h3 {
  margin: 5px 0;
  padding: 0;
  font-weight: 700;
}
section .sidebar ul.blog-posts li:hover {
  background: #3f444e;
  color: #fff;
}
section .sidebar ul.blog-posts li:hover h3 a {
  color: #fff;
}
section .sidebar ul.top-users {
  margin: 0;
  padding: 0;
  list-style: none;
}
section .sidebar ul.top-users li a {
  color: #737373;
  border-bottom: 1px solid #e6e6e6;
  padding: 10px 0;
  display: block;
}
section .sidebar ul.top-users li a strong {
  float: right;
}
section .sidebar ul.top-users li a:hover {
  color: #d8232a;
}
section .sidebar ul.categories {
  list-style: none;
  margin: 0;
  padding: 0;
}
section .sidebar ul.categories li {
  border-bottom: 1px solid #dfe3e4;
  padding: 10px 0;
}
section .sidebar ul.categories li i {
  margin-right: 8px;
  font-size: 10px;
  color: #d1d6d9;
}
section .sidebar ul.categories li a {
  font-weight: 700;
  display: inline-block;
}
section .sidebar ul.categories li ul {
  overflow: hidden;
  list-style: none;
  padding: 5px 10px 0;
}
section .sidebar ul.categories li ul li {
  margin-bottom: 0;
  border-bottom: 0;
  padding: 5px 10px;
}
section .sidebar ul.categories li ul li a {
  color: #6d7586;
}
section .sidebar ul.categories li ul li a:hover {
  color: #d8232a;
}
section .content {
  width: 71.68134%;
  /*
      Media Page
     */
  /*
      Comments
     */
}
category-1 {
  height: auto;
  min-height: 120px;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
  background-color: #fff;
  font-size: 14px;
  width: 100%;
}

category-1 option {
  padding: 4px;
}
.select2-container {
  width: 100% !important;
}


section .content.video .panel {
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
}

section .content.video .video-player {
  line-height: 0;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}

section .content.video .video-player iframe,
section .content.video .video-player embed,
section .content.video .video-player object,
section .content.video .video-player img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  display: block;
  object-fit: cover;
}




section .content.video .icon-heart span {
  font-size: 24px;
  color: #d8232a;
  transition: transform 0.2s ease;
}

section .content.video .icon-heart:hover span {
  transform: scale(1.2);
}

section .content.video .icon-heart.active span {
  color: #801519;
}
section .content.video .post-image {
  width: 100%;
}
section .content.video .post-info {
  font-size: 12px;
  color: #999;
  display: block;
}
section .content.video .post-info span {
  margin-right: 10px;
}
section .content.video .post-info span i {
  margin-right: 2px;
}
section .content.video .post-content img {
  width: 100%;
}
section .content.video .video-info {
  overflow: hidden;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
}
section .content.video .video-info .video-author {
  padding: 0;
  margin: 0;
  float: left;
}
section .content.video .video-info .video-author img.video-author-avatar {
  max-width: 52px;
  width: 100%;
  height: 52px;
  margin-right: 15px;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}
section .content.video .video-info .video-author-name {
  display: block;
}
section .content.video .video-info .video-author-name small {
  font-size: 11px;
  margin-left: 5px;
  color: #999999;
}
section .content.video .video-info .video-author-name a {
  color: #666666;
}
section .content.video .video-info .video-author-name a:hover {
  color: #d8232a;
}
section .content.video .video-info .btn-danger {
  padding: 3px 5px;
  margin-top: 8px;
}
section .content.video .video-info h2 {
  font-size: 11px;
  line-height: 25px;
  padding: 0;
  margin-top: 5px;
}
section .content.video .video-info h2 small {
  font-size: 11px;
  display: none;
}
section .content.video .video-info .stats {
  text-align: right;
  color: #555;
  font-size: 16px;
  font-weight: 700;
  margin-top: 8px;
}
section .content.video .video-info .stats p {
  font-size: 11px;
  color: #999;
}
section .content.video .video-option {
  clear: both;
}
section .content.video .video-option ul.share {
  width: 100%;
  margin: 0;
  list-style: none;
  border-top: 1px solid #e6e6e6;
  border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  -webkit-border-radius: 0 0 5px 5px;
}
section .content.video .video-option ul.share li {
  float: left;
  margin-right: 10px;
}
section .content.video .video-option ul.share li .fa {
  padding-right: 5px;
}
section .content.video .video-option ul.share li a {
  font-size: 1em;
  padding: 5px;
  font-weight: 700;
  color: #666;
  border: 1px solid transparent;
  transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
}
section .content.video .video-option ul.share li a:hover {
  color: #999;
}
section .content.video .video-option ul.share li a.toggle {
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}
section .content.video .video-option ul.share li a.toggle:hover {
  background: #d8232a;
  color: #fff;
}
section .content.video .video-option ul.share li a.toggle.active {
  background: #d8232a;
  color: #fff;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}
section .content.video .video-option ul.share li a.active {
  background: #d8232a;
  color: #fff;
  padding-left: 5px !important;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}
section .content.video .video-option ul.share li.right {
  float: right;
  margin-right: 0;
  margin-left: 10px;
}
section .content.video .video-option ul.share li:first-child a {
  padding-left: 0;
}
section .content.video .video-option .addto {
  margin-top: 10px;
}
section .content.video .video-option .addto .row {
  padding: 0 10px;
}
section .content.video .video-option .addto #this-addtofav,
section .content.video .video-option .addto .this-fav-block {
  background: #d8232a;
  width: 100%;
  padding: 20px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: block;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}
section .content.video .video-option .addto #this-addtofav:hover,
section .content.video .video-option .addto .this-fav-block:hover {
  background: #e24c52;
}
section .content.video .video-option .addto #this-addtofav.active,
section .content.video .video-option .addto .this-fav-block.active {
  background: #3f444e;
  color: #fff;
}
section .content.video .video-option #playlists-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
section .content.video .video-option #playlists-list li {
  margin-bottom: 5px;
}
section .content.video .video-option #playlists-list li a.active {
  background: #d8232a;
  display: block;
  padding: 10px;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}
section .content.video .video-option #playlists-list li a:hover {
  color: #3f444e;
}
section .content.video .video-option .share_content {
  border-top: 0;
  margin-top: 10px;
}
section .content.video .video-option .share_content #shorturl {
  padding: 10px 0;
}
section .content.video .video-option .share_content #shorturl input {
  margin-bottom: 5px;
}
section .content.video .video-option .share_content #embed {
  position: relative;
}
section .content.video .video-option .share_content #embed select {
  position: absolute;
  bottom: 5px;
  left: 5px;
  padding: 3px;
}
section .content.video .video-option a.toggle-description {
  color: #fff;
  font-weight: 700;
  text-align: center;
  width: 100%;
  display: block;
  font-size: 12px;
  padding: 8px 5px;
  background: #3f444e;
  border-top: 1px solid #3f444e;
  box-shadow: 0px -8px 30px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  -webkit-border-radius: 0 0 5px 5px;
}
section .content.video .video-option .video-description {
  position: relative;
  margin-top: 10px;
  overflow: hidden;
  max-height: 200px;
  margin-bottom: 0;
}
section .content.video .video-option .video-description.truncate {
  max-height: 100%;
}
section .content.video .video-option .video-description strong {
  margin-right: 5px;
  margin-bottom: 5px;
  display: block;
  font-size: 12px;
}
section .content.video .video-option .video-description a.video-tag {
  display: inline-block;
  padding: 2px 5px;
  margin-bottom: 8px;
  font-size: 11px;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}
section .content #comments {
  margin: 20px 0;
}
section .content #comments h2 {
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
section .content #comments h2 span {
  border-bottom: 2px solid #000;
  padding-bottom: 11px;
  font-size: 14px;
}
section .content #comments li.media {
  margin-bottom: 20px;
}
section .content #comments li.media img {
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}
section .content #comments li.media .media-heading {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 5px;
}
section .content #comments li.media .media-heading a.author {
  font-size: 12px;
  color: #d8232a;
}
section .content #comments li.media .media-heading .fa {
  color: #b3b3b3;
  margin-left: 10px;
}
section .content #comments li.media .media-heading .fa:hover {
  color: #808080;
}
section .content #comments li.media .media-heading span {
  margin-left: 5px;
  color: #616978;
  font-size: 11px;
}
section .content #comments li.media p {
  color: #1d1f24;
}
section .content #comments #comment-form {
  margin: 10px 0;
  overflow: hidden;
}
section .content #comments #comment-form img {
  width: 100%;
}
section .content #comments #comment-form textarea {
  margin-bottom: 5px;
}
section .content #comments #comment-form .replyto {
  padding-top: 5px;
  font-size: 1em;
  display: inline-block;
}
section.page404 h1 {
  font-size: 20em;
  text-align: center;
}
section.page404 h1 span {
  font-size: 40px;
  font-weight: 700;
  display: block;
}
section#profile {
  padding-bottom: 0;
}
section#profile .profile-cover {
  background: #353742;
  width: 100%;
  height: 250px;
  position: relative;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}
section#profile .profile-cover img {
  width: 100%;
  height: 250px;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}
section#profile .profile-menu {
  position: relative;
}
section#profile .profile-menu img {
  position: absolute;
  top: -50px;
  left: 25px;
  width: 100px;
  border: 2px solid #fff;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
}
section#profile .profile-menu .profile-menu-list {
  position: relative;
  margin-left: 150px;
  list-style: none;
  min-height: 65px;
  padding: 0;
}
section#profile .profile-menu .profile-menu-list li {
  display: inline-block;
  margin-right: 10px;
  padding: 20px 0 0 10px;
}
section#profile .profile-menu .profile-menu-list li a {
  font-size: 14px;
  color: #3f444e;
  font-weight: 700;
}
section#profile .profile-menu .profile-menu-list li a:hover {
  color: #3f444e;
}
section#profile .profile-menu .profile-menu-list li a.current {
  color: #ac1c21;
}
section#profile .profile-menu .profile-menu-list li.subscribe {
  border-right: 0;
  padding-top: 11px;
}
section#profile .profile-menu .profile-menu-list li.subscribe a {
  color: #d8232a;
  border: 1px solid #d8232a;
  display: inline-block;
  padding: 10px;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}
section#profile .profile-menu .profile-menu-list li.subscribe a:hover,
section#profile .profile-menu .profile-menu-list li.subscribe a.active {
  background: #d8232a;
  color: #fff;
}
section#profile .profile-menu .profile-menu-list li.subscribe a span {
  background: #d8232a;
  color: #fff;
  padding: 0 5px;
  margin-left: 5px;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}
section#profile .profile-menu .profile-menu-list li.profile-name {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}
section#profile .profile-menu .profile-menu-list li.profile-name a {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
}
section#profile .profile-about p {
  padding: 8px 0;
  border-bottom: 1px solid #e6e6e6;
}
section#profile .profile-about p:last-child {
  border-bottom: 0;
}
section#profile .profile-about .fa {
  margin-right: 10px;
}
section#profile .profile-subscribers img {
  width: 54px;
  margin-bottom: 10px;
}
section#profile .profile-sidebar a {
  color: #666666;
}
section#profile .profile-sidebar .subscribers img {
  width: 61px;
  margin: 5px;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}
section#upload .upload-switcher {
  border-bottom: 1px solid #e6e6e6;
  overflow: hidden;
}
section#upload .upload-switcher a {
  border-top: 0;
  border-bottom: 0;
  border-left: 0;
  float: left;
  display: inline-block;
  text-align: center;
  padding: 10px;
  font-weight: 700;
  margin-bottom: 10px;
  width: 50%;
}
section#upload .upload-switcher a.full {
  width: 100%;
}
section#upload .upload-switcher a:hover,
section#upload .upload-switcher a.active {
  background: #d8232a;
  color: #fff;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}
section#upload .upload-switcher a:hover span,
section#upload .upload-switcher a.active span {
  color: #f7d0d1;
}
section#upload .upload-switcher a span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #8c8c8c;
}
section#upload .upload-switcher a:last-child {
  border-right: 0;
}
section#login .centered {
  margin: 0 auto 30px;
}
section#login .centered .site_logo {
  margin-top: 50px;
  margin-bottom: 50px;
  text-align: center;
  background: transparent;
}
section#login .centered .site_logo a {
  color: #3f444e;
  font-size: 30px;
}
section#login .centered .site_logo img {
  max-height: 80px;
  background: transparent;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}
section#login .centered.form {
  max-width: 450px;
  width: 100%;
}
section#login .centered.form .input-group,
section#login .centered.form .form-group {
  margin-bottom: 25px;
}
section#login .centered.form #forgot {
  margin-top: 8px;
  font-size: 1em;
}
section#login .centered.form span.check-box {
  margin-left: 5px;
}
section#login .centered.form label {
  width: 100%;
}
section#login .centered.form label a {
  font-size: 11px;
}
section#login .centered form.passform {
  width: 100%;
  padding: 20px;
}
section#login .centered .social {
  margin-bottom: 20px;
}
section#login .centered .social .btn {
  padding: 15px;
  display: block;
  border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
}
section#login .centered .social .btn:first-child {
  border-radius: 2px 2px 0 0 !important;
  -moz-border-radius: 2px 2px 0 0 !important;
  -webkit-border-radius: 2px 2px 0 0 !important;
}
section#login #forgot_form {
  display: none;
}
section.embed_subscribe h3 {
  margin: 0 0 10px;
}
section.embed_subscribe h3 a {
  color: #fff !important;
}
section.embed_subscribe p {
  color: #dcdee3;
}
section.embed_subscribe img {
  max-height: 200px;
  max-width: 200px;
  text-align: center;
}
section.embed_subscribe .embed_promo {
  font-size: 16px;
}
section.embed_subscribe .embed_promo span {
  display: block;
  font-size: 12px;
  color: #dcdee3;
}
section .category_holder {
  font-size: 18px;
  margin-bottom: 10px;
}
section .category_holder i {
  background: rgba(0, 0, 0, 0);
  color: #d8232a;
  padding: 15px;
  margin-right: 10px;
  vertical-align: middle;
  font-size: 20px;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}
section .category_holder a.btn-primary {
  margin-top: 7px;
  background: #d8232a;
  padding: 10px;
  color: #fff;
  border: 0;
}
/*
  Footer
 */
footer {
  border-top: 1px solid #e6e6e6;
  background: #d7d7d7;
  color: #3f444e;
  padding: 45px 0;
}
footer .footer-logo h2 {
  margin-top: 0;
}
footer .footer-logo h2 small {
  margin-top: 5px;
  display: block;
}
footer .footer-logo h2 > a {
  font-size: 0.7em;
  color: #343840;
  margin-left: 5px;
  vertical-align: middle;
}
footer .footer-logo .btn {
  background: #343840;
  font-weight: 700;
}
footer .footer-logo .btn:hover {
  background-color: #2a2e35;
}
footer .footer-logo .btn.btn-fb {
  color: #3B5998;
}
footer .footer-logo .btn.btn-tw {
  color: #409DD5;
}
footer .footer-link a {
  font-weight: 700;
  color: #343840;
  margin-left: 5px;
  vertical-align: middle;
}
footer a.rss-feed {
  color: #FF702B;
  font-size: 1.5em;
}
footer .languages {
  position: relative;
  clear: both;
  display: inline-block;
  text-align: left;
}
footer .languages > a {
  color: #343840;
  margin-left: 10px;
  font-size: 18px;
}
footer .languages .langs {
  width: 310px;
  display: none;
  padding: 8px;
  background: #ffffff;
  position: absolute;
  bottom: 22px;
  right: 0;
  border-radius: 2px 2px 0 2px;
  -moz-border-radius: 2px 2px 0 2px;
  -webkit-border-radius: 2px 2px 0 2px;
}
footer .languages .langs a {
  width: 90px;
  color: #3f444e !important;
  display: block;
  float: left;
}
div.tagsinput {
  border: 1px solid #CCC;
  background: #FFF;
  padding: 5px;
  width: 100%;
  min-height: 32px;
  overflow-y: auto;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}
div.tagsinput:hover {
  border-color: #2378D8;
}
div.tagsinput span.tag {
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  display: block;
  float: left;
  padding: 5px;
  text-decoration: none;
  background: #2378D8;
  color: #fff;
  margin-right: 5px;
  margin-bottom: 5px;
  font-family: helvetica;
  font-size: 13px;
}
div.tagsinput span.tag a {
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  font-size: 11px;
}
div.tagsinput input {
  width: 80px;
  margin: 0px;
  font-family: helvetica;
  font-size: 1em;
  border: 1px solid transparent;
  padding: 5px;
  background: transparent;
  color: #000;
  outline: 0px;
  margin-right: 5px;
  margin-bottom: 5px;
}
div.tagsinput div {
  display: block;
  float: left;
}
.tags_clear {
  clear: both;
  width: 100%;
  height: 0px;
}
.not_valid {
  background: #d8232a !important;
  color: #fff !important;
}
.nav-pills > li.active > a,
.nav-pills > li > a:focus,
.nav-pills > li > a:active {
  background: #d8232a;
  color: #fff;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
}
#recaptcha_widget_div {
  background: #fff;
  margin-bottom: 10px;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}
#recaptcha_widget_div .recaptchatable {
  border: 0px solid transparent !important;
}
#recaptcha_widget_div .recaptchatable .recaptcha_image_cell {
  background: transparent;
}
#recaptcha_widget_div .recaptchatable .recaptcha_image_cell center img {
  width: 250px;
  height: 54px;
}
#recaptcha_widget_div .recaptchatable #recaptcha_response_field {
  background: #ffffff;
  border: 1px solid #cccccc !important;
  color: #3f444e;
  padding: 5px 8px;
}
#recaptcha_logo,
#recaptcha_privacy {
  display: none;
}
.social-media {
  margin-top: 10px;
}
.social-media a.active .fa {
  color: #d8232a;
  border-color: #d8232a;
}
.social-media .fa {
  font-size: 16px;
  padding: 8px 12px;
  margin-right: 5px;
  color: #fff;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}
.social-media .fa:hover {
  opacity: 0.8;
}
.social-media .fa-thumbs-up,
.social-media .fa-chevron-up,
.social-media .fa-thumbs-down,
.social-media .fa-chevron-down {
  background: transparent;
  color: #888f9e;
  border: 1px solid #c0c4cc;
}
.social-media .comments-trigger {
  background: transparent;
  color: #888f9e;
  border: 1px solid #c0c4cc;
  display: inline-block;
  padding: 8px 12px 6px;
  margin-right: 5px;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}
.social-media .comments-trigger .fa {
  color: #888f9e;
  margin-right: 5px;
  padding: 0;
}
.social-media .fa-facebook {
  background: #3B5998;
}
.social-media .fa-google {
  background: #D34836;
}
.social-media .fa-twitter {
  background: #409DD5;
}
.social-media .fa-reddit {
  background: #DFE8F2;
  color: #2378D8;
}
.social-media .fa-digg {
  background: #EFEFEF;
  color: #3f444e;
}
.social-media .fa-linkedin {
  background: #4875B4;
}
.social-media .fa-stumbleupon {
  background: #EB4923;
  color: #fff;
}
.social-media .fa-share-alt {
  background: #3f444e;
  color: #fff;
}
.notifyjs-bootstrap-success {
  background: #3ecf8e !important;
  color: #fff !important;
  text-shadow: none !important;
  padding: 5px 10px !important;
  box-shadow: none;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}
.notifyjs-bootstrap-error {
  background: #d8232a !important;
  color: #fff !important;
  text-shadow: none !important;
  padding: 5px 10px !important;
  box-shadow: none;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}
.notifyjs-bootstrap-info {
  background: #2378D8 !important;
  color: #fff !important;
  text-shadow: none !important;
  padding: 5px 10px !important;
  box-shadow: none;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}
.pace .pace-progress {
  background: #d8232a;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  height: 2px;
  box-shadow: 0 0 1px #c21f26;
  -webkit-transition: width 1s;
  -moz-transition: width 1s;
  -o-transition: width 1s;
  transition: width 1s;
}
.pace-inactive {
  display: none;
}
div#infscr-loading {
  text-align: center;
}
div#infscr-loading img {
  width: 48px;
  margin-bottom: 5px;
}
/*
  Responsive Small Desktop Screen - Tablet
 */
@media screen and (max-width: 1200px) {
  .video-content,
  .video-sidebar {
    width: auto !important;
  }
  body ul.media li:nth-child(5n) {
    margin-right: 15px;
  }
  body ul.media li:nth-child(3n) {
    margin-right: 0;
  }
  body ul.media li:nth-child(4n) {
    margin-right: 15px;
  }
  body ul.media li {
    max-width: 205px;
    margin-right: 15px;
  }
  body ul.media.media-row li {
    max-width: 206px;
    margin-right: 10px;
  }
  body ul.media.media-row li:nth-child(5n) {
    margin-right: 10px;
  }
  body ul.media.media-row li:nth-child(6n) {
    margin-right: 0px;
  }
  body ul.media.media-row li:nth-child(3n) {
    margin-right: 0;
  }
  body ul.media.media-row li:nth-child(4n) {
    margin-right: 10px;
  }
}
@media screen and (max-width: 996px) {
  header {
    padding-bottom: 15px;
  }
  .content,
  .sidebar {
    width: auto !important;
  }
  body ul.media li:nth-child(5n) {
    margin-right: 15px;
  }
  body ul.media li:nth-child(3n) {
    margin-right: 0;
  }
  body ul.media li:nth-child(4n) {
    margin-right: 15px;
  }
  body ul.media li {
    max-width: 223px;
    margin-right: 15px;
  }
  body ul.media.media-row li {
    max-width: 214px;
    margin-right: 10px;
  }
  body ul.media.media-row li:nth-child(5n) {
    margin-right: 10px;
  }
  body ul.media.media-row li:nth-child(6n) {
    margin-right: 0;
  }
  body ul.media.media-row li:nth-child(3n) {
    margin-right: 0;
  }
  body ul.media.media-row li:nth-child(4n) {
    margin-right: 10px;
  }
}
@media screen and (max-width: 768px) {
  .ads {
    height: auto !important;
  }
  .ads:before {
    content: ' ' !important;
  }
  #main-menu {
    display: none;
  }
  ul.media li,
  ul.media.media-wide li {
    max-width: 48% !important;
  }
  ul.media li img,
  ul.media.media-wide li img {
    max-height: 200px !important;
  }
  ul.media li:nth-child(2n),
  ul.media.media-wide li:nth-child(2n) {
    margin-right: 0 !important;
  }
  ul.media li:nth-child(2n+1),
  ul.media.media-wide li:nth-child(2n+1) {
    margin-right: 15px !important;
  }
  ul.media li:nth-child(5n),
  ul.media.media-wide li:nth-child(5n) {
    margin-right: 15px !important;
  }
  ul.media.media-sidebar li .mediabg,
  ul.media.media-wide.media-sidebar li .mediabg {
    min-height: 120px !important;
  }
  ul.media.media-sidebar-featured li,
  ul.media.media-wide.media-sidebar-featured li {
    width: 49%;
    float: left;
    min-height: 150px;
  }
  ul.media.media-sidebar-featured li img,
  ul.media.media-wide.media-sidebar-featured li img {
    width: 100px !important;
    margin-right: 20px;
  }
  ul.media.media-sidebar-featured li h4,
  ul.media.media-wide.media-sidebar-featured li h4 {
    font-size: 12px !important;
    margin-top: 5px !important;
  }
  ul.media.media-sidebar-featured li h4 span,
  ul.media.media-wide.media-sidebar-featured li h4 span {
    margin-top: 5px !important;
  }
  ul.media.media-sidebar-featured li:nth-child(2n-1),
  ul.media.media-wide.media-sidebar-featured li:nth-child(2n-1) {
    margin-right: 4%;
  }
  ul.media.media-sidebar-featured li:nth-child(3n),
  ul.media.media-wide.media-sidebar-featured li:nth-child(3n) {
    margin-right: 0px;
  }
  ul.media.media-row li,
  ul.media.media-wide.media-row li {
    width: 47.5%;
    max-width: 300px;
    margin-right: 2%;
  }
  ul.media.media-row li:nth-child(2n),
  ul.media.media-wide.media-row li:nth-child(2n) {
    margin-right: 2%;
  }
  ul.media.media-row li:nth-child(3n),
  ul.media.media-wide.media-row li:nth-child(3n) {
    margin-right: 0;
  }
  .profile-menu-list li a {
    font-size: 13px !important;
  }
  .profile-menu-list .pull-right a {
    margin-top: 5px;
  }
  .profile-menu-list .pull-right.subscribe a {
    margin-top: 0;
  }
}
@media screen and (max-width: 450px) {
  #modal-alert {
    max-width: 350px !important;
  }
  header {
    padding-bottom: 15px;
  }
  header .nav-list {
    float: none !important;
    padding: 10px 0 0 10px;
    margin-top: 10px;
    width: 100%;
  }
  header .nav-list li.dropdown {
   
  }
  ul.media li,
  ul.media.media-wide li,
  ul.media.media-sidebar-featured li,
  ul.media.media-row li {
    max-width: 100% !important;
    width: 100%;
  }
  ul.media li h4,
  ul.media.media-wide li h4,
  ul.media.media-sidebar-featured li h4,
  ul.media.media-row li h4 {
    max-height: 50px;
    min-height: 10px;
    padding-bottom: 0;
  }
  ul.media li img,
  ul.media.media-wide li img,
  ul.media.media-sidebar-featured li img,
  ul.media.media-row li img {
    max-height: 200px !important;
  }
  body .media.media-grid .media-item {
    display: block;
    width: 100% !important;
  }
  body .media.media-grid .media-item .mediathumb {
    width: 100% !important;
    float: none;
    display: block;
  }
  body .media.media-grid .media-item .mediainfo {
    width: 100% !important;
    float: none;
  }
  body .media.media-grid .media-item span.mediavotes,
  body .media.media-grid .media-item span.mediacomments {
    display: none !important;
  }
  section .content.video .video-info .video-author img.video-author-avatar {
    max-width: 38px;
    height: 38px;
    display: none;
  }
  .video-player iframe,
  .media-player iframe,
  .video-player embed,
  .media-player embed,
  .video-player img,
  .media-player img {
    height: auto;
    min-height: 150px !important;
    height: 200px !important;
  }
  .video-option ul.share li.right {
    margin-left: 0 !important;
  }
  .video-option ul.share li.right a {
    font-size: 10px !important;
  }
  .video-option ul.share li.right:nth-child(3) {
    display: none;
  }
  .social-media a {
    margin-bottom: 10px;
    display: inline-block;
  }
  .profile-menu img {
    position: relative !important;
    left: 32% !important;
  }
  .profile-menu .profile-menu-list {
    display: block;
    overflow: hidden;
    width: 100%;
    margin-left: 15px !important;
    margin-top: 0;
  }
  .profile-menu .profile-menu-list li {
    width: 100%;
    float: none;
  }
  .profile-menu .profile-menu-list li a {
    font-size: 13px !important;
  }
  .profile-menu .profile-menu-list li.subscribe a {
    display: block !important;
  }
  .profile-menu .profile-menu-list .pull-right a {
    margin-top: 5px;
  }
  .profile-menu .profile-menu-list .pull-right.subscribe a {
    width: 93%;
  }
  .video-sidebar .nav-sidebar li img {
    width: 100px !important;
    margin-right: 20px;
  }
  .video-sidebar .nav-sidebar li h4 {
    font-size: 12px !important;
    margin-top: 5px !important;
  }
  .video-sidebar .nav-sidebar li h4 span {
    margin-top: 5px !important;
  }
}
.preview-video {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.mediacontainer {
  position: relative;
  display: block;
}

