/* HTML elements */
body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-family: "Helvetica Neue", Helvetica, Verdana, sans-serif;
}
table {
    width: 100%;
}
a {
    color: #EF4136;
    text-decoration: none;
}
a:link, a:visited {
    text-decoration: none;
    color: #EF4136;
}
a:active, a:focus {
	outline: none;
    color: #EF4136;
}
h1, h2, h3, h4, h5, h6 {
    margin: 5px 0;
	transition:all 0.3s ease 0s;
	outline: none;
	font-weight: bold;
}
a, button, .btn {
/*	transition:all 0.3s ease 0s;*/
	outline: none;
}
.form-control {
    min-width: 100%;
    max-width: 100%;
}
.text-break {
    border: 0;
    height: 3px;
    width: 100%;
}
.dropdown-divider {
    height: 1px;
    margin: 4px 0;
    overflow: hidden;
}
.transparent {
    opacity: 0;
}
.bronze {
    color: #CD7F32;
}
.silver {
    color: #C0C0C0;
}
.gold {
    color: #FFD700;
}
.platinum {
    color: #E5E4E2;
}

/* Common classes */
.admin-text {
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    text-align: center;
    font-weight: bold;
    color: #EF4136;
}
.overflow-hidden {
	overflow: hidden;
}
.text-uppercase {
	text-transform: uppercase;
}
.wow {
	visibility: hidden;
}
.btn-send {
	background: #EF4136;
	color: white;
	padding: 8px 30px;
	font-size: 16px;
	outline: none;	
}
.btn-send:hover,
.btn-send:active,
.btn-send:focus {
	 background: #EF4136;
	 color: white;
}
.help {
    font-size: 12px;
}
.action-icon:hover {
    transform: scale(1.3);
}
.action-icon.fa-rotate-90:hover {
    transform: scale(1.3) rotate(90deg);
}
.action-icon.fa-rotate-270:hover {
    transform: scale(1.3) rotate(270deg);
}
.sensitivity-warning {
    margin-bottom: 10px;
    width: 100%;
    border: thin solid #777777;
    padding: 5px;
    text-align: center;
}
.sensitivity-warning a {
    font-weight: bold;
    color: #777777;
}
.sensitivity-warning:hover a {
    color: #EF4136;
}
.join-bitchute-now {
    border-radius: 4px;
    padding: 10px;
    background: #EF4136;
    color: white;
    font-size: 16px;
    font-weight: bold;
}
.container.narrow {
    max-width: 700px
}
.payment-provider-notice {
    padding: 0 0 15px;
}
.payment-provider-notice p {
    margin: 0;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.2em;
}

/* Easy Formatting Classes */
.mt5 { margin-top: 5px; }
.mt10 { margin-top: 10px; }
.mt15 { margin-top: 15px; }
.mt20 { margin-top: 20px; }
.mb5 { margin-bottom: 5px; }
.mb10 { margin-bottom: 10px; }
.mb15 { margin-bottom: 15px; }
.mb20 { margin-bottom: 20px; }
.ml5 { margin-left: 5px; }
.ml10 { margin-left: 10px; }
.ml15 { margin-left: 15px; }
.ml20 { margin-left: 20px; }
.mr5 { margin-right: 5px; }
.mr10 { margin-right: 10px; }
.mr15 { margin-right: 15px; }
.mr20 { margin-right: 20px; }

/* Easy Formatting Classes */
.pt5 { padding-top: 5px; }
.pt10 { padding-top: 10px; }
.pt15 { padding-top: 15px; }
.pt20 { padding-top: 20px; }
.pb5 { padding-bottom: 5px; }
.pb10 { padding-bottom: 10px; }
.pb15 { padding-bottom: 15px; }
.pb20 { padding-bottom: 20px; }
.pl5 { padding-left: 5px; }
.pl10 { padding-left: 10px; }
.pl15 { padding-left: 15px; }
.pl20 { padding-left: 20px; }
.pr5 { padding-right: 5px; }
.pr10 { padding-right: 10px; }
.pr15 { padding-right: 15px; }
.pr20 { padding-right: 20px; }

/* Vertical Alignment */
.text-top { vertical-align: top; }
.text-middle { vertical-align: middle; }
.text-bottom { vertical-align: bottom; }

/* Horizontal Alignment */
.float-left { float: left; }
.float-center { margin-left: auto; margin-right: auto; }
.float-right { float: right; }

/* Checkbox Styling */
.checkbox label:after {
    content: '';
    display: table;
    clear: both;
}
.checkbox .cr {
    position: relative;
    display: inline-block;
    border: 1px solid #a9a9a9;
    border-radius: .25em;
    width: 1.3em;
    height: 1.3em;
    float: left;
    margin-right: .5em;
}
.checkbox .cr .cr-icon {
    position: absolute;
    top: 1px;
    left: 1px;
    color: white;
}
.checkbox label input[type="checkbox"] {
    display: none;
}
.checkbox label input[type="checkbox"]+.cr>.cr-icon {
    opacity: 0;
}
.checkbox label input[type="checkbox"]:checked+.cr {
    border-color: #30A247;
    background-color: #30A247;
}
.checkbox label input[type="checkbox"]:checked+.cr>.cr-icon {
    opacity: 1;
}
.form-group .checkbox,
.notification-table .checkbox {
    margin: 0;
}

