html, body {
	overflow-x: hidden;
}

body {
	background-color: #000000;
	color: #777;
}

/* Prevent homepage main container from causing horizontal scroll */
.container.mt-3.mb-3 {
	overflow-x: hidden;
}

/* Videos page: allow dropdowns to overflow (Bootstrap menus need this) */
.container.mt-3.mb-3.videos-page{
	overflow: visible;
}

.thetopbar {
    background-color: #333;
    padding: 1px 0;
    text-align: center;

    /* key: allow horizontal scroll instead of wrapping */
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;

    /* hide scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.thetopbar::-webkit-scrollbar { display: none; }

.thetopbar ul {
    list-style: none;
    margin: 0;
    padding: 0 12px;

    /* inline-flex lets it stay centered when short,
       and become scrollable when long */
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: center;
    white-space: nowrap;
}

.thetopbar li {
    flex: 0 0 auto;
    margin: 0;
    display: flex;
    align-items: center;
}

/* bullet separators without adding real text nodes */
.thetopbar li + li::before {
    content: "•";
    color: #666;
    margin: 0 10px;
}

/* prevent link text from wrapping onto multiple lines */
.thetopbar a {
    white-space: nowrap;
    display: inline-block;
}

.thetopbar a.mojo {
    color: #FF3300;
}

.thetopbar a.mojolinks {
    color: #FF9933;
}

.thetopbar a.sfg {
    color: #00cc99;
}
.thetopbar a.rose {
    color: #ff6666;
}

.thetopbar a.purp {
    color:#69F;
}

.thetopbar a {
    color: #fff; /* Link text color */
    text-decoration: none; /* Remove underline from links */
    line-height: 1; /* Line height for tighter vertical alignment */
}

.thetopbar a:hover {
    color: #fff !important; /* Change text color on hover */
    text-shadow: 1px 1px 2px #fff !important; /* drop shadow on hover */
}

/* Header: single update link next to logo */
.top-nav .header-update-link{
    display: inline-block;
    margin-left: 8px;
    vertical-align: middle;
    color: #FF9966; /* matches your previous <font color> */
}
.top-nav .header-update-link:hover{
    color: #fff !important;
    text-shadow: 1px 1px 2px #fff !important;
}


/* Responsive font size for smaller screens */
@media (max-width: 768px) {
    .thetopbar {
        font-size: 10px; /* Smaller font size for mobile devices */
		font-weight: bold;
    }
}

@media (min-width: 769px) {
    .thetopbar {
        font-size: 11px; /* Adjusted smaller size for mid-scale screens */
		font-weight: bold;
    }
}

@media (max-width: 768px) {
    .thetopbar li + li::before { margin: 0 6px; }
}


@media (max-width: 768px) {
    /* Container holding the logo and icons: structured in a row */
    .top-nav .container {
        display: flex;
        flex-direction: column; /* Default stacked order for children */
        align-items: stretch;  /* Ensure items use full width */
    }

    /* Ensure the logo and icons are side-by-side */
    .top-menu {
        display: flex; 
        justify-content: space-between; /* Space between logo and icons */
        align-items: center; /* Vertically center items */
        width: 100%; /* Full-width to take up the container space */
    }

    .top-brand {
        display: flex;
        flex: 1; /* Allow logo to take up available space as needed */
    }

    .float-right {
        display: flex;
        align-items: center;
        flex: 1; /* Allow icons to take up available space as needed */
        justify-content: flex-end; /* Icons stay at the right end */
        gap: 10px; /* Optional spacing between icons */
    }

    .search-top-container {
        width: 100%; /* Full width for the search bar */
        margin-top: 1rem; /* Add some spacing from the elements above */
    }

    .search-top-container input {
        width: 100%; /* Ensure input takes full width */
    }
	
	   .sticky-top {
        position: static !important; /* Override Bootstrap's sticky behavior */
    }
	
	
}


.toggle-container {
    display: flex;
    align-items: center;
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 0; /* tighter */
}

/* Toggle label text */
.toggle-container span {
    font-weight: 700;
    margin-right: 2px;
}

/* Space AFTER each toggle before the next label */
.toggle-container .switch {
    margin-right: 5px;
}

/* Smaller toggles (use on homepage filter bar) */
.toggle-container.toggle-compact {
	margin-bottom: 0;
}
.toggle-container.toggle-compact span {
	font-size: 12px;
}
.toggle-container.toggle-compact .switch {
	width: 28px;
	height: 16px;
	margin-left: 4px;
	margin-bottom: 0;
}
.toggle-container.toggle-compact .slider:before {
	height: 12px;
	width: 12px;
	left: 2px;
	bottom: 2px;
}
.toggle-container.toggle-compact input:checked + .slider:before {
	transform: translateX(12px);
}

.switch {
    position: relative;
    display: inline-block;
    width: 34px;
    height: 20px;
    margin-left: 3px;
    margin-bottom: 0; /* tighter */
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 20px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:checked + .slider:before {
    transform: translateX(14px);
}


.btn-secondary {
    background-color: #4a4a4a;
	border-color: #4a4a4a;
}

.btn-secondary:hover {
    background-color: #6a6a6a;
    border-color: #6a6a6a;
}

.btn-secondary.focus, .btn-secondary:focus {
    box-shadow: none!important;
    background-color: #6a6a6a;
    border-color: #6a6a6a;	
}

.btn-secondary:not(:disabled):not(.disabled).active, .btn-secondary:not(:disabled):not(.disabled):active, .show>.btn-secondary.dropdown-toggle {
    box-shadow: none!important;
    background-color: #6a6a6a;
    border-color: #6a6a6a;	
}

.btn:focus, a:focus, i:focus {
  outline: none;
}

#wrapper {
  min-height: calc(100vh - 119px); 
  display: flex;
  flex-direction: column;
}

.overflow-hidden {
    overflow: hidden;
}

.container h1 {
	overflow: hidden;
}

@media only screen and (min-width : 1400px) {
	.container {
		max-width: 1323px;
	}
}

.bg-dark {
	background-color: #1c1c1c!important;
}

h1 {
    font-size: 18px;
	color: #fff;
	font-weight: 500;
    font-family: open sans,helvetica neue,Helvetica,Arial,sans-serif;	
}

h2 {
    font-size: 24px;
	color: #fff;
	font-weight: 500;
    font-family: open sans,helvetica neue,Helvetica,Arial,sans-serif;
	padding: 15px 0;
}

.text-highlighted {
    color: #fff!important;
}


a {
    color: #bbb;
}

a:hover, a:focus, a:active {
    color: #fff;
	text-decoration: none;	
}

#alerts_bottom {	
	position: fixed;
	bottom: 0;
	right: 0;
    z-index: 99999;	
	width: 100%;
	margin: 0;
	padding: 0;
}

#alerts_bottom .alert {
	display: block;
    width: max-content;
    position: relative;
    padding: 8px 40px 8px 15px;
    border: none;
    border-radius: .25rem;
    margin: 0 20px 20px auto;
}

#alerts_bottom .close {
    padding: 6px 15px;
}

.form-control::-webkit-input-placeholder { /* Edge */
  color: #6a6a6a;
}

.form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #6a6a6a;
}

.form-control::placeholder {
  color: #6a6a6a;
}

.form-control:disabled, .form-control[readonly] {
    color: #5f5f5f;	
    background-color: #1d1d1d;
}

.alert-success {
	color: #ffffff;
    background-color: #57a557;
	max-width: calc(100% - 40px);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;	
}

.alert-danger {
	color: #ffffff;
    background-color: #e34449;
	max-width: calc(100% - 40px);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;	
}

.alert a {
	color: #fff;
	font-weight: 700;
}

.alert a:hover {
	text-decoration: underline;	
}


/* inputs */

input.form-control, textarea.form-control {
    color: #fff;
    background-color: #151515;
    border: 1px solid #353535;
}

textarea.form-control {
	min-height: 62px;
}

input.form-control:active, input.form-control:focus, textarea.form-control:active, textarea.form-control:focus {
	color: #fff!important;
    background-color: #151515!important;
    border: 1px solid #424242!important;
	box-shadow: none;
}

.top-nav {
	background-color: #1c1c1c;	
    border-bottom: 1px solid #333;
}

a.show-hide {
    padding: .15rem 1.5rem;	
	color: #bbb;
	font-size: 18px;
}

a:hover.show-hide {
	color: #fff;
}

a.show-hide i {
	margin-left: 6px;
}
.top-menu {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
	font-size: 14px;
}

.top-menu > .float-left > li {
    margin: 0 15px 0 0;
    float: left;
}

.top-menu > .float-right > li {
    margin: 0 0 0 10px;
    float: left;
}

.top-menu > div > li {
    line-height: 70px!important;
}

.top-menu a {
	color: #888;
}

.top-menu a:hover, .top-menu a:active {
	color: #fff;
	text-decoration: none;
}

.top-brand {
	float: left;
	margin: 10px 14px 10px 0;  /* was 30px on the right */
}

.top-brand img {
	max-width: 85%; 
    display: block; 
    height: auto;
}

.top-nav .form-control, .navbar .form-control {
	padding-right: 45px;	
    color: #efefef!important;
	background-color: #1c1c1c!important;
    border: 1px solid #313131!important;
    -moz-box-shadow: inset 0 0 0px #000000;
    -webkit-box-shadow: inset 0 0 0px #000000;
    box-shadow: inset 0 0 0px #000000;
	-webkit-border-radius: 4px;
	-webkit-border-top-right-radius: 0;
	-webkit-border-bottom-right-radius: 0;
	-moz-border-radius: 4px;
	-moz-border-radius-topright: 0;
	-moz-border-radius-bottomright: 0;
	border-radius: 4px;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.navbar {
	padding-top: 0;
	padding-bottom: 0;
}

.nav-link {
    padding: 12px 10px;
}

.navbar-dark .navbar-nav .nav-link {
    color: #bbb;
}

/* Keep each menu label on one line (no internal wrapping) on desktop/tablet */
@media (min-width: 768px) {
	.navbar-dark .navbar-nav .nav-link {
		white-space: nowrap;
	}
}

@media (min-width: 992px) {
	.navbar-expand-md .navbar-nav .nav-link {
		padding-right: 1rem;
		padding-left: 1rem;
		
	}

	.navbar-dark .navbar-nav .active>.nav-link {
		color: #fff;
		-moz-box-shadow: inset 0 -2px 0 #da2657;
		-webkit-box-shadow: inset 0 -2px 0 #da2657;
		box-shadow: inset 0 -2px 0 #da2657;	
	}

	.navbar-dark .navbar-nav .nav-link:hover {
		background-color: #121212;
		color: #fff;
		-moz-box-shadow: inset 0 2px 0 #da2657;
		-webkit-box-shadow: inset 0 2px 0 #da2657;
		box-shadow: inset 0 2px 0 #da2657;
		transition: none;
	}
	
}

.navbar-toggler {
	margin: 5px 0;
}

/* NAV BAR: keep all items on one line and scroll the whole row when needed (left + Upload) */
@media (min-width: 768px) {
	.navbar-expand-md .navbar-collapse {
		flex-wrap: nowrap;
		overflow-x: auto;
		overflow-y: visible;
		-webkit-overflow-scrolling: touch;
	}

	.navbar-expand-md .navbar-collapse .navbar-nav {
		flex-wrap: nowrap;
		white-space: normal; /* don't force nowrap on dropdown content */
	}
}

/* Fading edges for horizontally scrollable navbar (desktop/tablet) */
@media (min-width: 768px) {
	/* Make navbar collapse area the scroll container and position fades */
	#navbarSupportedContent {
		position: relative;
		overflow-y: visible;
		scrollbar-width: none;        /* hide Firefox scrollbar */
		-ms-overflow-style: none;     /* hide old Edge/IE scrollbar */
	}
	#navbarSupportedContent::-webkit-scrollbar {
		display: none;                /* hide Chrome/Safari scrollbar */
	}

	/* Base fade overlay on both sides (hidden by default via modifiers) */
	#navbarSupportedContent.nav-fade::before,
	#navbarSupportedContent.nav-fade::after {
		content: "";
		position: absolute;
		top: 0;
		bottom: 0;
		width: 30px;
		pointer-events: none;
		z-index: 2;
	}

	/* Left fade */
	#navbarSupportedContent.nav-fade::before {
		left: 0;
		background: linear-gradient(to right, #1c1c1c, rgba(28,28,28,0));
	}

	/* Right fade */
	#navbarSupportedContent.nav-fade::after {
		right: 0;
		background: linear-gradient(to left, #1c1c1c, rgba(28,28,28,0));
	}

	/* Hide left fade when there is no content to the left */
	#navbarSupportedContent.nav-fade--no-left::before {
		display: none;
	}

	/* Hide right fade when there is no content to the right */
	#navbarSupportedContent.nav-fade--no-right::after {
		display: none;
	}
}

.search-top-container {
    display: inline-block;
    margin-top: 16px;
}

.search-top-container input {
	width: 300px!important;
	padding-right: 45px;
	padding: 6px 12px 7px;	
}

.search-bot-container input {
	padding-right: 45px;
	padding: 6px 12px 7px;	
}


.search-top-container ::placeholder, .search-bot-container ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #7d7d7d;
  opacity: 1; /* Firefox */
}

.search-top-container :-ms-input-placeholder, .search-bot-container :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #7d7d7d;
}

.search-top-container ::-ms-input-placeholder, .search-bot-container ::-ms-input-placeholder { /* Microsoft Edge */
  color: #7d7d7d;
}


.search-box, .search-box:focus, .search-box:active {
	
}

#search_form button, #search_form_xs button {
	padding: 10px 12px;
	line-height: 10px!important;	
}

.btn-search-select {
    padding: 10px 12px;	
	line-height: 10px!important;
}

#search_select {
    right: 45px;
    top: 1px;
    position: absolute;
    z-index: 3;
    margin: 0;
    border: 0;	
}

#search_select {
	color: #999;	
}

#search_select:hover {
    color: #efefef;
}

#search_select:active {
    -webkit-box-shadow: none;
    box-shadow: none; 
}

#search_select_xs {
    right: 45px;
    top: 1px;
    position: absolute;
    z-index: 3;
    margin: 0;
    border: 0;	
}

#search_select_xs {
	color: #999;
}

#search_select_xs:hover {
    color: #efefef;
}

#search_select_xs:active {
    -webkit-box-shadow: none;
    box-shadow: none; 
}

#search_query_xs {
	width: 100%;
}

.input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:last-child>.btn, .input-group-btn:last-child>.btn-group>.btn, .input-group-btn:last-child>.dropdown-toggle, .input-group-btn:first-child>.btn:not(:first-child), .input-group-btn:first-child>.btn-group:not(:first-child)>.btn {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.search-bot-container {
    width: calc(100% - 70px);
}

.search-bot-container .input-group {
    width: 100%;
}

.search-bot-container .input-group-btn {
	position: absolute;
    top: 0;
    right: 0;
}

.multi-column-dropdown {
	position: fixed!important;
	top: var(--header-offset, 119px)!important; /* dynamic, fallback to 119px */
	left: 0;
	right: 0;
	width: 100%!important;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	margin: 0;
	border: 0;
    background-color: #121212;
	min-height: 100px;
	z-index: 9999;
}

.well-filters {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -moz-box-shadow: inset 0 -2px 0 #333;
    -webkit-box-shadow: inset 0 -2px 0 #333;
    box-shadow: inset 0 -2px 0 #333;
    padding: 0!important;
    border: none;
    background-color: transparent!important;
}

.well-filters a {
	color: #bbb!important;
    cursor: pointer;
}

.well-filters a:hover, .well-filters>a:focus {
	color: #fff!important;
    text-decoration: none!important;
}

.well-filters h1, .well-filters h2, .well-filters h3, .well-filters h4, .well-filters h5, .well-filters h6 {
    padding: 10px 0;
	margin: 0;
}

.well-action {
	padding: 9px 0;
    -moz-box-shadow: inset 0 -2px 0 #555;
    -webkit-box-shadow: inset 0 -2px 0 #555;
    box-shadow: inset 0 -2px 0 #555;
}


.well-action-toggle {
	padding: 4px 0; /* tighter */
    -moz-box-shadow: inset 0 0px 0 #555;
    -webkit-box-shadow: inset 0 0px 0 #555;
    box-shadow: inset 0 0px 0 #555;
}

.well-action:hover {
    -moz-box-shadow: inset 0 -2px 0 #da2657;
    -webkit-box-shadow: inset 0 -2px 0 #da2657;
    box-shadow: inset 0 -2px 0 #da2657;	
}

/* Homepage filter bar under "Videos Being Watched" (tighter + divider lines) */
.index-filterstrip{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	padding: 2px 0 3px !important;
	margin-top: -2px;
	/*border-top: 1px solid #222;
	border-bottom: 1px solid #333;*/
}

.index-filterstrip .well-action{
	padding: 2px 0 !important;      /* overrides .well-action padding: 9px 0 */
	box-shadow: none !important;    /* remove per-item underline */
	margin: 0 !important;
	line-height: 1;
}
.index-filterstrip .well-action:hover{
	box-shadow: none !important;
}

.index-filterstrip .well-action-toggle{
	padding: 2px 0 !important;
	box-shadow: none !important;
}

.index-filterstrip .toggle-container,
.index-filterstrip .switch{
	margin-bottom: 0 !important;
}

@media (max-width: 767.98px){

	/* make the mobile strip children take full width */
	.videos-page .videos-mobile-strip{
		align-items: stretch; /* overrides .index-filterstrip align-items:center */
	}

	.videos-page #videosMobileToggles{
		width: 100%;
		max-width: 100vw;

		flex-wrap: nowrap;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		touch-action: pan-x;

		scrollbar-width: none;
		-ms-overflow-style: none;

		position: relative;
	}

	/* critical: don’t let items shrink -> forces real overflow -> scroll */
	.videos-page #videosMobileToggles > *{
		flex: 0 0 auto;
	}

	.videos-page #videosMobileToggles::-webkit-scrollbar{
		display: none;
	}

	/* Fade edges */
	.videos-page #videosMobileToggles.mob-fade::before,
	.videos-page #videosMobileToggles.mob-fade::after{
		content: "";
		position: absolute;
		top: 0;
		bottom: 0;
		width: 24px;
		pointer-events: none;
		z-index: 5;
	}
	.videos-page #videosMobileToggles.mob-fade::before{
		left: 0;
		background: linear-gradient(to right, #000000, rgba(0,0,0,0));
	}
	.videos-page #videosMobileToggles.mob-fade::after{
		right: 0;
		background: linear-gradient(to left, #000000, rgba(0,0,0,0));
	}
	.videos-page #videosMobileToggles.mob-fade--no-left::before{ display:none; }
	.videos-page #videosMobileToggles.mob-fade--no-right::after{ display:none; }
}

@media (max-width: 767.98px){

	/* Make the header a 2-row flex layout on mobile */
	.videos-page .well-filters{
		display: flex;
		align-items: center;
		flex-wrap: wrap;
	}

	.videos-page .well-filters > .float-left,
	.videos-page .well-filters > .float-right{
		float: none !important;
	}

	/* Row 1 left: title + (HD/Filters) */
	.videos-page .well-filters > .float-left:first-child{
		order: 1;
		flex: 1 1 auto;
		min-width: 0;
		display: flex;
		align-items: center;
		flex-wrap: nowrap;
		gap: 10px;
	}

	/* Keep title from eating the whole row */
	.videos-page .well-filters > .float-left:first-child h1{
		padding: 2px 0 3px;
		margin: 0;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		max-width: 30vw;
	}	
	
	
	/* The mobile controls should NOT have the .well-action underline */
	.videos-page .videos-mobile-top-controls .well-action{
		box-shadow: none !important;
		padding: 2px 0 !important;
		display: inline-flex;
		align-items: center;
		line-height: 1;
	}

	/* Category dropdown (mobile title) should align with HD/Filters */
	.videos-page .videos-cat-toggle{
		box-shadow: none !important;
		padding: 2px 0 !important;
		display: inline-flex;
		align-items: center;
		line-height: 1;
	}

	/* Make the left margin smaller for the mobile top controls */
	.videos-page .videos-mobile-top-controls .m-l-20{
		margin-left: 10px;
	}

	/* Keep arrows aligned */
	.videos-page .dd-arrow{
		position: relative;
		top: 0;
		margin-left: 4px;
	}

	/* Row 1 right: Upload pinned */
	.videos-page .well-filters > .float-right.well-action{
		order: 2;
		flex: 0 0 auto;
		margin-left: auto;
		white-space: nowrap;
	}

	/* Row 2: mobile strip (toggle scroller) full width */
	.videos-page .well-filters > .float-left:nth-of-type(2){
		order: 3;
		flex: 0 0 100%;
		width: 100%;
		min-width: 0;
	}

	.videos-page .well-filters .clearfix{
		display: none;
	}

	.videos-page .videos-mobile-strip{
		width: 100%;
	}	/* give the toggle scroller some breathing room */
	.videos-page #videosMobileToggles{
		padding-left: 10px;
		padding-right: 10px;
	}
}

/* Videos page: category dropdown chips styling (ALL viewports) */
.videos-page .videos-cat-dd .dropdown-menu{
	width: 520px;
	max-width: calc(100vw - 30px);
	max-height: 60vh;
	overflow-y: auto;
	padding: 10px;

	/* override theme: .well-filters .dropdown-menu { left:-14px!important; } */
	left: 0 !important;
}