/* Switch Styling */
.switch {
    position: relative;
    display: inline-block;
    height: 18px;
    width: 34px;
    border: 1px solid white;
    border-radius: 10px;
}
.switch input {
    display: none;
}
.switch .slider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    cursor: pointer;
    background-color: #EF4136;
    border-radius: 10px;
    transition: 0.3s;
}
.switch .slider:before {
    position: absolute;
    top: 1px;
    left: 1px;
    height: 14px;
    width: 14px;
    background-color: white;
    border-radius: 7px;
    transition: 0.3s;
    content: '';
}
.switch input:checked + .slider {
    background-color: #30A247;
}
.switch input:checked + .slider:before {
    transform: translateX(16px);
}

/* Action Button Styling */
.action-button {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 50;
    font-size: 30px;
    line-height: 1em;
    color: #777777;
    opacity: 0;
}
.action-button:hover {
    color: #EF4136;
}

/* Toolbox Button Styling */
.toolbox {
    background: inherit;
}
.toolbox-left {
    position: absolute;
    top: -3px;
    left: 0;
    padding: 2px 0 2px 2px;
}
.section .toolbox-left {
    top: 11px;
    left: 12px;
}
.toolbox-right {
    position: absolute;
    top: -3px;
    right: -4px;
    padding: 2px 2px 2px 2px;
}
.section .toolbox-right {
    top: 11px;
    right: 12px;
}
.toolbox-button {
    display: inline-block;
    font-size: 34px;
    line-height: 1em;
    color: #777777;
}
.toolbox-button:hover {
    color: #EF4136;
}

/* Ninja Image */
.ninja {
    display: block;
    margin: 20px auto;
    width: 200px;
}

/* Loader */
#loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 998;
}
#loader {
  position: fixed;
  margin: auto;
  left: 0;
  right: 0;
  top: 53%;
  width: 90px;
}
#loader ul {
  margin: 0;
  list-style: none;
  width: 90px;
  position: relative;
  padding: 0;
  height: 10px;
}
#loader ul li {
  position: absolute;
  width: 3px;
  height: 0;
  background-color: #EF4136;
  bottom: 0;
}
@keyframes sequence1 {
  0% {
    height: 10px;
  }
  50% {
    height: 50px;
  }
  100% {
    height: 10px;
  }
}
@keyframes sequence2 {
  0% {
    height: 20px;
  }
  50% {
    height: 65px;
  }
  100% {
    height: 20px;
  }
}
#loader li:nth-child(1) {
  left: 0;
  animation: sequence1 0.8s ease infinite 0;
}
#loader li:nth-child(2) {
  left: 15px;
  animation: sequence2 0.8s ease infinite 0.1s;
}
#loader li:nth-child(3) {
  left: 30px;
  animation: sequence1 0.8s ease-in-out infinite 0.2s;
}
#loader li:nth-child(4) {
  left: 45px;
  animation: sequence2 0.8s ease-in infinite 0.3s;
}
#loader li:nth-child(5) {
  left: 60px;
  animation: sequence1 0.8s ease-in-out infinite 0.4s;
}
#loader li:nth-child(6) {
  left: 75px;
  animation: sequence2 0.8s ease infinite 0.5s;
}

/* Lazy loading. */
.lazyload,
.lazyloading {
	opacity: 0;
}
.lazyloaded {
	opacity: 1;
	transition: opacity 0.3s;
}

/* Signup alert - Default theme colours */
#alert-signup {
    color: #848385;
    background: #111012;
    position: fixed;
    top: -65px;
    width: 100vw;
    height: 65px;
    padding: 10px;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: medium solid #EF4136;
    border-radius: 0;
    margin: auto;
    -webkit-transition: top 0.3s ease-in;
    -moz-transition: top 0.3s ease-in;
    -o-transition: top 0.3s ease-in;
    transition: top 0.3s ease-in;
    z-index: 999;
}
#alert-signup .close {
    color: white;
    padding: 10px;
}
#alert-signup .close:hover {
    color: #EF4136;
    transform: scale(1.3);
}
#alert-signup a, #alert-signup a:hover, #alert-signup a:focus {
    text-decoration: none;
    cursor: pointer;
    color: #EF4136;
    font-weight: bold;
}