.videos-page .videos-cat-chips{
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.videos-page .videos-cat-chips .cat-chip{
	display: inline-block;
	padding: 4px 10px;
	font-size: 12px;
	line-height: 1.2;
	border: 1px solid #333;
	border-radius: 999px;
	background: rgba(255,255,255,0.06);
	color: #bbb !important;
	white-space: nowrap;
}

.videos-page .videos-cat-chips .cat-chip.active{
	background: #da2657;
	border-color: #da2657;
	color: #fff !important;
}

/* Mobile-only: keep the title dropdown label compact */
@media (max-width: 767.98px){
	.videos-page .videos-cat-toggle{
		display: inline-block;
		max-width: 42vw;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		box-shadow: none !important;
		padding: 2px 0 !important;
	}
}




.sw-left {
	border: 1px solid #222;
    -webkit-border-top-left-radius: 3px;
    -webkit-border-bottom-left-radius: 3px;
    -moz-border-radius-topleft: 3px;
    -moz-border-radius-bottomleft: 3px;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
	padding: 0 5px!important;
    -moz-box-shadow: none!important;
    -webkit-box-shadow: none!important;
    box-shadow: none!important;
}

.sw-right {
	border: 1px solid #222;
    -webkit-border-top-right-radius: 3px;
    -webkit-border-bottom-right-radius: 3px;
    -moz-border-radius-topright: 3px;
    -moz-border-radius-bottomright: 3px;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
	padding: 0 5px!important;
    -moz-box-shadow: none!important;
    -webkit-box-shadow: none!important;
    box-shadow: none!important;		
}

/* Videos page: prevent All/HD border clipping inside the scroll strip */
.videos-page #videosFilterScroll .sw-left,
.videos-page #videosFilterScroll .sw-right{
	display: inline-block;
	padding: 1px 6px !important; /* tiny vertical buffer so borders don't clip */
	line-height: 1.1;
}

/* Index (homepage) desktop: prevent All/HD border clipping inside the scroll strip */
.index-page .index-filterstrip--inline .sw-left,
.index-page .index-filterstrip--inline .sw-right{
	display: inline-block;
	padding: 1px 6px !important; /* tiny vertical buffer so borders don't clip */
	line-height: 1.1;
}

/* Quality toggle (All / HD) active state */
.well-action.active .sw-left,
.well-action.active .sw-right {
	border: 1px solid #da2657;
	box-shadow: inset 0 0 0 1px #da2657; /* makes it look slightly thicker */
	background-color: rgba(218, 38, 87, 0.18);
	color: #fff !important;
}

.well-filters .dropdown-menu {
    background-color: #2b2b2b;
    margin: 0;
    border: 0;
    padding: .3rem 0;
	-webkit-border-radius: .25rem;
	-webkit-border-top-right-radius: 0;
	-webkit-border-top-left-radius: 0;	
	-moz-border-radius: .25rem;
	-moz-border-radius-topright: 0;
	-moz-border-radius-topleft: 0;	
	border-radius: .25rem;
	border-top-right-radius: 0;	
	border-top-left-radius: 0;	
    z-index: 999;
	padding: 5px 0 8px;	

}



.well-filters .dropdown-menu a {
    padding: 1px 15px 2px;	
}

.well-filters .dropdown-divider {
	border-top: 1px solid #555555;
}

.well-filters .dropdown-menu .active a {
	color: #fff!important;
	font-weight: 500;	
}

.well-info {
	color: #8c8c8c;
	margin: 5px 0 10px;
}

.content-left {
    padding-right: 15px;
    padding-left: 15px;	
	overflow: hidden;
	width: 100%;	
}

.content-right {
    padding-right: 15px;
    padding-left: 15px;	
	overflow: hidden;
	width: 100%;
}

@media (min-width: 992px) {
	.content-left {
		width: calc(100% - 315px);		
		float: left;
	}

	.content-right {
		width: 315px;
		float: right;
		padding-left: 0;			
	}
}

.col-2dot4,
.col-sm-2dot4,
.col-md-2dot4,
.col-lg-2dot4,
.col-xl-2dot4 {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
.col-2dot4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}
@media (min-width: 576px) {
    .col-sm-2dot4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}
@media (min-width: 720px) {
    .col-md-2dot4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}
@media (min-width: 960px) {
    .col-lg-2dot4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}
@media (min-width: 1200px) {
    .col-xl-2dot4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}

.content-row .col-2dot4,
.content-row .col-sm-2dot4,
.content-row .col-md-2dot4,
.content-row .col-lg-2dot4,
.content-row .col-xl-2dot4 {
    padding-right: 6px;
    padding-left: 6px;
}

.content-row .col-md-6,
.content-row .col-sm-6,
.content-row .col-md-6,
.content-row .col-lg-6 {
    padding-right: 6px;
    padding-left: 6px;
}

.content-row .col-md-4,
.content-row .col-sm-4,
.content-row .col-md-4,
.content-row .col-lg-4 {
    padding-right: 6px;
    padding-left: 6px;
}

.content-row .col-md-3,
.content-row .col-sm-3,
.content-row .col-md-3,
.content-row .col-lg-3 {
    padding-right: 6px;
    padding-left: 6px;
}

.content-row .col-6,
.content-row .col-6,
.content-row .col-6,
.content-row .col-6 {
    padding-right: 6px;
    padding-left: 6px;
}

.content-row .col-4,
.content-row .col-4,
.content-row .col-4,
.content-row .col-4 {
    padding-right: 6px;
    padding-left: 6px;
}

.content-row .col-3,
.content-row .col-3,
.content-row .col-3,
.content-row .col-3 {
    padding-right: 6px;
    padding-left: 6px;
}

.content-row {
    margin-left: -6px;
    margin-right: -6px;	
}

.thumb-overlay {
    position: relative;
	overflow: hidden;
}

.img-responsive {
    border-radius: 0!important;
    width: 100%;
	height: auto;
}

.img-responsive-mw {
	max-width: 100%;
	height: auto;	
}

.tile-thumb{
    aspect-ratio: 16 / 9;
}

.tile-thumb .tile-media{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Small "ad" label overlay for tiles */
.tile-ad-label {
    position: absolute;
    right: 5px;
    bottom: 5px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 2px 6px;
    font-size: 11px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    pointer-events: none; /* don't block clicking the tile */
}



.duration {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 35px;
    border: none;
    text-align: right;
    padding: 10px 10px 0 0!important;
    color: #fff;
    font-size: 14px;
    text-shadow: 1px 1px 4px rgba(0,0,0,.5);
    background: -moz-linear-gradient(top,rgba(0,0,0,0) 0%,rgba(0,0,0,0.4) 100%);
    background: -webkit-linear-gradient(top,rgba(0,0,0,0) 0%,rgba(0,0,0,0.4) 100%);
    background: linear-gradient(to bottom,rgba(0,0,0,0) 0%,rgba(0,0,0,0.4) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#66000000',GradientType=0 );
}

.hd-text-icon {
    font-weight: 900;
    font-family: Helvetica,Arial,sans-serif;
    letter-spacing: 0;
}

.label-private {
	position: absolute;
    top: 0;
	left: 0;
    width: 100%;
    height: 100%;
    border: none;
    text-align: right;
    padding: 10px 10px 0 0!important;
    text-shadow: 1px 1px 4px rgba(0,0,0,.5);	
    font-weight: 500;
    color: #fff;
    font-size: 14px;	
    text-shadow: 1px 1px 4px rgba(0,0,0,.5);
    background: -moz-linear-gradient(top,rgba(0,0,0,0.4) 0%,rgba(0,0,0,0.4) 100%);
    background: -webkit-linear-gradient(top,rgba(0,0,0,0.4) 0%,rgba(0,0,0,0.4) 100%);
    background: linear-gradient(to bottom,rgba(0,0,0,0.4) 0%,rgba(0,0,0,0.4) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#66000000',GradientType=0 );
}

.img-private {
  -webkit-filter: blur(4px);
  -moz-filter: blur(4px);
  -o-filter: blur(4px);
  -ms-filter: blur(4px);
  filter: blur(4px);
  transform: scale(1.1);  
}

.content-title {
    width: 100%;
	font-size: 15px;
    max-height: 40px;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
	margin-top: 4px;	
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical; 	
}

.content-row a, .content-row a:focus {
	color: #bbb;	
}

.content-row a:hover {
	color: #fff;	
	text-decoration: none;
}

.content-added {
    color: #76787a;
    font-size: 13px;
}

.content-details {
	margin-top: 2px;
}

.content-views {
    color: #8e8e8e;
    font-size: 14px;
}

.content-rating {
    font-size: 14px;	
    margin-left: 5px;
	color: #fff;
}

.content-rating i {
	color: #57a557;
}

.content-info {
	height: 75px;
}

.my .content-info {
	height: 105px;
}

.vloader {
	position:absolute;
	display:block;
	width:0%;
	height:3px;
	top:0;
	left:0;
	z-index:10;
	background:#ffffff94;
}

.recbox {
    vertical-align: top;
    font-size: 12px;
    font-weight: bold;
}

/* Being Watched: center the 2‑column “Recommended” block when it sits under the thumbs */
@media (max-width: 991.98px){
    .index-page .recbox{
        margin: 0 auto;        /* center the table as a block */
        width: auto;           /* don’t force full width */
        max-width: 520px;      /* keep it visually tight */
    }
    .index-page .recbox td{
        padding: 0 10px;
        vertical-align: top;
    }
}.body-recom {
    border: 1px solid #222222!important;
    background-color: #88888815!important;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
	margin: 0 auto 20px;
    padding: 10px;	
}

.title-recom {
    color: #888;	
    font-size: 11px;
    letter-spacing: 3px;
	text-align: center;
}

.title-recom span {
	display: block;
}

.size-recom {
	color: #333;
    font-size: 32px;
    letter-spacing: 3px;
    text-align: center;
}

.ad-group {
	color: #333;
    font-size: 11px;
    letter-spacing: 3px;
    text-align: center;
}

.content-recom {
	text-align: center;	
	margin-bottom: 5px;
}


.content-recom img, .content-recom iframe {

    max-width: 100%;

}

.footer-container {
	margin-top: auto;
}

.footer-links {
	background-color: #1c1c1c;
    padding: 25px 0;
}

.footer {
	background-color: #232323;
    padding: 15px 0;	
    color: #989a9c;	
}

.footer-container h4 {
    color: #fff;
    font-size: 18px;	
}

.footer-links a {
    color: #888;
}

.footer-links a:hover {
    text-decoration: none;
    color: #eee;
}

.footer a {
    color: #fff;
}

.footer a:hover {
    text-decoration: none;
    color: #eee;
}

.btn-primary {
    color: #fff;
    background-color: #da2657;
    border-color: #da2657;
	box-shadow: none!important;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open>.dropdown-toggle.btn-primary {
    color: #fff;
    background-color: #b22048!important;
    border-color: #b22048!important;
}

.modal-content {
    background-color: #222;
}

.modal-header {
	border: none;
}

.modal-title {
	color: #fff;
}

.modal-body {
	color: #fff;
}

.modal-footer {
	border: none;
}

.modal-body {
	padding: 0 1rem;	
}

.top-menu-item {
    line-height: 30px;
    margin-left: 12px;
    margin-top: 20px;
	display: inline-block;
}

/* Desktop: keep Login / Sign Up icon + text on one line */
@media (min-width: 769px){
	.top-nav .top-user-menu .top-menu-item,
	.top-nav .top-user-menu .top-menu-item a{
		white-space: nowrap;
	}
}


/* Prevent user name/icon + caret from splitting onto two lines */
.top-nav .btn-group > a.dropdown-toggle.top-menu-item span{
	white-space: nowrap;
}

/* Desktop/tablet header: single-row flex (no wrapping of Login/user) */
@media (min-width: 769px){
	.top-nav .top-menu{
		display: flex;
		align-items: center;
		flex-wrap: nowrap;   /* was wrap */
		gap: 8px;            /* a bit tighter horizontally */
	}

		/* logo: keep natural size and align vertically with the search row */
	.top-nav .top-menu > .float-left{
		flex: 0 0 auto;
		flex-shrink: 0;               /* prevents the logo from getting tiny */
	}

	.top-nav .top-brand{
		margin: 0 10px 0 0 !important;/* smaller gap to the search */
		display: flex;
		align-items: center;          /* vertically center logo within the header row */
	}

	.top-nav .top-brand img{
    /* Grows smoothly with viewport, but stays within sane limits */
    height: clamp(36px, 3.2vw, 60px);
    width: auto;
    max-width: none;
}

	.top-nav .top-menu .float-left,
	.top-nav .top-menu .float-right,
	.top-nav .top-brand{
		float: none !important;
	}	/* Remove legacy clearfix from the flex header layout */
	.top-nav .top-menu .clearfix{
		display: none;
	}

	/* Keep user/login block pinned right even when it wraps onto its own line */
	.top-nav .top-menu > .top-user-menu{
		margin-left: auto;
		display: flex;
		justify-content: flex-end;
		align-items: center;
	}

	/* remove the big vertical push that looks like “vacuum space” when wrapping happens */
	.top-nav .top-menu-item{
		margin-top: 0;
	}

	/* keep dropdown toggle contents on one line and vertically aligned */
	.top-nav .btn-group > a.dropdown-toggle.top-menu-item{
		display: inline-flex;
		align-items: center;
		white-space: nowrap;
	}

	/* make the centered search behave better when space gets tight */	.top-nav .search-top-container{
		margin-top: 0;
		flex: 1 1 260px; /* was 360px; allows right controls to fit before wrapping */
	}
	.top-nav .search-top-container .input-group{
		width: 100%;
		max-width: 520px;
		margin-left: auto;
		margin-right: auto;
	}
}

/* Desktop header search: keep EasyAutocomplete wrapper from shrinking (prevents type icon drifting "outside") */
@media (min-width: 769px){
	.top-nav .search-top-container .input-group{
		display: inline-flex;
		flex-wrap: nowrap;
		width: auto;
		max-width: none;
	}

	.top-nav .search-top-container .easy-autocomplete{
		flex: 0 0 auto;
		width: auto !important; /* overrides: .easy-autocomplete { width: calc(100% - 42px)!important; } */
		min-width: 0;
	}
}

@media (min-width: 769px) and (max-width: 1199.98px){
	.top-nav .search-top-container input{
		width: 220px !important;
	}
}

@media (min-width: 769px) and (max-width: 1024px){
	.top-nav .search-top-container input{
		width: 180px !important;
	}
	.top-nav .top-menu{
		gap: 8px;
	}
}

.top-menu .dropdown-toggle {
	padding: 0 8px;	
}

.top-menu .dropdown-toggle:focus {
	border: none;
	outline: none;
}

.top-menu a:focus {
	border: none;
	outline: none;
}  

.top-menu .show .dropdown-toggle {
	color: #eee;	
	background-color: #2b2b2b;
	-webkit-border-top-left-radius: .25rem;
	-webkit-border-top-right-radius: .25rem;
	-moz-border-radius-topleft: .25rem;
	-moz-border-radius-topright: .25rem;
	border-top-left-radius: .25rem;
	border-top-right-radius: .25rem;
}

.top-menu .dropdown-menu-right {
	background-color: #2b2b2b;
    margin: 0;
    border: 0;
    padding: .3rem 0;	
	-webkit-border-radius: .25rem;
	-webkit-border-top-right-radius: 0;
	-moz-border-radius: .25rem;
	-moz-border-radius-topright: 0;
	border-radius: .25rem;
	border-top-right-radius: 0;	
    z-index: 9999;	
}

.top-menu .dropdown-item {
	padding: 1px 15px 2px;
	color: #eee;
}

.top-menu .dropdown-item:focus, .top-menu .dropdown-item:hover {
    background-color: #da2657;
}

.top-menu .dropdown-item .badge {
	margin-top: 4px;
}

.navbar .show .dropdown-toggle {
	color: #fff;	
    background-color: #121212!important;
	-moz-box-shadow:    inset 0 2px 0 #da2657!important;
	-webkit-box-shadow: inset 0 2px 0 #da2657!important;
	box-shadow:         inset 0 2px 0 #da2657!important;	
	transition:none;
}

.easy-autocomplete-container {
    top: 39px;	
	z-index: 99999;
}

.easy-autocomplete input {
    color: #efefef;
	padding: 6px 12px 7px;	
}

.easy-autocomplete-container ul {
    background: none repeat scroll 0 0 #121212;
    border-top: none;
}

.easy-autocomplete-container ul li, .easy-autocomplete-container ul .eac-category {
	color: #777;
    border-color: #212121;
	padding: 2px 10px!important;	
	line-height: 30px!important;
}

.easy-autocomplete-container ul li b {
	color: #efefef;
	font-weight: 300;
}

.easy-autocomplete-container ul li.selected {
    background: none repeat scroll 0 0 #212121;
}

.eac-total {
    color: #969696;
    font-style: normal;
    font-size: 0.9em;
    float: right;
}

.easy-autocomplete {
	width: calc(100% - 42px)!important;
}

.dropdown-menu {
	padding: 0;
	margin-top: 33px;
}

/* Full-width mega dropdown should hug the navbar, no extra top margin */
.multi-column-dropdown {
	margin-top: 0 !important;
}

.sub-menu-left {
	width: 280px;
	padding: 15px 0;
	float: left;
}

.sub-menu-right {
	width: calc(100% - 280px)!important;
	padding: 15px 0;	
	float: right;
}

/* Categories dropdown: full-width thumbs (no left column) */
.multi-column-dropdown.categories-mega .sub-menu-right{
	width: 100% !important;
	float: none;
}

.sub-menu-title {
	font-size: 18px;
    color: #fff;
    font-weight: 500;
    font-family: open sans,helvetica neue,Helvetica,Arial,sans-serif;
}

.sub-menu-content {
	margin-top: 5px;	
}

.sub-menu-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}


.sub-menu-content ul a {
    display: block;
    clear: both;
    line-height: 2;
    color: #888;
    white-space: normal;
	font-size: 15;
}

.sub-menu-content ul a:hover, .sub-menu-content ul a:active, .sub-menu-content ul a:focus {
    text-decoration: none;
    color: #fff;
}

.trending-searches a i {
    font-size: 10px;
    margin-right: 2px;
    color: #444;
}

.trending-searches a {
    display: inline-block;
    white-space: nowrap;
    padding: 0 5px 10px 0;
    color: #888;	
}

.trending-searches a:hover, .trending-searches a:active, .trending-searches a:focus {
    color: #fff;
    text-decoration: none;
}

.m-r-15 {
	margin-right: 15px;
}

.m-r-10 {
	margin-right: 10px;
}

.m-l-20 {
	margin-left: 20px;
}

.m-b-20 {
	margin-bottom: 20px;
}

.m-b-10 {
	margin-bottom: 10px;
}

a.list-group-item {
    color: #888;
}

a.list-group-item:hover, a.list-group-item:focus {
    color: #fff; 
	background-color: #1a1a1a;
}

.list-group-item {
    background-color: #000;
    padding: 8px 15px;
    border: 1px solid #222;	
}

.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
    z-index: 2;
    color: #fff;
    background-color: #da2657;
    border-color: #da2657;
}

.page-item.active .page-link { 
    background-color: #da2657; 
    border-color: #da2657;
}

.page-item.active .page-link:hover {
    color: #fff;
    background-color: #b22048!important;
    border-color: #b22048!important;
}

.page-link {
	font-weight: bold;
	margin: 0 3px;
    color: #fff;
    background-color: #444;
    border: 1px solid #444;
    padding: .5rem .8rem;	
	-webkit-border-radius: 8px!important;
	-moz-border-radius: 8px!important;
	border-radius: 8px!important;	
}

.page-link:focus {
    box-shadow: none!important;
}

.page-link:hover {
    color: #fff;	
    background-color: #656565;
    border-color: #656565;
}

.pagination {
    width: max-content;
	margin-top: 15px;
	margin-right: auto!important;
	margin-left: auto!important;
}

.pagination .fa-caret-right {
    padding: 0 3px;
}

.pagination .fa-caret-left {
    padding: 0 3px 0 1px;
}

.pagination .disabled {
    font-size: 18px;
    font-weight: 800;
}

.category-title .float-left {
    width: 70%;
}

.category-title .float-right {
    width: 30%;
    text-align: right;
    font-weight: 900;
}

.category-title {
    width: 100%;
    position: absolute;
    bottom: 0;
    border: none;
    color: #fff;
    padding: 7px 10px!important;
	margin-top: 5px;
    font-size: 16px;
    height: 35px;
    text-shadow: 1px 1px 4px rgba(0,0,0,.5);
    background: -moz-linear-gradient(top,rgba(0,0,0,0) 0%,rgba(0,0,0,0.45) 100%);
    background: -webkit-linear-gradient(top,rgba(0,0,0,0) 0%,rgba(0,0,0,0.45) 100%);
    background: linear-gradient(to bottom,rgba(0,0,0,0) 0%,rgba(0,0,0,0.45) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#73000000',GradientType=0 );
}

.popular-tag-left {
    width: 70%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.popular-tag a {
	color: #888;
}

.popular-tag {
    padding: 8px 15px 8px 0;
    height: 32px;
}

.popular-tag i {
    font-size: 10px;
    color: #4c4f52;
}

.tag-item {
    padding: 8px 15px;    
    height: 32px;
}

.tag-item i {
    font-size: 10px;
    color: #4c4f52;
}

.tag-counter {
    font-size: 14px;	
    color: #4c4f52;	
}

.content-ml {
	width: calc(100% - 68px)!important;
	float: left;
	line-height: 24px;
}

.content-mr {
    width: 62px!important;
	float: right;
	line-height: 24px;
    text-align: right;	
}

.content-truncate {
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
    display: block;
}

.member .content-info {
	height: 35px!important;
}

.col-5th,
.col-sm-5th,
.col-md-5th,
.col-lg-5th,
.col-xl-5th {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
.col-5th {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}
@media (min-width: 540px) {
    .col-sm-5th {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}
@media (min-width: 720px) {
    .col-md-5th {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}
@media (min-width: 960px) {
    .col-lg-5th {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}
@media (min-width: 1140px) {
    .col-xl-5th {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}

.user-avatar {
	width: 180px;
	height: 180px;
	float: left;
}

.user-info {
	width: calc(100% - 200px); 
	height: 180px;
	padding-top: 76px;
	float: right;	
}

.user-username {
	font-size: 24px;
	font-weight: 700;
	color: #fff;
	line-height: 26px;
}

.user-location {
	font-size: 13px;
	color: #fff;
	height: 20px;
}

.user-info a {
	text-decoration: none;
	color: #fff;
}

.user-location .creator-link-row a {
	color: #bbb !important;
	transition: color .15s ease;
}
.user-location .creator-link-row a:hover,
.user-location .creator-link-row a:focus {
	color: #fff !important;
	text-decoration: none;
}

.user-actions-container {
	height: 30px;
	margin-bottom: 1px;
}

.user-actions .dropdown-menu {
	top: 3px!important;
    background-color: #2b2b2b;
    margin: 0;
    border: 0;
    padding: .3rem 0;
    -webkit-border-radius: .25rem;
    -moz-border-radius: .25rem;
    border-radius: .25rem;
    z-index: 999;
    font-size: 14px;
}

.user-actions .dropdown-item {
	line-height: 28px;
    padding: .25rem 1.5rem!important;
}

.user-actions .dropdown-menu a {
	color: #bfbfbf!important;	
}

.user-actions .dropdown-item.active, .comments-section .dropdown-item:active, .user-actions .dropdown-item.active, .comments-section .dropdown-item:focus {
    color: #fff!important;
    font-weight: 700;	
    text-decoration: none;
    background-color: transparent;
}

.user-actions .dropdown-menu a:hover {
    background-color: #4a4a4a;
}


.vote-box .content-rating {
	font-size: 18px;
    position: relative;
    top: 1px;	
}

.vote-up span, .vote-down span {
	position: relative;
	top: -2px;
	font-size: 13px;
}

.vote-up .fa-thumbs-up, .vote-down .fa-thumbs-down {
	color: #5a5a5a;
}

.vote-box .fa-thumbs-up	{
	position: relative;
    top: -2px;
}

.vote-box .vote-up .fa-thumbs-up	{
	position: relative;
    top: -3px;
}

.vote-box .vote-down .fa-thumbs-down	{
	position: relative;
    top: 3px;
}

.vote-up .fa-thumbs-up:hover, .vote-down .fa-thumbs-down:hover {
	color: #fff;
	cursor: pointer;
}

.user-left {
	width: 340px;		
	float: left;
	margin-top: 20px;
}

.user-right {
	width: calc(100% - 370px);		
	float: right;	
	margin-top: 10px;	
}

.alt-menu {
	display: none;
}

@media only screen and (max-width: 991px) {
	.user-avatar {
		width: 120px;
		height: 120px;	
	}
	.user-info {
		width: calc(100% - 135px);		
		height: 120px;
		padding-top: 0;
	}
	.user-info .vote-box {
		position: absolute;
		bottom: 40px;
		margin-left: 0!important;
	}

	.user-info .content-rating {
		margin-left: 0!important;		
	}

	.user-info .user-location {
		position: absolute;
		bottom: 70px;
		margin-left: 0!important;
	}
	
	.user-left {
		width: 100%;
	}
	.user-right {
		width: 100%;		
	}
	.user-menu {
		display: none;
	}
	.user-info {
		position: relative;
	}		
	.user-actions {
		position: absolute;
		bottom: 0;
		left: 0;
		margin-left: 0!important;
	}
	.alt-menu {
		display: block;
	}
	
	.n-alt-menu {
		display: none;
	}
}

@media only screen and (max-width: 991px) {
	#user_subscription i {
		display: none;
	}
}

.user-info-box {
	color: #888;
}

.user-info-box .fas.fa-circle {
	color: #57a557;
}

.ib-icon i {
	width: 20px;
}

.user-info-box div {
	margin-bottom: 4px;
}

.user-info-box .text-highlighted {
	font-weight: 600;
}

.user-info .fa-mars {
	color: #2d87d4;
}

.user-info .fa-venus {
	color: #e34449;
}

#user-info-more {
	display: none;
}

#user-info-show-less {
	display: none;	
}

.user-menu {
	margin-top: 20px;
}

.user-menu a {
	padding: 4px 10px 5px;
	float: left;
	background-color: #4a4a4a;
}

.user-menu a:hover {
    background-color: #6a6a6a;
    border-color: #6a6a6a;
}

.user-menu a:first-child {
	-webkit-border-top-left-radius: 3px;
	-webkit-border-bottom-left-radius: 3px;
	-moz-border-radius-topleft: 3px;
	-moz-border-radius-bottomleft: 3px;
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;	
}

.user-menu a:last-child {
	-webkit-border-top-right-radius: 3px;
	-webkit-border-bottom-right-radius: 3px;
	-moz-border-radius-topright: 3px;
	-moz-border-radius-bottomright: 3px;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
}

#comments_input {
	margin: 10px 0 10px;
	width: 80%;
	resize: none;
	color: #fff;
	background-color: #151515;
    border: 1px solid #353535;
}

@media only screen and (max-width: 991px) {
#comments_input {	
	width: 100%;	
}
}

#comments_input_container {
    position: relative;		
}

#comments_input:focus, #comments_input:active {
    box-shadow: none;	
}

#comments_login_register {
    position: absolute;
    top: 7px;
    left: 15px;	
	color: #aaa;	
}

#comments_login_register a {
	color: #fff;
	text-decoration: underline;	 
}