/* Navigation top menu bar */
#nav-top-menu {
    background-position: 400px 0;
    background-repeat: no-repeat;
    position: fixed;
    width: 100vw;
    -webkit-transition: top 0.3s ease-in;
    -moz-transition: top 0.3s ease-in;
    -o-transition: top 0.3s ease-in;
    transition: top 0.3s ease-in;
	z-index: 999;
    -webkit-backface-visibility: hidden;
}
@media (max-width:991px){
    #nav-top-menu {
        background-position: 0 0;
    }
}
#nav-top-menu .menu-left-container {
    padding: 0 5px;
    float: left;
}
#nav-top-menu .menu-right-container {
    padding: 0 5px;
    float: right;
}
#nav-top-menu .logo {
    display: inline-block;
	white-space: nowrap;
	height: 60px;
}
#nav-top-menu .logo img {
	margin: 5px 0;
    height: 50px
}
#nav-top-menu .logo .logo-icon {
    padding: 0 6px 0 0;
}
#nav-top-menu .search-box {
    position: relative;
    top: 2px;
    display: inline-block;
    margin-left: 15px;
    width: 250px;
}
#nav-top-menu .search-box .form-control {
	position: relative;
	padding: 6px 22px;
	height: 24px;
	background: transparent;
	border: none;
	box-shadow: none;
	transition: padding 0.3s ease-in-out 0.05s;
}
#nav-top-menu .search-box .search-icon {
	position: absolute;
	left: 4px;
	top: 50%;
	margin-top: -10px;
	border: none;
	box-shadow: none;
	background: transparent;
	padding: 0;	
	transition: left 0.3s ease-in-out 0.05s;
}
#nav-top-menu .search-box .form-control:focus {
	padding-left: 5px;
}
#nav-top-menu .search-box .search-icon:focus,
#nav-top-menu .search-box .form-control:focus ~ .search-icon {
	left: calc(100% - 18px);
}
#nav-top-menu .search-box .search-icon i.fas {
	font-size: 14px;
}
#nav-top-menu .user-link {
    position: relative;
    display: inline-block;
    margin: 15px 5px 0;
    cursor: pointer;
}
#nav-top-menu .login a {
    position: relative;
}
#nav-top-menu .dropdown-toggle img {
    display: inline-block;
    width: 50px;
    height: 50px;
    vertical-align: middle;
    border: thin solid transparent;
}
#nav-top-menu .user-link .notify-count {
    position: absolute;
    top: -1px;
    right: -5px;
	font-size: 10px;
	font-weight: bold;
	padding: 1px 4px 0;
	border-radius: 10px;	
	z-index: 1;
}
#nav-top-menu .user-menu {
    position: relative;
    top: -5px;
    display: inline-block;
    margin: 0 18px 0 5px;
}
#nav-top-menu .user-menu .user-menu-icon {
    position: absolute;
    top: 4px;
    left: -1px;
}
#nav-top-menu .user-menu .dropdown-toggle img {
    z-index: 1;
}
#nav-top-menu .user-menu .dropdown-toggle img:hover {
    border-color: #EF4136;
}
#nav-top-menu .dropdown .upload-dropdown {
    right: -102px;
}
#nav-top-menu .dropdown .notification-dropdown {
    right: -64px;
}
#nav-top-menu .dropdown .user-menu-dropdown {
    right: 0;
}
#nav-top-menu .dropdown .upload-dropdown,
#nav-top-menu .dropdown .notification-dropdown,
#nav-top-menu .dropdown .user-menu-dropdown {
    left: auto;
    max-width: calc(100vw - 40px);
}
#nav-top-menu .dropdown .dropdown-item {
    margin-left: 5px;
    margin-right: 5px;
    padding: 4px 10px;
    overflow: hidden;
}
#nav-top-menu .dropdown .notification-view {
    white-space: nowrap;
}
#nav-top-menu .dropdown .dropdown-item .fa-fw {
    margin-right: 8px;
}
#nav-top-menu .dropdown p {
    margin: 0;
}
#nav-top-menu .dropdown i {
    margin-right: 10px;
}
#nav-top-menu .unauth-link {
    position: relative;
    top: -5px;
    display: inline-block;
    margin-right: 20px;
}
.scripted-link, .scripted-link:hover,
#nav-top-menu .unauth-link a {
    text-decoration: none;
    cursor: pointer;
    color: #EF4136;
    font-weight: bold;
}

/* Navigation side menu */
#nav-side-menu {
    position: fixed;
    top: 60px;
    left: -205px;
    width: 200px;
    height: calc(100vh - 60px);
    -webkit-transition: left 0.3s ease-in;
    -moz-transition: left 0.3s ease-in;
    -o-transition: left 0.3s ease-in;
    transition: left 0.3s ease-in;
    z-index: 999;
    display: flex;
    flex-direction: column;
}
#nav-side-menu .side-toggle {
    position: fixed;
    top: 60px;
    left: 0;
    font-size: 22px;
    color: #777777;
    padding: 1px 2px;
    -webkit-transition: left 0.3s ease-in;
    -moz-transition: left 0.3s ease-in;
    -o-transition: left 0.3s ease-in;
    transition: left 0.3s ease-in;
}
#nav-side-menu .side-toggle:hover {
    color: #EF4136;
}
#nav-side-menu .search-box {
    padding: 0 10px;
    margin: 0 0 -20px;
}
#nav-side-menu .search-box .form-control {
	position: relative;
	padding: 0 50px 0 25px;
	background: transparent;
	border: none;
	box-shadow: none;
	transition: padding 0.3s ease-in-out 0.05s;
}
#nav-side-menu .search-box .search-icon {
	position: relative;
	left: 1px;
	top: -27px;
	border: none;
	box-shadow: none;
	background: transparent;
	padding: 0;
	transition: left 0.3s ease-in-out 0.05s;
}
#nav-side-menu .search-box .form-control:focus {
	padding-left: 0;
}
#nav-side-menu .search-box .search-icon:focus,
#nav-side-menu .search-box .form-control:focus ~ .search-icon {
    left: 85%;
}
#nav-side-menu .search-box .search-icon i.fas {
	font-size: 14px;
}
#nav-side-menu .side-content {
    padding: 0 10px 10px;
    overflow-y: auto;
}
#nav-side-menu .side-content .side-heading {
    margin: 5px 0;
    font-size: 18px;
    font-weight: bold;
}
#nav-side-menu .side-content .side-list {
    margin: 0;
    padding: 0;
}
#nav-side-menu .side-content .side-list li a {
	padding: 4px 0 4px 5px;
	display: inline-block;
	width: 100%;
	position: relative;
	text-decoration: none;
}
#nav-side-menu .social-list {
    padding-top: 10px;
    -webkit-backface-visibility: hidden;
}
#nav-side-menu .cc-logos {
    display: flex;
    justify-content: center;
    margin: 8px 0;
    min-height: 25px;
}
#nav-side-menu .cc-logos div {
    margin: 0 6px;
    height: 25px;
    width: 38px;
    text-align: center;
}
#nav-side-menu .cc-logos img {
    display: inline-block;
    margin: auto;
    height: 100%;
}
#nav-side-menu .copyright {
    margin-bottom: 6px;
    font-size: 12px;
    text-align: center;
    color: #777777;
}