.modal-content {
    border-radius: 0;
	border: none;
}

.close {
    text-shadow: none;
    opacity: 1;
}

.close:not(:disabled):not(.disabled):focus, .close:not(:disabled):not(.disabled):hover {
	color: #fff;
    text-decoration: none;
    opacity: 1;
}

button:focus {
    outline: none;
}

.btn-bold {
	font-size: 14px;	
	font-weight: 500;
    padding: .675rem 1.25rem;
	border: none;
}

.btn-xs {
    padding: .275rem 1.25rem;
}

.btn-xxs {
    padding: .275rem .75rem;
}


#commentsMediaModal .nav-tabs .nav-link {
	border: none;
	border-radius: 0;
	width: 50%;
	text-align: center;
	font-size: 16px;	
	font-weight: 700;	
	color: #ccc;	
}

#commentsMediaModal .nav-tabs .nav-link {
	border: none;
	border-radius: 0;
	width: 50%;
	text-align: center;
	font-size: 16px;	
	font-weight: 700;	
	color: #ccc;	
}

#commentsMediaModal .nav-tabs .nav-item.show .nav-link, #commentsMediaModal .nav-tabs .nav-link.active {
    color: #fff;
    background-color: #1d1d1d;
    border: none;
}

#commentsMediaModal .tab-content>.active {
    background-color: #1d1d1d;
}

#commentsMediaModal .nav-tabs .nav-link:hover {
	color: #fff;
    background-color: #6a6a6a;
}

#commentsMediaModal .nav-tabs .nav-link {
	color: #fff;
    background-color: #4a4a4a;
}

#commentsMediaModal .nav-tabs .nav-link.active:hover {
    background-color: #1d1d1d;
}

#commentsMediaModal .nav-tabs {
	border: none;
}	

#commentsMediaModal .modal-body {
	padding: 0;
}

#commentsMediaModal .tab-pane {
	padding: 1rem 1rem 0;
	color: #fff;
}

#commentsMediaModal input {
    color: #fff;
    background-color: #151515;
    border: 1px solid #353535;
	max-width: 40%;	
	float: left;
}

#commentsMediaModal input:focus {
	box-shadow: none;
}


#commentsMediaModal ::-webkit-input-placeholder { /* Edge */
  color: #6a6a6a;
}

#commentsMediaModal :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #6a6a6a;
}

#commentsMediaModal ::placeholder {
  color: #6a6a6a;
}

#commentsMediaModal .tab-content {
	min-height: 300px;	
	position: relative;
}


#commentsMediaModal .content-info {
	height: 40px;
    color: #bfbfbf;
	font-size: 14px;
}

#commentsMediaModal .pagination	{
	margin: 0!important;
	position: absolute;
    left: 1rem;
    bottom: -2.7rem;	
}

#commentsMediaModal .modal-footer {
	padding-top: 0;
}

#cvideos-container {
	padding: 10px 0 0;
}

#cvideos-loader {
	text-align: center;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 5px;
	left: 0;
	right: 0;
}

#cvideos-loader i {
	color: #fff;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	opacity: .4;
}

#info-cvideos {
	float: right;
	margin-top: 5px;
}

#info-cvideos i {
	color: #6a6a6a;
}

#cphotos-container {
	padding: 10px 0 0;
}

#cphotos-loader {
	text-align: center;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 5px;
	left: 0;
	right: 0;
}

#cphotos-loader i {
	color: #fff;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	opacity: .4;
}

#info-cphotos {
	float: right;
	margin-top: 5px;
}

#info-cphotos i {
	color: #6a6a6a;
}

#comments_btn_container {
	margin-bottom: 15px;
}

.comments-list .comment-item {
    display: block;
    padding: 10px 20px;
    margin: 0 -20px 10px;
    transition: margin ease .3s;
}

@media not all and (pointer: coarse) {
	.comments-list .comment-item .comment-actions {
		display: none;
	}
	
	.comments-list .comment-info:hover .comment-actions {
		display: block;
	}
}

.comments-list .comment-item .comment-user {
    float: left;
    position: relative;
    z-index: 5;
}

.comments-list .comment-item .comment-user a {
    display: inline-block;
    text-decoration: none;
}

.comments-list .comment-item .comment-info {
    position: relative;
    padding-left: 0;
    font-size: 14px;
}

.comments-list .comment-item .comment-info .comment-body {
    margin-left: 75px;
}

.comments-list .comment-item .comment-actions {
    float: right;
    margin-right: 10px;
}

.comments-list .comment-item .comment-info .comment-user-info {
    display: block;
}

.comments-list .comment-item .comment-info .comment-user-info .comment-username {
    font-weight: 700;
    line-height: 20px;
	color: #fff;
}

.comments-list .comment-item .comment-info .comment-user-info .comment-add-time {
    display: inline-block;
    font-size: 14px;
    line-height: 20px;
	color: #555;
}

.comments-list .comment-item .comment-info .comment-user-info .comment-add-time i {
    display: inline-block;
	margin: 0 3px 0 10px;
}

.comments-list .comment-item .comment-info .comment-text {
    display: block;
    margin: 5px 0;
	color: #bfbfbf;
    line-height: 20px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    font-size: 14px;	
}

.comments-list .comment-item .comment-info .comment-meta .comment-add-time {
    display: inline-block;
    font-size: 14px;
    line-height: 20px;
	color: #555;
}

.comments-list .comment-user {
	width: 60px;
}

.comments-list .comment-user a img {
	width: 100%;
	height: auto;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;	
}

.comment-response .show-error {
    font-weight: 700;
    color: #e34449;
}
.comment-response .show-success {
    font-weight: 700;
    color: #57a557;
}