/* Navigation menu buffer */
#nav-menu-buffer {
    padding-top: 61px;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

#wrapper {
    min-height: calc(100vh - 108px);
}
#page-footer {
    padding: 6px 0;
    font-size: 12px;
    text-align: center;
    color: #777777;
}
@media (max-width: 1199px) {
    #wrapper {
        min-height: calc(100vh - 126px);
    }
}
@media (max-width: 991px) {
    #wrapper {
        min-height: calc(100vh - 116px);
    }
    #page-footer {
        font-size: 10px;
    }
}
@media (max-width: 767px) {
    #wrapper {
        min-height: calc(100vh - 128px);
    }
    #page-footer {
        font-size: 8px;
    }
}

/* Page Bar */
#page-bar {
    margin-top: 5px;
	padding: 5px 0;
}
#page-bar .page-bar-container {
    position: relative;
    overflow: hidden;
    padding-top: 4px;
    padding-bottom: 4px;
}
@media (max-width: 767px) {
	#page-bar .page-bar-container {
		text-align: center;
	}
}
#page-bar .page-title {
    font-size: 24px;
    font-weight: bolder;
    text-transform: uppercase;
    line-height: 1.1em;
    margin: 0;
}
#page-detail {
    padding: 10px 0;
    margin-bottom: 5px;
}
#page-detail .section {
    padding-top: 10px;
}
#page-detail .section:first-of-type {
    padding-top: 0;
}
#page-detail .section-heading {
    padding-bottom: 10px;
}

/* Show more */
.show-more-container {
    height: 30px;
}
.show-more {
    cursor: pointer;
    border-radius: 5px;
    padding: 4px;
    text-align: center;
}
.show-more span {
    font-size: 10px;
    font-weight: bold;
}

/* Policy pages */
#page-bar .logo-header,
.policy-header {
    padding: 10px 0;
    text-align: center;
}
#page-bar .logo-header img,
.policy-header img {
    width: 70%;
    max-width: 350px;
    margin: auto;
    padding-bottom: 10px;
}
.policy-footer {
    padding-top: 10px;
}

/* Principles */
.principle-table {
    padding-top: 10px;
}
.principle-table td {
    width: 50%;
}
.principle-table th {
    font-size: 18px;
    font-weight: bolder;
    text-transform: uppercase;
}
.principle-table td {
    padding-top: 20px;
    padding-bottom: 10px;
    font-size: 16px;
}
.principle-table th:nth-child(odd),
.principle-table td:nth-child(odd) {
    text-align: right;
    padding-right: 20px;
    border-right: 3px solid #EF4136;
}
.principle-table th:nth-child(even),
.principle-table td:nth-child(even) {
    text-align: left;
    padding-left: 20px;
}
.principle-table:nth-child(2) {
    border-right: 3px solid #EF4136;
}

/* Too long didnt read */
.tldr {
    border: medium solid #777777;
    border-radius: 20px;
    padding: 10px 15px;
    margin: 20px 10px;
}

/* Policies & Contact Us */
.policies-container,
.contact-us-container {
    margin-bottom: 10px;
    text-align: center;
}
.policies-item,
.contact-us-item {
    display: inline-block;
    margin: 10px;
    border: 2px solid #908F90;
    border-radius: 10px;
    padding: 20px 0 10px;
}
.contact-us-item {
    min-width: 210px;
}
.policies-item {
    min-width: 270px;
}
.policies-item:hover,
.contact-us-item:hover {
    border-color: #EF4136;
    transform: scale(1.05);
}

/* Monetization */
#monetization .section .logo {
    max-height: 60px;
}
#select-monetization-provider {
    text-align: center;
}
.monetization-provider {
    display: inline-block;
    width: 260px;
    margin: 0 5px 10px;
    position: relative;
    border: 2px solid #908F90;
    border-radius: 10px;
    padding: 7px 10px;
    text-align: center;
}
.monetization-provider:hover {
    border-color: #EF4136;
    transform: scale(1.04);
    cursor: pointer;
}
.monetization-provider .logo {
    height: 60px;
}
.monetization-provider .logo span {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}
.monetization-provider .logo img {
    display: inline-block;
    max-width: 220px;
    max-height: 60px;
    vertical-align: middle;
}
.monetization-provider .description {
    font-size: 12px;
    padding-top: 10px;
    margin: 0;
}

/* Profile view */
#profile-view {
    background: inherit;
}
#profile-view .section {
    position: relative;
    background: inherit;
}
#profile-view .section .profile-title {
    font-size: 20px;
    font-weight: bold;
    margin: 20px 0;
}
#profile-view .section .date-joined {
    font-size: 12px;
}

/* Profile settings */
#profile-settings {
    padding: 20px 0 10px;
}
#profile-settings .notification-table {
    padding: 0 0 20px;
    white-space: nowrap;
}
#profile-settings .notification-table th {
    padding: 2px 5px;
}
#profile-settings .notification-table td {
    padding: 2px 5px;
}