.comment-response {
	display: inline-block;
    vertical-align: middle;
	margin-left: 10px;	
}

.comment-response > i {
	color: #ddd;
}

#comments_loading > i {
	color: #ddd;
}

.comments-list .row > div > div {
	position: relative;
	width: 100%;	
	padding-bottom: 56.25%;	
}

.comments-list iframe {
	position: absolute;
	width: 100%;
	height: 100%;	
}

.comments-list .row > div > img {
	width: 100%;	
	height: auto;
}

.comments-list .row {
	margin: 5px 0;
}

a.comments-show-more, a.comments-hide {
    margin: 0 15px 0 0;	
	color: #bfbfbf;
	font-size: 18px;
}

a.comments-hide {
	display: none;
}

a:hover.comments-show-more, a:hover.comments-hide {
	color: #fff;
}

a.comments-show-more i, a.comments-hide i {
	margin-left: 6px;
}

.comments-section {
	margin-bottom: 15px;
    overflow: hidden;	
}

.comments-section .dropdown-menu {
    background-color: #2b2b2b;
    margin: 0;
    border: 0;
    padding: .3rem 0;
    -webkit-border-radius: .25rem;
    -moz-border-radius: .25rem;
    border-radius: .25rem;
    z-index: 999;
	font-size: 14px;
}

.comments-list .comment-item .comment-actions a {
	color: #bfbfbf;
}

.comments-list .comment-item .comment-actions a:hover {
	color: #fff;
}

.comments-section .dropdown-menu a i {
	margin-right: 10px;
}

.comments-section .dropdown-menu a {
	color: #fff;	
}

.comments-section .dropdown-menu a:hover {
	background-color: #4a4a4a;
}

.comments-section .vote-box {
	display: inline-block;
}

.comments-section .vote-box .content-rating {
    font-size: 14px;
	margin: 0;
}

.comments-section .vote-up span, .comments-section .vote-down span {
    position: relative;
    top: 0;
    font-size: 12px;
	color: #aaa;
	margin: 0 5px 10px;	
}

.comments-section .content-rating i {
	color: #5a5a5a;
}

.comments-section .content-rating .voted i {
	color: #57a557;
}

.comments-section .content-rating .fa-thumbs-up{
    position: relative;
    top: -1px;
}

.comments-section .content-rating .fa-thumbs-down{
    position: relative;
    top: 3px;
}

.comments-section .comment-reply {
	display: inline-block;
	margin-left: 10px;
}

.comments-section .comment-reply a {
	color: #aaa;
}

.comments-section .comment-reply a:hover {
	color: #fff;
}

.comments-section .comment-reply a:hover i {
	color: #fff;
}

.comment-reply-container textarea {
    margin: 10px 0 10px;
    width: 80%;
    resize: none;
    color: #fff!important;
    background-color: #151515!important;
    border: 1px solid #353535!important;
}

.comment-reply-container textarea:focus, .comment-reply-container textarea:active {
    box-shadow: none;	
}

.comments-section .comment-reply i {
	margin-right: 5px;
	color: #5a5a5a;	
}

.comments-section .insert-media {
	margin-left: 4px;
}

.comments-section .btn-cancel {
	margin-left: 10px;
}

.reply-response .show-error {
    font-weight: 700;
    color: #e34449;
}
.reply-response .show-success {
    font-weight: 700;
    color: #57a557;
}



.reply-response > i {
	color: #ddd;
}

.replies-list .comment-item:first-child {
	margin-top: 10px;
}

.comment-replies {
	margin-left: 75px;
}

.comment-replies .comment-user {
    width: 45px;
}

.comment-replies .comment-item .comment-info .comment-body {
    margin-left: 60px;
}

.comment-item .comment-item {
	margin-bottom: 0;
	padding-bottom: 5px;
}

.comments-list .comment-item .comment-info .comment-user-info .comment-flagged i {
    display: inline-block;
    font-size: 14px;
    line-height: 20px;
    color: #e34449;
	margin-left: 10px;
}

.replies-show-hide-container {
	margin-top: 5px;
}

a.replies-show-more, a.replies-hide {
    margin: 0 15px 0 0;
    color: #bfbfbf;
    font-size: 16px;
	margin-top: 5px;
}

a.replies-show-more:hover, a.replies-hide:hover {
    color: #fff;
}

a.replies-show-more i, a.replies-hide i {
    margin-left: 6px;
}

a.replies-hide {
    display: none;
}

.replies-view-more {
	display: none;
}

.reply-response div {
	margin: 5px 0 0 0;
}


.vote-box i {
	align-self: flex-end;
	animation-duration: 0.5s;
	animation-iteration-count: 1;
	transform-origin: bottom;
}
.bounce-up {
	animation-name: bounce-up;
	animation-timing-function: ease;
	color: #57a557!important;
}
.bounce-down {
	animation-name: bounce-down;
	animation-timing-function: ease;
	color: #e34449!important;	
}
@keyframes bounce-up {
	0%   { transform: translateY(0); }
	30%  { transform: translateY(-3px); }
	50%  { transform: translateY(0); }
	100% { transform: translateY(0); }
}

@keyframes bounce-down {
	0%   { transform: translateY(0); }
	30%  { transform: translateY(3px); }
	50%  { transform: translateY(0); }
	100% { transform: translateY(0); }
}

.comments-section .dropdown-item {
	line-height: 28px;
    padding: .25rem 1.5rem!important;
}

.comments-section .dropdown-item.active, .comments-section .dropdown-item:active {
    color: #fff!important;
    font-weight: 700;	
    text-decoration: none;
    background-color: transparent;
}

.content-replacing {
	opacity: 0.4;
}

.modal .close {
    color: #aaa;
}

.modal .btn-facebook, .modal .btn-google {
	width: 100%;
}

.btn-facebook {
    color: #ffffff;
    background-color: #3f62ac;
    border-color: #3f62ac;	
}

.btn-facebook:hover, .btn-facebook:focus, .btn-facebook:active, .btn-facebook.active {
    color: #ffffff;
    background-color: #305299;
    border-color: #305299;
	box-shadow: none;	
}

.btn-google {
	color: #ffffff;
    background-color: #dd4b39;
    border-color: #dd4b39;
}

.btn-google:hover, .btn-google:focus, .btn-google:active, .btn-google.active {
	color: #ffffff;
    background-color: #c43a29;
    border-color: #c43a29;
	box-shadow: none;	
}

.btn-facebook i, .btn-google i {
	margin-right: 5px;
}


.modal-small {
    max-width: 400px;
}


.modal .nav-tabs .nav-link {
    padding: 6px 12px;
	color: #888888;
}


.modal .nav-tabs {
    border-bottom: 1px solid #888888;
}

.modal .nav-tabs .nav-link:focus, .modal .nav-tabs .nav-link:hover {
    border-color: transparent;
	color: #fff;	
}

.modal .nav-tabs .nav-item.show .nav-link, .modal .nav-tabs .nav-link.active {
    color: #fff;
    background-color: transparent;
    border-color: #888888 #888888 #1d1d1d;
}

.text-success {
    color: #57a557!important;
}

.modal-body {
	color: #a9a9a9;
}

.modal-content {
    background-color: #1d1d1d;
}

#user_reported i {
    display: inline-block;
    color: #e34449;
    top: 1px;
    position: relative;	
}

/* FORMS */

.form-horizontal {
	width: 100%;
}

.form-horizontal label {
    color: #fff;
}

.form-horizontal .text-muted {
    color: #8c8c8c!important;
}

.form-horizontal input.form-control:active, .form-horizontal input.form-control:focus, .form-horizontal textarea.form-control:active, .form-horizontal textarea.form-control:focus {
    color: #fff!important;
    background-color: #151515!important;
    border: 1px solid #6d6d6d!important;
    box-shadow: none;
}

.form-horizontal .text-x2 {
	font-size: 100%!important;
}

.form-horizontal .btn-facebook, .form-horizontal .btn-google {
	width: 100%;
	margin-bottom: 20px;	
}

.form-horizontal .form-control {
    background-color: #151515;
    border: 1px solid #353535;
    color: #fff;	
}

.form-horizontal .form-control:focus {
    box-shadow: none;
}

.form-horizontal .form-control option {
    color: #fff;
	border-color: #353535;	
}

.has-error input.form-control, .has-error textarea.form-control {
    border: 1px solid #dc3545;
}

.form-horizontal .custom-file-label {
    color: #ffffff;
    background-color: #151515;
    border: 1px solid #353535;
}

.form-horizontal .custom-file-input:focus~.custom-file-label {
	border-color: #353535;	
	box-shadow: none;

}

.form-horizontal .custom-file-input:focus {
	outline-color: #353535;
	outline: none;	
}

.form-horizontal .has-error .form-control {
    border: 1px solid #dc3545;
}

.form-horizontal .has-error .custom-file-label {
    border: 1px solid #dc3545;
}

.form-horizontal .custom-file-label::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: block;
    height: 2.25rem;
    padding: .375rem .75rem;
    line-height: 1.5;
    color: #ffffff;
    content: "Browse";
    background-color: #353535;
    border-left: none;
    border-radius: 0 .25rem .25rem 0;
}

.text-small {
	font-size: 80%;
    font-weight: 400;	
}

.progress {
    height: 0.3rem;
    background-color: #e9ecef;
    border-radius: .25rem;
}

.progress-bar {
    background-color: #da2657;
}

/* END FORMS */

.what-is h5 {
	color: #fff;
}

.what-is .list-unstyled {
	font-size: 18px;
	color: #a0a0a0;
}

.what-is .list-unstyled li{
	margin: 10px 0;
}

/* BLOG CARDS */

.note-group-select-from-files {
	display: none;
}

.dropdown-toggle::after {
    display: none;
}

.note-modal-content {
    background-color: #1d1d1d!important;
	border-radius: 0!important;
    border: none!important;
}

.note-modal-header {
    border: none!important;
}

.note-modal-title {
    color: #ffffff!important;
}

.note-modal .close {
    color: #aaa;
    text-shadow: none;
    opacity: 1;
}

.note-modal-header {
    padding: 1rem!important;
}

.note-modal-body {
    padding: 1rem!important;
}

.note-modal-footer .note-btn {
    position: absolute;
    bottom: 1rem!important;
    right: 1rem!important;
}

.note-modal .note-btn {
    color: #fff!important;
    background-color: #da2657!important;
    border-color: #da2657!important;
    border-radius: 3px!important;
    font-size: 14px!important;
    font-weight: 700!important;
    padding: .675rem 1.25rem!important;
}


.note-frame {
    color: #b7b7b7!important;
}

.note-modal .note-btn:hover {
	background-color: #b22048!important;
    border-color: #b22048!important;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #333;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.card a {
	color: #fff;	
}

.card a:hover {
	text-decoration: underline;
}
.card {
	color: #8d8d8d;	
    background-color: #000000;
    border: 1px solid rgb(51, 51, 51);
    margin-bottom: 10px;
}

.card-body img, .card-body iframe {
	max-width: 100%;
}

.small-avatar {
    width: 30px;
    height: auto;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
	margin-right: 10px;
}

.medium-avatar {
    width: 48px;
    height: auto;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
	margin-right: 10px;
}

.total-subscribers {
	font-size: 14px;
}


.card-sub {
	color: #8d8d8d;		
    border-top: 1px solid #151515;
    padding-top: 10px;
}	

.card-sub .float-right.mt-2 {
	margin-top: 9px!important;
}

.blog-body {
	color: #8d8d8d;
}

/* PROFILE MENU */

.profile-menu .nav-tabs {
    border-bottom: 1px solid #2b2b2b;
}

.profile-menu .nav-tabs .nav-item.show .nav-link a, .profile-menu .nav-tabs .nav-link.active a {
	color: #fff!important;
}

.profile-menu .nav-tabs .nav-link:focus, .profile-menu .nav-tabs .nav-link:hover {
    border-color: #2b2b2b;
	background-color: #2b2b2b;
	margin-bottom: -1px;	
}

.profile-menu .nav-tabs .nav-link:focus a, .profile-menu .nav-tabs .nav-link:hover a {
	color: #fff!important;
}

.profile-menu .nav-tabs .nav-item.show .nav-link, .profile-menu .nav-tabs .nav-link.active {
	background-color: #da2657;
    border-color: #da2657;
	margin-bottom: -1px;	
}

.profile-menu .nav-link {
    padding: 10px 10px;
}

.m-l-14 {
	margin-left: 14px;
}

fieldset {
    color: #999;
}

h5 {
    color: #999;	
}

.table-dark {
    color: #fff;
    background-color: #151515!important;
}

.table-dark.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.5)!important;
}

.table-dark td, .table-dark th, .table-dark thead th {
    border-color: #2b2b2b!important;
}

.tmb-active {
	outline: 2px solid green;
}

.video-edit-thumbnails img {
	cursor: pointer;
}

.edit-photo-actions {
	width: 25px;
	float: left;
	margin-top: 10px;
}

.edit-photo-caption {
	width: calc(100% - 25px);
	float: right;
	margin-top: 5px;	
}

.mail-left {
	width: 120px;
	float: left;
	border-left: 1px solid #333;
}

.mail-right {
	width: calc(100% - 120px);
	float: right;		
}

.mail-left .row>div {
	margin-bottom: 15px;
}

.mail-left .row div:last-child {
	margin-bottom: 0;	
}

.mail-container {
	color: #555;
}
.mail-body {
	color: #bfbfbf;
	font-size: 18px;
	margin-top: 15px;
	border-left: 1px solid #333;
	padding-left: 15px;
}

.subject-unread {
	font-weight: 700;
}

@media only screen and (max-width: 991px) {
	.mail-left {
		width: 100%;
		border-left: none;
		border-bottom: 1px solid #333;
		margin-bottom: 15px; 
	}	
	.mail-right {
		width: 100%;		
	}
	.mail-left .row>div {
		margin-bottom: 15px;
	}	
	.mail-body {
		border-left: none;
		padding-left: 0;
	}	
}

.request-sub {
	color: #8d8d8d;		
    border-top: 1px solid #151515;
    padding-top: 10px;
}	

.request-sub .small-avatar {
	width: 38px;
	height: auto;
}

/* TAGS */
.tag-heading {
	margin-top: 15px;
	color: #fff;
	font-size: 24px;
	font-weight: 500;
	background-color: #1c1c1c;
    border-radius: 4px;	
}

/* VIDEO */

.video-actions .dropdown-menu {
	top: 3px!important;
    background-color: #2b2b2b;
    margin: 0;
    border: 0;
    padding: .3rem 0;
    -webkit-border-radius: .25rem;
    -moz-border-radius: .25rem;
    border-radius: .25rem;
    z-index: 999;
    font-size: 14px;
}

.video-actions .dropdown-item {
	line-height: 28px;
    padding: .25rem 1.5rem!important;
}

.video-actions .dropdown-menu a {
	color: #bfbfbf!important;	
}

.video-actions .dropdown-item.active, .comments-section .dropdown-item:active, .video-actions .dropdown-item.active, .comments-section .dropdown-item:focus {
    color: #fff!important;
    font-weight: 700;	
    text-decoration: none;
    background-color: transparent;
}

.video-actions .dropdown-menu a:hover {
    background-color: #4a4a4a;
}

.related-video {
	margin-bottom: 10px;
}

.related-video .thumb-overlay {
    width: 50%;
    float: left;
}

.related-video .content-info {
    height: 75px;
    float: left;
    width: 50%;
    padding-left: 10px;
}

.at-resp-share-element .at-share-btn:focus, .at-resp-share-element .at-share-btn:hover {
    outline: none;
}

.feed-blog {
	padding: 20px;	
    border: 1px solid #222;
	margin-bottom: 20px;
	border-radius: .25rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis	
}

.feed-blog div {
	font-size: 14px;
	color: #606060;
	margin-left: 20px;	
}

.feed-wall {
    border-left: 1px solid #333;
    margin-left: 150px;
    padding-left: 10px;
}

.feed-left {
	position: relative;
	left: -175px;
	margin-bottom: -65px;
	overflow: hidden;
}

.feed-left a {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	width: 140px;
	display:inline-block;
}

.feed-left:after {
	content: "";
    width: 3px;
    height: 10px;
    position: absolute;
    top: 20px;
    left: 163px;
	background-color: #606060;
}

.label-date {
	position: absolute;
    top: 0;
    right: 0;
    border: none;
    text-align: right;
    text-shadow: 1px 1px 4px rgba(0,0,0,.3);
    color: #fff;
    font-size: 14px;
    background-color: #333;
    padding: 1px 10px 2px;;
}

/* PLUPLOAD */

.fileupload-theme-dragdrop .fileupload-input {
    display: block;
    padding: 50px 0;
    border: 1px dashed #6d6d6d;
    border-radius: .25rem;
	color:#999;
    text-align: center;
    -webkit-transition: background-color 0.2s ease;
            transition: background-color 0.2s ease;
}

.fileupload-theme-dragdrop .fileupload-input i{
    display: block;
    text-align:center;
	font-size:3em;
	margin-bottom: 10px;
    -webkit-transition: all 0.2s ease;
            transition: all 0.2s ease;
}
.fileupload-theme-dragdrop .fileupload-input h3 {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    font-size: 20px;
    font-weight: normal;
    white-space: normal;
}
.fileupload-theme-dragdrop .fileupload-input p {  
	font-size:16px;
    margin: 0 0 10px 0;   	
}

.fileupload-fileinfo {	
	padding: .375rem .75rem;
    border: 1px dashed #6d6d6d;
    border-radius: .25rem;
    margin-bottom: 1rem;	
}

a.fileupload-file-remove {
	float: right;
	color: #fff!important;
    margin-top: 8px;	
}

.fileupload-file-title {
	float: left;
	color:#fff; 
	margin-bottom:3px;
	font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
	width: calc(100% - 100px);
}

.fileupload-file-size {
	float: left;
	color:#909090; 
	margin-bottom:3px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
	width: calc(100% - 100px);
}

.item-title {
	float: left;
	color:#fff; 
	margin: 10px 0;
	font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
	width: calc(100% - 100px);	
}

.item-size {
	float: right;	
	color:#909090;
	margin: 10px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
	width: 100px;
	text-align: right;
}

.video-embedded {
	width: 100%;
	overflow: hidden;
}

.video-embedded iframe {
	width: 100%!important;
	height: 100%!important;
}


#top-news-bar {
    background-color: #ff4d70;
    color: #ffffff;
    padding: 2px 10px;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative; /* for close button positioning */
}

#top-news-bar a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    flex-direction: row;
}

#top-news-bar .news-text {
    display: inline-block;
}

#top-news-bar .news-button {
    background-color: #ffffff;
    color: #ff0236;
    padding: 2px 6px;
	line-height: 1;
    margin-left: 8px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
}





#top-news-bar .news-button:hover {
    color: #000000;
}

#close-news-bar {
    font-size: 20px;
    cursor: pointer;
    color: #ffffff;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 600px) {
    #top-news-bar{
        flex-wrap: nowrap;         /* no wrap */
        padding: 6px 10px;
        text-align: left;
        white-space: nowrap;       /* keep one line */
    }

    /* keep link contents on one row; leave room for the X button */
    #top-news-bar a{
        flex-direction: row;       /* undo column */
        align-items: center;
        min-width: 0;              /* allow ellipsis to work */
        max-width: calc(100% - 40px);
        white-space: nowrap;
        overflow: hidden;
    }

    /* truncate long text instead of wrapping */
    #top-news-bar .news-text{
        display: inline-block;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    /* button stays visible and never wraps */
    #top-news-bar .news-button{
        white-space: nowrap;
        margin-left: 8px;
        margin-top: 0;
        flex: 0 0 auto;
    }
}

/* Videos page: pin Upload right + fade edges (scroll left area only) */
@media (min-width: 768px) {
	.videos-page .well-filters{
		display: flex;
		align-items: center;
		flex-wrap: nowrap;
		position: relative;
		z-index: 50;
	}

	.videos-page .well-filters > .float-left,
	.videos-page .well-filters > .float-right{
		float: none !important;
	}

	.videos-page .well-filters .clearfix{
		display: none;
	}

	/* title */
	.videos-page .well-filters > .float-left:first-child{
		flex: 0 0 auto;
	}
	.videos-page .well-filters h1{
		padding: 2px 0 3px;
		margin: 0;
	}	/* middle area */
	.videos-page .well-filters > .float-left:nth-of-type(2){
		flex: 1 1 auto;
		min-width: 0;
		display: flex;
		align-items: center;
		margin-left: 14px; /* gap between title and All|HD */
	}

	/* Upload pinned right */
	.videos-page .well-filters > .float-right.well-action{
		flex: 0 0 auto;
		margin-left: auto;
		padding: 2px 0 !important;
		box-shadow: none !important;
	}
	.videos-page .well-filters > .float-right.well-action:hover{
		box-shadow: none !important;
	}

	/* Row containing scroll area + fixed dropdowns */
	.videos-page .videos-filters-row{
		display: flex;
		align-items: center;
		flex-wrap: nowrap;
		width: 100%;
		min-width: 0;
	}	/* Scroll/fade area (All/HD + toggles) */
	.videos-page #videosFilterScroll{
		flex: 0 1 auto; /* do NOT grow; only shrink (so right filters don't get pushed away) */
		min-width: 0;
		max-width: 100%;

		flex-wrap: nowrap !important;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;

		border-top: 0;
		border-bottom: 0;
		margin-left: 26px;
		padding: 0 !important;

		position: relative;

		scrollbar-width: none;
		-ms-overflow-style: none;
	}
	.videos-page #videosFilterScroll::-webkit-scrollbar{
		display: none;
	}
	.videos-page #videosFilterScroll > *{
		flex: 0 0 auto;
	}
	.videos-page #videosFilterScroll .well-action.m-l-20{
		margin-left: 0 !important;
	}	/* Fixed dropdowns (Type/Timeline/Most Recent) — must overlay */
	.videos-page .videos-filter-fixed{
		flex: 0 0 auto;      /* never shrink */
		margin-left: 12px;
		margin-right: 20px;  /* optional: pulls it away from Upload a bit */
		position: relative;
		z-index: 2000;
	}
	.videos-page .videos-filter-fixed .dropdown-menu{
		z-index: 10000;
	}

	/* Fade edges */
	.videos-page #videosFilterScroll.filter-fade::before,
	.videos-page #videosFilterScroll.filter-fade::after{
		content: "";
		position: absolute;
		top: 0;
		bottom: 0;
		width: 30px;
		pointer-events: none;
		z-index: 5;
	}
	.videos-page #videosFilterScroll.filter-fade::before{
		left: 0;
		background: linear-gradient(to right, #000000, rgba(0,0,0,0));
	}
	.videos-page #videosFilterScroll.filter-fade::after{
		right: 0;
		background: linear-gradient(to left, #000000, rgba(0,0,0,0));
	}
	.videos-page #videosFilterScroll.filter-fade--no-left::before{ display:none; }