/* Notification Item */
.notification-unread {
    padding: 1px 5px;
    border-radius: 10px;
}
.notification-read {
    padding: 1px 5px;
    border-radius: 10px;
}
.notification-target {
    padding-left: 5px;
}
.notification-detail {
    font-size: 12px;
    padding-left: 5px;
}

/* Image upload */
.fileupload-container {
    position: relative;
    padding: 25px 15px 15px;
}
.fileupload-container .toolbox-button {
    position: absolute;
    top: 25px;
    right: 15px;
}
#fileupload-spinner {
    position: absolute;
    top: calc(50% - 25px);
    left: calc(50% - 25px);
    line-height: 1em;
    font-size: 50px;
    color: #EF4136;
}

/* Search */
.search-image-container img { 
    width: 100%; 
    padding-bottom: 20px;
}

/* Channel details */
.channel-videos-container {
	margin-bottom: 20px;
	overflow: hidden;
    -webkit-backface-visibility: hidden;
}
.channel-videos-image-container,
.channel-videos-text-container {
    position: relative;
	display: inline-block;
	width: 100%;
}
.channel-videos-image-container:hover .play-overlay {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
.channel-videos-image-container:hover .action-button {
    opacity: 1;
}
.channel-videos-image {
	position: relative;
}
.channel-videos-title {
    margin: 10px 0;
    display: block;
    display: -webkit-box;
    min-height: 1.1em;
    max-height: 2.2em;
    line-height: 1.1em;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.channel-videos-title a {
    font-weight: bold;
}
.channel-videos-text {
    display: block;
    display: -webkit-box;
    min-height: 1.0em;
    max-height: 6.4em;
    line-height: 1.1em;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.channel-videos-text p {
    margin-bottom: 14px;
}
.channel-videos-text p:last-child {
    margin-bottom: 0;
}
@media (max-width: 767px) {
    .channel-videos-image-container,
    .channel-videos-text-container {
        display: inline-block;
        width: 100%;
    }
    .channel-videos-details {
        margin: 10px 0;
        border: 0;
    }
}
.channel-about-details {
    margin: 10px 0;
    padding: 0 5px 10px;
}
.channel-about-details span {
	padding: 0 0 0 10px;
}
.channel-about-list tr td:first-child {
    width: 80px;
}
.creator-monetization .remove {
    color: #30A247;
}
.notify-button {
    margin-left: 5px;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    -moz-transition-property: transform;
    -o-transition-property: transform;
    transition-property: transform;
}
.notify-button:hover, .notify-button:focus, .notify-button:active {
    -webkit-transform: scale(1.2) rotate(10deg);
    -moz-transform: scale(1.2) rotate(10deg);
    -ms-transform: scale(1.2) rotate(10deg);
    -o-transform: scale(1.2) rotate(10deg);
    transform: scale(1.2) rotate(10deg);
}

/* Channel banner */
.channel-banner {
    position: relative;
	display: inline-block;
    text-align: left;
    height: 106px;
	width: 100%;
    margin-top: 5px;
    overflow: hidden;
}
.channel-banner .image-container {
    position: absolute;
    top: 0;
    left: -3px;
    height: 106px;
    width: 106px;
    border-radius: 30px;
    overflow: hidden;
}
.channel-banner .image {
    width: 100px;
    height: 100px;
}
.channel-banner .backdrop {
    position: absolute;
    top: 10px;
    left: 5px;
    width: 100%;
    height: 86px;
}
.channel-banner .details {
    position: absolute;
    bottom: 10px;
    left: 112px;
    width: 100%;
    height: 82px;
    text-align: left;
    white-space: nowrap;
}
.channel-banner .details p {
    margin: 0;
}
.channel-banner .details .name {
    font-size: 24px;
    font-weight: bolder;
}
.channel-banner .actions {
    position: absolute;
    top: 0;
    right: 3px;
    display: flex;
    flex-direction: column;
    padding: 10px 0;
}
.channel-banner .actions .social {
    padding: 10px 0;
    font-size: 15px;
}
.channel-banner .actions .social a {
    padding: 0 3px;
}
.channel-banner .actions .subscriber {
    padding: 4px 0;
}
.channel-banner .actions .subscriber.margins {
    margin: 22px 0;
}
.channel-banner .actions .subscriber .creator-monetization {
    padding: 0 4px;
}
.channel-banner .actions .social,
.channel-banner .actions .subscriber {
    width: 180px;
    height: 41px;
    text-align: center;
}
@media (max-width:991px){
    .channel-banner {
        height: 200px;
    }
    .channel-banner .backdrop {
        height: 180px;
    }
    .channel-banner .details {
        left: 6px;
        text-align: center;
    }
}

.user-tools {
    margin: 40px 0 10px;
    border: medium solid #777777;
    border-radius: 10px;
    padding: 5px;
}
.user-tools button {
    width: 90%;
    margin: 0 auto 10px;
}

/* Moderation table */
.moderation-table th {
    padding: 2px 5px;
}
.moderation-table .nowrap {
    white-space: nowrap;
}
.moderation-table td {
    padding: 2px 5px;
}
#comment-frm-container {
    -webkit-backface-visibility: hidden;
}

/* Subscription list */
.subscription-container {
	display: inline-block;
    text-align: left;
	width: 100%;
	max-width: 400px;
    margin: 10px 0 20px;
    padding: 90px 0 0 10px;
    position: relative;
    overflow: hidden;
}
.subscription-banner {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 100%;
    height: 86px;
}
.subscription-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 106px;
    height: 106px;
    border-radius: 30px;
    overflow: hidden;
}
.subscription-image {
    width: 100px;
    height: 100px;
}
.subscription-button {
    position: absolute;
    top: 15px;
    right: 25px;
    padding: 1px 4px 0;
    font-size: 12px;
}
.subscription-button:focus {
    outline: none;
}
.subscription-notify-button {
    position: absolute;
    top: 15px;
    right: 4px;
    cursor: pointer;
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    -moz-transition-property: transform;
    -o-transition-property: transform;
    transition-property: transform;
}
.subscription-notify-button:hover, .subscription-notify-button:focus, .subscription-notify-button:active {
    -webkit-transform: scale(1.2) rotate(10deg);
    -moz-transform: scale(1.2) rotate(10deg);
    -ms-transform: scale(1.2) rotate(10deg);
    -o-transform: scale(1.2) rotate(10deg);
    transform: scale(1.2) rotate(10deg);
}
.subscription-name {
    margin-right: 5px;
    position: absolute;
    top: 43px;
    left: 111px;
    font-size: 14px;
    font-weight: bold;
    display: block;
    display: -webkit-box;
    height: 2.2em;
    line-height: 1.1em;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.subscription-last-video {
    position: absolute;
    top: 80px;
    left: 111px;
    font-size: 11px;
	font-weight: normal;
}
.subscription-description {
    padding: 20px 10px 7px 10px;
    border-radius: 0 0 5px 5px;
    text-align: justify;
}
.subscription-description-text {
    font-size: 14px;
    display: block;
    display: -webkit-box;
    min-height: 4.75em;
    max-height: 4.75em;
    line-height: 1.2em;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (max-width:767px){
    .subscription-description-text {
        min-height: 0;
    }
}

/* State text */
.state-text {
    font-weight: bold;
    text-transform: uppercase;
    -webkit-backface-visibility: hidden;
}

/* Channel carousel */
#carousel {
    position: relative;
    margin-top: 5px;
    padding: 12px 0 22px;
}
#carousel .carousel-indicators {
  position: absolute;
  bottom: -21px;
  margin: 0;
  left: 0;
  right: 0;
  width: auto;
}
#carousel .carousel-indicators li {
    height: 13px;
    width: 13px;
    border-color: transparent;
    border-radius: 15px;
    background: #EF4136;
}
#carousel .carousel-indicators li.active {
    height: 15px;
    width: 15px;
    border: 2px solid #EF4136;
    background: transparent;
}
#carousel .channels {
    position: absolute;
    bottom: 4px;
    right: 14px;
    font-size: 12px;
    font-weight: bold;
    z-index: 20;
    -webkit-backface-visibility: hidden;
}