.videos-page #videosFilterScroll.filter-fade--no-right::after{ display:none; }
}

/* INDEX (homepage) mobile: Quality dropdown (left) + scrollable category toggles (right) */
@media (max-width: 767.98px){

	.index-page .index-mobile-strip{
		flex-wrap: nowrap !important;
	}

	/* Quality dropdown: match videos page style (no underline) */
	.index-page .index-mobile-quality .well-action{
		box-shadow: none !important;
		padding: 2px 0 !important;
		display: inline-flex;
		align-items: center;
		line-height: 1;
	}

	.index-page .index-mobile-quality .dd-arrow{
		margin-left: 4px;
	}

	/* Override theme dropdown left:-14px */
	.index-page .index-mobile-quality .dropdown-menu{
		left: 0 !important;
	}

	/* Toggle strip uses remaining width and scrolls */
	.index-page #indexMobileToggles{
		flex: 1 1 auto;
		min-width: 0;

		flex-wrap: nowrap;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		touch-action: pan-x;

		scrollbar-width: none;
		-ms-overflow-style: none;

		position: relative;
	}

	.index-page #indexMobileToggles > *{
		flex: 0 0 auto;
	}

	.index-page #indexMobileToggles::-webkit-scrollbar{
		display: none;
	}

	/* Fade edges (your JS adds .mob-fade / modifiers) */
	.index-page #indexMobileToggles.mob-fade::before,
	.index-page #indexMobileToggles.mob-fade::after{
		content: "";
		position: absolute;
		top: 0;
		bottom: 0;
		width: 24px;
		pointer-events: none;
		z-index: 5;
	}
	.index-page #indexMobileToggles.mob-fade::before{
		left: 0;
		background: linear-gradient(to right, #000000, rgba(0,0,0,0));
	}
	.index-page #indexMobileToggles.mob-fade::after{
		right: 0;
		background: linear-gradient(to left, #000000, rgba(0,0,0,0));
	}
	.index-page #indexMobileToggles.mob-fade--no-left::before{ display:none; }
	.index-page #indexMobileToggles.mob-fade--no-right::after{ display:none; }
}
/* Notice stuff */
.notice-content {
	color: #e04c82;

}

.card-text{
  color: #e0e0e0;
}

/* HR helper: zero vertical margins */
.hr-0{
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  border: 0;
  border-top: 1px solid #222;
  opacity: 1;
}

/* Homepage: use a full-width container instead of the 1323px cap */
.container.index-page {
    max-width: 100% !important;
}

/* Optional: if you want slightly less “gutter” on the sides */
.container.index-page {
    padding-left: 10px;
    padding-right: 10px;
}

/* Desktop/tablet: remove the extra top gap caused by Bootstrap .mt-3 on the homepage container */
@media (min-width: 768px){
	.container.index-page{
		margin-top: 0 !important;
	}
}

/* INDEX (homepage) desktop: title left, filters centered (scroll if needed), More link right */
@media (min-width: 768px){

	.index-page .index-bw-filters{
		box-shadow: none;
	}

	.index-page .index-bw-desktopbar-row{
		display: grid !important; /* override Bootstrap d-md-block */
		grid-template-columns: auto minmax(0, 1fr) auto;
		align-items: center;
		column-gap: 14px;

		border-top: 1px solid #222;
		border-bottom: 1px solid #333;
		padding: 2px 0 3px;
	}
	
	    /* Ensure Being Watched bar and its dropdowns sit above page content - HOPEFULLY NOT NEEDED - this breaks the mouseover menus to open to close against/over header
    .index-page .index-bw-desktopbar-row{
        position: relative;
        z-index: 3000;
    }*/

	.index-page .index-bw-desktopbar-row h1{
		padding: 0;
		margin: 0;
		white-space: nowrap;
	}

	/* Middle area holds filters (no horizontal scroll; allow dropdowns) */
.index-page .index-bw-desktopbar-row .index-filterstrip--inline{
    display: flex;
    align-items: center;
    flex-wrap: nowrap !important;

    min-width: 0;
    max-width: 100%;

    overflow: visible;          /* KEY: dropdowns won’t be clipped */

    border: 0;
    margin-top: 0;
    padding: 0 !important;

    position: relative;
}

	/* This inner wrapper centers when it fits; aligns left when it overflows */
	.index-page .index-bw-desktopbar-row .index-filterstrip--inline .index-filterstrip-inner{
		display: flex;
		align-items: center;
		flex-wrap: nowrap;
		gap: 8px;

		width: max-content;
		margin: 0 auto;
	}

	.index-page .index-bw-desktopbar-row .index-filterstrip--inline .index-filterstrip-inner > *{
		flex: 0 0 auto;
	}

	.index-page .index-bw-desktopbar-row .index-filterstrip--inline .toggle-container{
		flex-wrap: nowrap;
		white-space: nowrap;
	}

	.index-page .index-bw-desktopbar-row .well-action.index-bw-more{
		padding: 2px 0 !important;
		box-shadow: none !important;
		white-space: nowrap;
	}
	.index-page .index-bw-desktopbar-row .well-action.index-bw-more:hover{
		box-shadow: none !important;
	}
}

/* Videos page: fluid like Index, but capped (no bootstrap container stepping) */
.container.videos-page{
  max-width: 1500px !important;  /* your cap */
  width: 100%;
}



/* Keep "More ▾" on one line */
.videos-toggles-more > a {
    white-space: nowrap;
}

/* Secondary toggles inline on the main bar (wide) */
.videos-toggles-secondary .toggle-item {
    display: inline-flex;
    align-items: center;

}

.videos-toggles-secondary {
   margin-left: -6px;

}

/* Dropdown menu look */
.videos-toggles-more-menu {
    background-color: #222;
    color: #fff;
   /* min-width: 230px;    a bit wider so label + switch aren't cramped */
}

/* When secondary block lives inside the dropdown */
.videos-toggles-secondary-in-dropdown {
    display: flex;              /* keep flex, but stack vertically */
    flex-direction: column;
    align-items: stretch;
    margin-left: 0;
    padding: 2px 4px;
    box-shadow: none !important;
}

/* Vertical list: one toggle per line in dropdown */
.videos-toggles-secondary-in-dropdown .toggle-item {
    display: flex;              /* override inline-flex from bar */
    align-items: center;
    margin: 3px 0;
}

/* Labels readable on dark background */
.videos-toggles-secondary-in-dropdown span {
    color: #fff;

}

/* Keep switch pushed to the right edge of each row */
.videos-toggles-secondary-in-dropdown label.switch {
    margin-left: auto;
}

/* Videos page: A = single non-wrapping flex group for All/HD + toggles (desktop) */
@media (min-width: 768px){
    .videos-page .index-filterstrip{
        flex-wrap: nowrap;
    }
    .videos-toggles-group{
        flex-wrap: nowrap;
        min-width: 0;
    }
    .videos-toggles-main{
        display: flex;
        align-items: center;
        flex: 0 1 auto;
        white-space: nowrap;
    }
    .videos-toggles-secondary,
    .videos-toggles-more{
        flex: 0 0 auto;
    }
}

/* INDEX: desktop toggles – same layout idea as videos page */

/* Keep "More ▾" label on one line */
.index-toggles-more > a {
    white-space: nowrap;
}

/* Secondary toggles inline on the bar (wide) */
.index-toggles-secondary .toggle-item {
    display: inline-flex;
    align-items: center;
}

.index-toggles-secondary {
   margin-left: -6px;

}

/* Dropdown menu look for secondary filters */
.index-toggles-more-menu {
    background-color: #222;
    color: #fff;
    z-index: 10000;        /* above the bar and thumbnails */
}

/* When secondary block lives inside the dropdown */
.index-toggles-secondary-in-dropdown {
    display: flex;              /* stack vertically */
    flex-direction: column;
    align-items: stretch;
    margin-left: 0;
    padding: 2px 4px;
    box-shadow: none !important;
}

/* Vertical list: one toggle per line in dropdown */
.index-toggles-secondary-in-dropdown .toggle-item {
    display: flex;              /* override inline-flex from bar */
    align-items: center;
    margin: 3px 0;
}

/* Labels readable on dark background */
.index-toggles-secondary-in-dropdown span {
    color: #fff;
}

/* Keep switch pushed to the right edge of each row */
.index-toggles-secondary-in-dropdown label.switch {
    margin-left: auto;
}

/* Keep A (All/HD + primary + secondary + More) on a single row (desktop) */
@media (min-width: 768px){
    .index-page .index-filterstrip--inline{
        flex-wrap: nowrap;
    }
    .index-toggles-group{
        flex-wrap: nowrap;
        min-width: 0;
    }
    .index-toggles-main{
        display: flex;
        align-items: center;
        flex: 0 1 auto;
        white-space: nowrap;
    }
    .index-toggles-secondary,
    .index-toggles-more{
        flex: 0 0 auto;
    }
}

.futa-toggle-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.futa-sub-panel {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 4px;
    padding: 6px 8px;
    background: #222;
    border: 1px solid #444;
    border-radius: 3px;
    white-space: nowrap;
    display: none;
    z-index: 10;
}

.futa-toggle-wrapper.open .futa-sub-panel {
    display: block;
}

.futa-sub-toggle-btn {
    margin-left: 4px;
    padding: 0 4px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 15px;
	line-height: 1;
    color: #bbb; /* ensure visible */
}

/* Tighten spacing between Futa switch and caret arrow */
.futa-toggle-wrapper .switch {
    margin-right: 0px;  /* smaller than the default 5px */
}

.futa-sub-toggle-btn {
    margin-left: 0;     /* remove extra gap */
    padding: 0 3px;     /* slightly narrower button if you want */
}


/* Index page mobile: disable fade overlays on the toggle strip completely */
@media (max-width: 767.98px) {
  .index-page #indexMobileToggles::before,
  .index-page #indexMobileToggles::after {
    display: none !important;
  }
}