/* Play Overlay */
.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
	width: 64px;
	height: 64px;
	margin-top: -32px;
	margin-left: -32px;
    z-index: 10;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    transition: all 0.3s ease-in-out 0.1s;
}

/* Channel Card */
.channel-card {
    position: relative;
    background-color: white;
	display: inline-block;
	width: 100%;
	max-width: 570px;
	overflow: hidden;
}
.channel-card .channel-card-title {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 6px;
    width: 100%;
    max-width: 100%;
    z-index: 20;
    text-align: left;
    font-size: 16px;
    font-weight: bold;
    display: block;
    display: -webkit-box;
    min-height: 1em;
    max-height: 3em;
    line-height: 1em;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.channel-card:hover .play-overlay {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
	transform: scale(1);
}
.channel-card-bottom-shadow {
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
	background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
	background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
	position: absolute;
	width: 110%;
	min-height: 50%;
	left: 0;
	bottom: -2px;
	z-index: 1;
}

/* Shared Video View and Video Duration Elements */
.video-views,
.video-duration {
    position: absolute;
    bottom: 3px;
    z-index: 50;
    padding: 2px 3px 1px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    line-height: 1em;
}
.video-views {
    left: 3px;
}
.video-duration {
    right: 3px;
}

/* Video card */
.video-card {
    position: relative;
	display: inline-block;
    text-align: left;
	width: 100%;
	max-width: 320px;
	margin: 10px auto 10px;
	overflow: hidden;
    -webkit-backface-visibility: hidden;
}
.video-card .video-card-image {
	position: relative;
}
.video-card:hover .play-overlay {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
	transform: scale(1);
}
.video-card:hover .action-button {
    opacity: 1;
}
.video-card .video-card-text {
    padding: 1px 4px;
}
.video-card .video-card-text a {
	text-decoration: none;
}
.video-card .video-card-text p {
}
.video-card .video-card-title {
    margin: 4px 0 6px;
    font-size: 14px;
    font-weight: bold;
    line-height: 1em;
}
.video-card .video-card-channel,
.video-card .video-card-published {
    margin: 1px 0;
    font-size: 12px;
    display: block;
    display: -webkit-box;
    min-height: 1.1em;
    max-height: 1.1em;
    line-height: 1.1em;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Video Trending */
.video-trending-container {
	margin: 10px 0;
	overflow: hidden;
    -webkit-backface-visibility: hidden;
}
.video-trending-image-container,
.video-trending-text-container {
    position: relative;
	display: inline-block;
	width: 100%;
}
.video-trending-image-container:hover .play-overlay {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
.video-trending-image-container:hover .action-button {
    opacity: 1;
}
.video-trending-text-container {
    height: 190px;
}
.video-trending-image {
	position: relative;
}
.video-trending-title {
    margin: 5px 0 0;
    display: block;
    display: -webkit-box;
    min-height: 1.2em;
    max-height: 2.5em;
    line-height: 1.2em;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.video-trending-channel {
    margin: 10px 0;
    display: block;
    display: -webkit-box;
    height: 1.2em;
    line-height: 1.2em;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.video-trending-title a {
    font-size: 16px;
    font-weight: bold;
}
.video-trending-channel a {
    font-size: 14px;
    font-weight: bold;
}
.video-trending-text {
    margin: 5px 0;
    display: block;
    display: -webkit-box;
    height: 6.4em;
    line-height: 1.1em;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.video-trending-text p {
    margin-bottom: 14px;
}
.video-trending-text p:last-child {
    margin-bottom: 0;
}
.video-trending-details {
    position: absolute;
    left: 0;
    bottom: 0;
}
@media (max-width: 1199px) {
    .video-trending-text-container {
        height: 155px;
    }
    .video-trending-text {
        height: 4.3em;
        -webkit-line-clamp: 4;
    }
}
@media (max-width: 991px) {
    .video-trending-text-container {
        height: 125px;
    }
    .video-trending-title {
        max-height: 4.9em;
        -webkit-line-clamp: 4;
    }
}
@media (max-width: 767px) {
    .video-trending-image-container,
    .video-trending-text-container {
        display: inline-block;
        width: 100%;
        max-width: 640px;
    }
    .video-trending-text-container {
        height: 110px;
    }
    .video-trending-title {
        max-height: 3.7em;
        -webkit-line-clamp: 3;
    }
}

/* Video sensitivity overlay */
.video-sensitivity-overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

/* Side bar */
.sidebar-next {
    position: relative;
}
.sidebar-autoplay {
    position: absolute;
    top: 9px;
    right: 10px;
}
.sidebar-heading {
	background: #EF4136;
	color: white;
	text-align: left;
	font-size: 16px;
	text-transform: uppercase;
	margin-top: 0;
	margin-bottom: 5px;
	padding: 10px 15px;
}
.sidebar-empty {
    padding: 10px 15px;
}

/* Cookie alert */
#alert-cookie {
    padding: 10px 10px 0 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
    margin-bottom: 0;
    background: #111012;
    border-top: 0;
    border-bottom: 0;
    border-radius: 0;
    z-index: 999;
}
#alert-cookie p {
    padding-right: 10px;
    color: #848385;
	font-size: 13px;
}
#alert-cookie button {
    background: #111012;
    color: #848385;
    margin: 0;
    padding: 0 10px;
    border: none;
}

/* Tags */
.tags ul {
	font-size: 0px;
	margin: 0 auto;
}
.tags ul li {
	margin-right: 4px;
	padding: 0px;
	display: inline-block;
	margin-bottom: 4px;
}
.tags ul li a {
	font-size: 13px;
	padding: 5px 8px;
	background: #e8e8e8;
	color: #979797;
	text-decoration: none;
	text-transform: uppercase; 
	display: inline-block;
}
.tags ul li a:hover {
	background: #ef4136;
	color: #fff;
}

/* Modal popups */
.modal-logo {
    height: 40px;
}
.modal-header .close {
    color: #EF4136;
}
.modal-body {
    padding: 10px 15px 5px 15px;
}
.modal form input {
    margin-bottom: 4px;
}
#confirm-modal-detail {
    color: #EF4136;
}

/* Override Bootstrap Tab Styling */
.nav-tabs>li.active {
    border-bottom: thin solid #EF4136;
}
.nav-tabs>li>a, .nav-tabs>li>a:hover, .nav-tabs>li>a:focus,
.nav-tabs>li.active>a, .nav-tabs>li.active>a:hover, .nav-tabs>li.active>a:focus {
    padding-left: 10px;
    padding-right: 10px;
    border: none;
    background: transparent;
}
.nav-tabs>li>a {
	font-size: 16px;
	text-transform: uppercase;
    padding: 8px 10px 7px;
}
.nav-tabs>li>a:hover {
    border-radius: 10px;
}
.nav-tabs>li.active>a {
    font-weight: bolder;
}
.tab-scroll-left,
.tab-scroll-right {
    position: absolute;
    top: 0;
    cursor: pointer;
    display: none;
    width: 25px;
    height: 37px;
    padding: 9px 0;
    text-align: center;
    white-space: nowrap;
}
.tab-scroll-left {
    left: -15px;
}
.tab-scroll-right {
    right: -15px;
}
.tab-scroll-outer {
    position: relative;
}
.tab-scroll-inner {
    position: relative;
    height: 50px;
    overflow: hidden;
}
.nav-tabs-list {
    position: absolute;
    left: 0;
    top: 0;
    min-width: 5000px;
}
.nav-tabs-list li {
    position: relative;
}
.nav-tabs>li>a {
    font-weight: bold;
    -webkit-backface-visibility: hidden;
}

/* Modal and Sidebar Tab Optimisations */
.modal-body .nav-tabs>li>a,
.modal-body .nav-tabs>li.active>a,
.sidebar .nav-tabs>li>a,
.sidebar .nav-tabs>li.active>a {
	font-size: 12px;
    padding: 6px;
}
.modal-body .tab-content {
    padding: 10px 0 0;
}

/* Override Bootstrap Panel Styling */
.panel,
.panel>.panel-heading,
.panel .panel-body {
    box-shadow: none;
    border: none;
}

/* Bootstrap Clearfix */
@media (min-width:1200px){
    .auto-clear .col-md-1:nth-child(12n+1){clear:left;}
    .auto-clear .col-md-2:nth-child(6n+1){clear:left;}
    .auto-clear .col-md-3:nth-child(4n+1){clear:left;}
    .auto-clear .col-md-4:nth-child(3n+1){clear:left;}
    .auto-clear .col-md-6:nth-child(odd){clear:left;}
    .auto-clear .col-lg-1:nth-child(12n+1){clear:left;}
    .auto-clear .col-lg-2:nth-child(6n+1){clear:left;}
    .auto-clear .col-lg-3:nth-child(4n+1){clear:left;}
    .auto-clear .col-lg-4:nth-child(3n+1){clear:left;}
    .auto-clear .col-lg-6:nth-child(odd){clear:left;}
}
@media (min-width:992px) and (max-width:1199px){
    .auto-clear .col-md-1:nth-child(12n+1){clear:left;}
    .auto-clear .col-md-2:nth-child(6n+1){clear:left;}
    .auto-clear .col-md-3:nth-child(4n+1){clear:left;}
    .auto-clear .col-md-4:nth-child(3n+1){clear:left;}
    .auto-clear .col-md-6:nth-child(odd){clear:left;}
}
@media (min-width:768px) and (max-width:991px){
    .auto-clear .col-sm-1:nth-child(12n+1){clear:left;}
    .auto-clear .col-sm-2:nth-child(6n+1){clear:left;}
    .auto-clear .col-sm-3:nth-child(4n+1){clear:left;}
    .auto-clear .col-sm-4:nth-child(3n+1){clear:left;}
    .auto-clear .col-sm-6:nth-child(odd){clear:left;}
}
@media (max-width:767px){
    .auto-clear .col-xs-1:nth-child(12n+1){clear:left;}
    .auto-clear .col-xs-2:nth-child(6n+1){clear:left;}
    .auto-clear .col-xs-3:nth-child(4n+1){clear:left;}
    .auto-clear .col-xs-4:nth-child(3n+1){clear:left;}
    .auto-clear .col-xs-6:nth-child(odd){clear:left;}
}

/* Fix scrollbar jump on modal open and tab changes */
html {
    overflow-y: scroll;
}
.modal-open {
    padding-right: 0 !important;
}

/* payments related */
.input-icon {
    position: relative;
    margin: auto;
}
.input-icon > i {
    position: absolute;
    display: block;
    transform: translate(0, -50%);
    top: 50%;
    pointer-events: none;
    width: 25px;
    text-align: center;
    font-style: normal;
}
.input-icon > input {
    padding-left: 25px;
    padding-right: 0;
}
.input-icon-right > i {
    right: 0;
}
.input-icon-right > input {
    padding-left: 0;
    padding-right: 25px;
    text-align: right;
}
#percent-slider .slider-selection {
    background: #FF8282;
}
#percent-slider .slider-handle {
    background: #ef4137;
}
#percent-slider .slider-tick {
    background: #FF8282;
}
.tip-slider {
    padding-left: 25px;
    padding-bottom: 50px;
}
.tip-feedback {
    padding-left: 25px;
    font-size: 20px;
}
/* end payments related */

/* VERTICAL BOUNCE */

@-webkit-keyframes vertical {
  0% {
    -webkit-transform: translate(0,-3px);
    transform: translate(0,-3px);
  }

  4% {
    -webkit-transform: translate(0,3px);
    transform: translate(0,3px);
  }

  8% {
    -webkit-transform: translate(0,-3px);
    transform: translate(0,-3px);
  }

  12% {
    -webkit-transform: translate(0,3px);
    transform: translate(0,3px);
  }

  16% {
    -webkit-transform: translate(0,-3px);
    transform: translate(0,-3px);
  }

  20% {
    -webkit-transform: translate(0,3px);
    transform: translate(0,3px);
  }

  22% {
    -webkit-transform: translate(0,0);
    transform: translate(0,0);
  }
}

@keyframes vertical {
  0% {
    -webkit-transform: translate(0,-3px);
    -ms-transform: translate(0,-3px);
    transform: translate(0,-3px);
  }

  4% {
    -webkit-transform: translate(0,3px);
    -ms-transform: translate(0,3px);
    transform: translate(0,3px);
  }

  8% {
    -webkit-transform: translate(0,-3px);
    -ms-transform: translate(0,-3px);
    transform: translate(0,-3px);
  }

  12% {
    -webkit-transform: translate(0,3px);
    -ms-transform: translate(0,3px);
    transform: translate(0,3px);
  }

  16% {
    -webkit-transform: translate(0,-3px);
    -ms-transform: translate(0,-3px);
    transform: translate(0,-3px);
  }

  20% {
    -webkit-transform: translate(0,3px);
    -ms-transform: translate(0,3px);
    transform: translate(0,3px);
  }

  22% {
    -webkit-transform: translate(0,0);
    -ms-transform: translate(0,0);
    transform: translate(0,0);
  }
}

.faa-vertical.animated,
.faa-vertical.animated-hover:hover,
.faa-parent.animated-hover:hover > .faa-vertical {
  -webkit-animation: vertical 2s ease infinite;
  animation: vertical 2s ease infinite;
}



