/* -- main settings -- */
@import url('https://fonts.googleapis.com/css2?family=Kalam:wght@300&display=swap');

* {
	margin: 0;
	padding: 0;
	outline: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

*, *:before, *:after {
	box-sizing: border-box;
}

:root {
	--add-transition: all 100ms ease-in-out;
	--add-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.3);
	--hdftbc: #1a1a1c;
	--navcolor: #8d8d99;
	--navcolor-hover: #bcbccc;
	--defred: #f96b78;
	--defred-hover: #f84a5a;
	--subnavbgc: #222226;
	--subnavbgc-hover: #36363b;
	--umenu_colorsvg: #6a6a73;
	--pureblack: #000;
	--almostblack: #0d0d0f;
	--darkavatar: #46464d;
}

body {
	font-family: Lato, sans-serif;
	font-size: 13px;
	color: #dcdce5;
	font-weight: 400;
	background: var(--almostblack);
	overflow-x: hidden;
	line-height: 1;
}

img {
	border: none;
	vertical-align: middle;
	max-width: 100%;
	height: auto;
}

ul {
	list-style-type: none;
}

input,
textarea,
select {
	padding: 12px 16px;
	width: 100%;
	border: 0;
	display: block;
	color: #6a6a73;
	background: #28282b;
	font-family: Lato, sans-serif;
}

input::-webkit-input-placeholder {
	font-weight: 700;
	color: #6a6a73;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
	font-size: 0;
}

textarea::-webkit-input-placeholder {
	font-weight: 400;
}

label {
	display: block;
	cursor: pointer;
}

button, .button {
	padding: 9px 15px;
	color: #8d8d99;
	background: #262629;
	border-radius: 3px;
	cursor: pointer;
	border: 0;
	display: block;
}

button:hover, .button:hover {
	color: #8d8d99;
	background: #2c2c30;
}

button:active, .button:active {
	background: #3f3f43;
}

button.red, .button.red {
	background: var(--defred);
	color: var(--pureblack);
	border-radius: 4px;
	font-size: 14px;
	font-weight: 700;
	padding: 10px 15px;
	display: inline-block;
}

button.red:hover, .button.red:hover {
	background: #bebecc;
}

button.red:active, .button.red:active {
	background: #777780;
}

input[type="checkbox"],
input[type="radio"] {
	width: 16px;
	display: none;
}

a {
	color: #757580;
	text-decoration: none;
}

a:hover {
	color: #65656e;
}

.clearfix::after {
	clear: both;
	content: '';
	display: block;
}

.clear {
	clear: both;
}

.transition {
	transition: var(--add-transition);
	-webkit-transition: var(--add-transition);
	-moz-transition: var(--add-transition);
	-ms-transition: var(--add-transition);
	-o-transition: var(--add-transition);
}

.scrollbar::-webkit-scrollbar {
	width: 4px;
}

.scrollbar::-webkit-scrollbar-thumb {
	background-color: #6D6D6D;
}

.scrollbar::-webkit-scrollbar-thumb:hover {
	background-color: #595959;
}

.shadow {
	box-shadow: var(--add-shadow);
	-webkit-box-shadow: var(--add-shadow);
	-moz-box-shadow: var(--add-shadow);
}

.overlay {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .5);
	z-index: 20;
	display: none;
}

.center_svg {
	position: absolute;
	margin: auto;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
}

.disableselect {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.divider_before:before,
.divider_after:after {
	content: '';
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #3f3f45;
	display: inline-block;
	margin: 0 9px 2px 7px;
}

.addline:before {
	content: '';
	width: 2px;
	height: 12px;
	background: var(--defred);
	display: inline-block;
	margin: 0 4px 0px 0;
}

.ads { /* u can delete .ads after */
	background: #1a1a1c;
	max-width: 728px;
	width: 100%;
	height: 90px;
	margin: 40px auto 0;
	color: #49494c;
	font-size: 24px;
	font-weight: 900;
	display: grid;
	align-items: center;
	text-align: center;
}

.ads iframe {
	max-width: 100%;
}

/* -- end_ main settings -- */

.wrap {
	margin: 0 auto;
	width: 100%;
	max-width: 1325px;
	/*padding:0 15px;*/
	position: relative;
}

.wrap.pstpz {
	max-width: 1024px;
}

header {
	width: 100%;
	height: 60px;
	line-height: 60px;
	background: var(--hdftbc);
}

header .inner {
	display: flex;
}

.mobmenu, .msearch, .showmu {
	display: none;
}

.logo {
	margin: 0 70px 0 0;
	display: inline-block;
}

.logo:hover {
	opacity: 0.9;
}

.logo:active {
	opacity: 0.7;
}

.dropdown {
	fill: #757580;
	width: 11px;
	height: 6px;
	margin: 0 0 1px 3px;
}

.nav {
	position: relative;
	display: inline-block;
}

.nav li {
	display: inline-block;
}

.nav a {
	padding: 15px 13px;
	color: var(--navcolor);
	position: relative;
}

.nav .upload a {
	color: #d3d3e5;
}

.nav a:hover,
.nav a:hover svg,
.nav a.active,
.nav a.active svg {
	color: var(--navcolor-hover);
	fill: var(--navcolor-hover);
}

.nav a:active {
	opacity: 0.4;
}

.nav a::after {
	background: #f96b78;
	height: 3px;
	width: -moz-calc(100% - 26px);
	width: -webkit-calc(100% - 26px);
	width: calc(100% - 26px);
	position: absolute;
	display: block;
	bottom: -7px;
	left: 13px;
	transform: scale(0, 1);
	transform-origin: center;
	transition: transform ease-in-out 250ms;
	content: '';
}

.nav a:hover::after {
	transform: scale(1, 1);
}

.submenu {
	background: var(--subnavbgc);
	padding: 15px 6px;
	border-radius: 8px;
	display: none;
	position: absolute;
	margin: 5px 0 0 -37px;
	text-transform: uppercase;
	font-weight: 700;
	text-align: center;
	font-size: 12px;
	line-height: initial;
	z-index: 100;
	min-width: 178px;
}

.submenu li {
	display: block;
}

.submenu a {
	padding: 10px 30px;
	display: block;
	border-radius: 5px;
	color: #81818c;
}

.submenu a:hover {
	background: var(--subnavbgc-hover);
}

.submenu a:active {

}

.nav .submenu a::after {
	transform: scale(0, 1);
}

.search {
	width: 300px;
	margin: 0 0 0 15px;
	position: relative;
	display: inline-block;
	vertical-align: middle;
	display: inline-block;
}

.search input {
	margin-top: 10px;
	border-radius: 5px;
	background: #2a2a2e;
	padding-right: 45px;
	vertical-align: middle;
	display: inline-block;
}

.search span {
	background: none;
	border-radius: 4px;
	position: absolute;
	right: 4px;
	top: 50%;
	transform: translate(0, -50%);
	width: 32px;
	height: 32px;
	cursor: pointer;
}

.search:hover span {
	background: #38383d;
}

.search span:active {
	opacity: 0.4
}

.search:hover svg {
	fill: #afafb6;
}

.search svg {
	fill: #81818c;
	width: 16px;
	height: 16px;
}

.unavdiv {
	margin: 0 8px 0 auto;
}

.upgrade {
	color: var(--defred);
	margin: 0 25px 0 0;
	display: inline-block;
}

svg.staricon {
	fill: var(--defred);
	width: 13px;
	height: 12px;
	margin: 0 0 -1px 0;
}

.upgrade:hover {
	opacity: 0.8;
	color: var(--defred);
}

.upgrade:active {
	opacity: 0.4;
}

.unav {
	display: inline-block;
}

.unav li {
	display: inherit;
}

.unav a {
	color: var(--navcolor);
	position: relative;
	padding: 15px 13px;
}

.unav a:hover {
	color: var(--navcolor-hover);
}

.unav a::after {
	background: #f96b78;
	height: 3px;
	width: -moz-calc(100% - 26px);
	width: -webkit-calc(100% - 26px);
	width: calc(100% - 26px);
	position: absolute;
	display: block;
	bottom: -7px;
	left: 13px;
	transform: scale(0, 1);
	transform-origin: center;
	transition: transform ease-in-out 250ms;
	content: '';
}

.unav a:hover::after {
	transform: scale(1, 1);
}

.unav-logged {
	display: inline-block;
	position: relative;
}

.unav-logged li {
	display: inherit;
}

.unav-logged a {
	color: var(--navcolor);
	display: block;
}

.unav-logged a:hover,
.unav-logged a:hover .dropdown,
.unav-logged a.active,
.unav-logged a.active .dropdown {
	color: var(--navcolor-hover);
	fill: var(--navcolor-hover);
}

.unav-logged a:active {
	opacity: 0.4;
}

.unav-logged .username span {
	display: inline-block;
	vertical-align: middle;
}

.user_avatar {
	width: 30px;
	height: 30px;
	background: #8d8d99;
	border-radius: 50%;
	position: relative;
	margin: 0 7px 0 0;
	display: inline-block;
}

.user_avatar.own {
	background: none !important;
}

.user_avatar img {
	border-radius: 50%;
}

.default-avatar {
	fill: var(--pureblack);
	width: 12px;
	height: 14px;
}

.unav-logged .notifications {
	margin: 0 0 0 10px;
	line-height: initial;
	position: relative;
	display: inline-block;
	vertical-align: middle;
}

.unav-logged .notifications a {
	padding: 20px 10px 17px;
}

.unav-logged .notifications a:hover {
	background: #222225;
}

.unav-logged .notifications svg {
	fill: #5e5e66;
	width: 13px;
	height: 18px;
}

.unav-logged .notifications span {
	display: none;
	background: var(--defred);
	color: var(--pureblack);
	padding: 0 5px 1px 5px;
	position: absolute;
	top: 11px;
	left: 13px;
	border-radius: 11px;
	font-size: 11px;
	font-weight: 900;
	line-height: 15px;
	text-align: center;
	border: 3px solid #1a1a1c;
}

.unav-logged .notifications.active span {
	display: block;
}


.unav-logged .notifications.active svg,
.unav-logged .notifications a:hover svg {
	fill: #bcbccc;
}

.loader,
.loader:before,
.loader:after {
	border-radius: 50%;
}

.loader {
	color: #45454c;
	font-size: 11px;
	text-indent: -99999em;
	margin: 55px auto;
	position: relative;
	width: 10em;
	height: 10em;
	box-shadow: inset 0 0 0 1em;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
}

.loader:before,
.loader:after {
	position: absolute;
	content: '';
}

.loader:before {
	width: 5.2em;
	height: 10.2em;
	background: #1a1a1c;
	border-radius: 10.2em 0 0 10.2em;
	top: -0.1em;
	left: -0.1em;
	-webkit-transform-origin: 5.1em 5.1em;
	transform-origin: 5.1em 5.1em;
	-webkit-animation: load2 2s infinite ease 1.5s;
	animation: load2 2s infinite ease 1.5s;
}

.loader:after {
	width: 5.2em;
	height: 10.2em;
	background: #1a1a1c;
	border-radius: 0 10.2em 10.2em 0;
	top: -0.1em;
	left: 4.9em;
	-webkit-transform-origin: 0.1em 5.1em;
	transform-origin: 0.1em 5.1em;
	-webkit-animation: load2 2s infinite ease;
	animation: load2 2s infinite ease;
}

.unav-logged .submenu {
	/*width:180px;*/
	padding: 6px 6px;
}

.unav-logged .submenu li {
	text-align: left;
}

.unav-logged .submenu a {
	padding: 11px 15px 11px 0;
}

.unav-logged .submenu a:hover svg {
	fill: #9898a6;
}

.unav-logged .submenu span {
	width: 45px;
	display: inline-block;
	text-align: center;
}

.unav-logged .submenu .logout {
	margin: 20px 0 0;
}

.unav-logged .submenu .profile svg {
	width: 12px;
}

.unav-logged .submenu .myvideos svg {
	width: 15px;
	height: 13px;
}

.unav-logged .submenu .subs svg {
	width: 11px;
	height: 11px;
}

.unav-logged .submenu .settings svg {
	width: 15px;
	margin: 0 0 -2px 0;
}

.unav-logged .submenu .stats svg {
	width: 13px;
	height: 13px;
}

.unav-logged .submenu .payouts svg {
	width: 15px;
	margin: 0 0 -1px 0;
}

.unav-logged .submenu .logout svg {
	width: 13px;
	height: 14px;
}


.unav-logged .submenu svg {
	fill: var(--umenu_colorsvg);
	margin: 0 0 -1px 0;
}

.notification-box {
	background: var(--hdftbc);
	border-radius: 5px;
	max-width: 575px;
	width: 100%;
	position: absolute;
	right: 0;
	top: 65px;
	margin: 0;
	line-height: initial;
	font-weight: 700;
	z-index: 50;
	display: none;
}

.not_header {
	padding: 21px 25px;
	border-bottom: 1px solid #262629;
}

.not_header .title {
	color: #b4b4cc;
	font-size: 15px;
}

.not_header .title:after {
	content: '';
	height: 4px;
	width: 4px;
	border-radius: 50%;
	background: #414147;
	margin: 2px 12px;
	display: inline-block;
}

.not_header .manage_subs {

}

.not_header .manage_subs a {
	color: #8b8b99;
}

.not_header .manage_subs a:hover {
	opacity: 0.8;
}

.not_header .manage_subs a:active {
	opacity: 0.4;
}

.not_header .mark_read {
	cursor: pointer;
	color: #757580;
	float: right;
	margin: 2px 0 0 0;
}

.not_header .mark_read:hover {
	opacity: 0.8;
}

.not_header .mark_read:active {
	opacity: 0.4;
}

.not_content {
	padding: 0 0 15px;
}

.not_content-in {
	overflow-x: hidden;
	height: 250px;
}

.single_not {
	padding: 10px 16px 12px 22px;
	display: grid;
	grid-template-columns: auto 375px 90px;
}

.single_not .user_avatar {
	width: 50px;
	height: 50px;
	background: var(--darkavatar);
	margin: 0 15px 0 3px;
}

.single_not .default-avatar {
	width: 16px;
	height: 18px;
}

.single_not .not_cont {
	margin: 5px 0 0;
}

.single_not .user_name {
	color: #d0d0d9;
	margin: 0 2px 0 0;
}

.verified_user svg {
	fill: #5398ff;
	width: 12px;
	height: 12px;
	margin: 0 0 -2px;
}

.single_not .not_text {
	color: #81818c;
	margin: 0 0 0 4px;
}

.single_not .not_tit {
	display: block;
	margin: 8px 0 0;
	color: #d0d0d9;
	max-width: 90%;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.single_not .not_time {
	display: block;
	margin: 14px 0 0;
	color: #81818c;
}

.single_not .not_image {

}

.single_not .not_image img {
	border-radius: 2px;
}

.single_not:hover {
	background: #232326;
}

.single_not.nonseen {
	background: #232326;
}

.single_not:active {
	background: #2a2a2d;
}

.single_not.nonseen .user_avatar:before {
	content: '';
	background: var(--defred);
	height: 60%;
	width: 3px;
	position: absolute;
	left: -24px;
	top: 10px;
}

.not_content .zero-not {
	text-align: center;
	margin: 65px 0;
}

.not_content .zero-not svg {
	fill: #45454c;
	width: 28px;
	height: 40px;
}

.not_content .zero-not .no-notf {
	color: #6a6a73;
	margin: 15px 0 7px;
}

.not_content .zero-not .no-notf_link {
	color: #8d8d99;
	text-decoration: underline;
}

.not_content .zero-not .no-notf_link:hover {
	opacity: 0.8;
}

.not_content .zero-not .no-notf_link:active {
	opacity: 0.4;
}

.container {
	min-height: 657px;
	padding: 60px 0;
}

.head-info {
	margin: 0 0 30px;
	display: flex;
	place-items: center;
}

.head-info.m60 {
	margin: 0 0 60px;
}

.head-info.second {
	margin-top: 50px;
}

.head-info h1 {
	color: #cacad9;
	font-size: 16px;
	font-weight: 900;
}

.head-info h1 strong {
	color: #777780;
	font-weight: 900;
}

.head-info.top-channels h1 {
	font-size: 20px;
	margin: 0 0 40px;
}

.head-info span {
	color: #777780;
	/*margin:12px 0 0;*/
	display: block;
	font-weight: 900;
	font-size: 15px;
}

.head-info h2 {
	color: #cacad9;
	font-size: 16px;
	font-weight: 900;
}

.head-info svg.staricon {
	width: 15px;
	height: 15px
}

.head-info svg.subs {
	fill: var(--defred);
	width: 12px;
	margin: 0 2px 0 0;
}

.head-info .button {
	font-weight: 700;
}

.head-info .button svg.dropdown {
	transform: rotate(-90deg);
}

.head-info .button.managesubs svg {
	transform: rotate(0);
	fill: #525259;
	width: 16px;
	height: 15px;
	margin: 0 5px -3px 0px;
}

.head-info .button.managesubs {
	text-transform: uppercase;
	font-size: 12px;
}

.head-info .left {

}

.head-info .right {
	margin-left: auto;
}

.sort-videos {
	display: flex;
	align-items: center;
}

.sort-videos span {
	color: #5a5a66;
	margin: 0 10px 0;
	display: inline-block;
	font-weight: 700;
	font-size: 14px;
}

.videos {
	grid-template-columns: repeat(auto-fill, minmax(205px, 1fr));
	grid-gap: 35px 20px;
	display: grid;
}

.videos.subscriptions {

}

.s-video {
	position: relative;
}

.s-video_image {
	position: relative;
}

.s-video .watched {
	position: absolute;
	display: block;
	color: #fff;
	bottom: 9px;
	left: 9px;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	display: none;
}

.s-video .watched:before {
	content: '';
	border-left: 2px solid var(--defred);
	padding: 0px 0px 0px 4px;
}

.s-video.marked_watched .watched {
	display: block;
}

.s-video_image:before {
	background-color: #141414;
	width: 100%;
	content: "";
	padding-top: 56.25%;
	display: block;
}

.s-video_image a {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.s-video_image.last:before {
	background-color: transparent;
}

.s-video_image img {
	border-radius: 3px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.inside_info {
	position: absolute;
	right: 6px;
	bottom: 6px;
	overflow: hidden;
	cursor: default;
}

.singleinfo {
	padding: 3px 7px;
	border-radius: 2px;
	display: inline-block;
	font-size: 11px;
	font-weight: 900;
}

.hdlabel {
	background: var(--defred);
	padding: 1px 5px 2px 5px;
	font-style: italic;
	color: #fff;
}

.timeofvideo {
	background: rgb(13 13 15 / 60%);
	font-weight: 700;
	padding: 2px 5px;
}

.s-video_image .overlay-hover {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	background: rgba(0, 0, 0, 0);
	box-shadow: inset 0px -25px 25px rgba(0, 0, 0, 0.4);
}

.s-video_image:hover .overlay-hover {
	background: rgba(0, 0, 0, 0.3);
}

.s-video_info .title {
	color: #dcdce5;
	font-weight: 700;
	max-width: 100%;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	display: block;
	margin: 9px 0 7px;
}

.s-video_info .title:hover {
	color: var(--defred);
}

.s-video_info .title:active {
	color: #bd525b;
}

.s-video_info .autor {
	color: #9898a6;
	display: block;
	margin: 0 0 7px;
}

.s-video_info .autor:hover .name {
	opacity: 0.8;
}

.s-video_info .autor:active .name {
	opacity: 0.4;
}

.s-video_info .autor .name {
	margin: 0 1px 0 0;
}

.s-video_info .views {
	color: #757580;
}

.s-video_info .time {
	color: #757580;
}

.videopla {
	display: grid;
	grid-template-columns: 1fr 250px;
}

.videopla .video-details {
	padding: 0 40px 0 0;
}

.videopla .player {
	margin: 0 0 20px;
}

.videopla .video-details h1 {
	color: #d0d0d9;
	font-size: 20px;
	font-weight: 900;
	margin: 0 0 22px;
	line-height: 27px;
}

.videopla .videos.related {
	display: flex;
	flex-wrap: nowrap;
	flex-flow: column;
	margin: 0;
	justify-content: flex-start;
	grid-gap: 0;
}

.videopla .rtitle {
	color: #cacad9;
	font-weight: 700;
	font-size: 16px;
	margin: 0 0 20px;
}

.loadmorevideos, .loadmorepayouts {
	text-transform: uppercase;
	text-align: center;
	font-weight: 700;
	font-size: 12px;
}

.videopla .videos.related .s-video {
	margin: 0 0 20px;
}

.videopla .autagsbs {
	display: flex;
	color: #81818c;
	margin: 0 0 20px;
}

.videopla .autagsbs .left,
.videopla .autagsbs .right {
	display: flex;
	align-items: center;
}

.videopla .autagsbs.daygotags .left {
	align-items: baseline;
}

.videopla .autagsbs .right {
	margin-left: auto;
}

.videopla .autagsbs .linktoprofile {
	display: flex;
	align-items: center;
}

.videopla .autagsbs .linktoprofile:hover {
	opacity: 0.8;
}

.videopla .autagsbs .linktoprofile:active {
	opacity: 0.4;
}

.videopla .autagsbs .user_avatar {
	width: 24px;
	height: 24px;
	margin: 0 7px 0 0;
	background: #5e5e66;
}

.videopla .autagsbs .user_avatar svg {
	width: 10px;
	height: 12px;
}

.videopla .autagsbs .user_name {
	color: #bcbccc;
	font-weight: 700;
	margin: 0;
	margin: 2px 0 0 0;
}

.videopla .autagsbs .verified_user {
	margin: 0 0 0 5px;
}

.videopla .autagsbs .subscribers {
	margin: 2px 0 0 0;
}

.videopla .autagsbs .subscribers:before {
	margin: 0 9px 2px 13px;
}

.videopla .autagsbs .subscribers:after {
	margin: 0 13px 2px 9px;
}

.button.subscribe {
	background: var(--defred);
	color: var(--almostblack);
	border-radius: 15px;
	padding: 5px 12px;
	font-weight: 700;
	display: inline-block;
}

.button.subscribe:hover {
	opacity: 0.8;
}

.button.subscribe:active {
	opacity: 0.6;
}

.button.subscribe.active {
	background: #2f2f33;
	color: #9292a6;
}

.button.subscribe svg {
	width: 9px;
	height: 9px;
	fill: var(--defred);
	margin: 0 4px -1px 0;
}

.videopla .autagsbs .nviews {
	font-weight: 700;
	font-size: 15px;
}

.videopla .autagsbs .nviews:after {
	margin: 0 14px 1px 9px;
}

.videopla .autagsbs .votes {
	position: relative;
}

.videopla .autagsbs .votes a {
	padding: 3px 5px;
}

.videopla .autagsbs .votes a:hover {
	opacity: 0.8;
}

.videopla .autagsbs .votes a:active {
	opacity: 0.4;
}

.videopla .autagsbs .votes .upvote {
	margin: 0 0 0 -5px;
}

.videopla .autagsbs .votes .downvote {
	margin: 0 -5px 0 0;
}

.videopla .autagsbs .votes svg {
	fill: #81818c;
	width: 12px;
	height: 12px;
	margin: 0 3px -1px 0;
}

.videopla .autagsbs .votes .upvote.active svg,
.videopla .autagsbs .votes .upvote.active {
	fill: #59ca76;
	color: #59ca76;
}

.videopla .autagsbs .votes .downvote.active svg,
.videopla .autagsbs .votes .downvote.active {
	fill: var(--defred);
	color: var(--defred);
}

.videopla .autagsbs .votes .downvote svg {
	transform: rotate(180deg);
}

.progressbar {
	width: 100%;
	overflow: auto;
	margin: 5px 0 0;
	position: absolute;
}

.votesbar {
	float: left;
	height: 2px;
	width: 50%;
}

.votesbar.upvote1 {
	background: #408b54;
}

.votesbar.downvote1 {
	background: var(--defred);
}

.videopla .autagsbs .dayago {

}

.button.editvpx {
	background: #b0b0bf;
	padding: 8px 17px;
	border-radius: 25px;
	color: var(--almostblack);
	font-weight: 700;
}

.button.editvpx svg {
	fill: var(--almostblack);
	width: 12px;
	height: 12px;
	margin: 0 3px -2px 0px;
}

.button.editvpx:hover {
	opacity: 0.8;
}

.button.editvpx:active {
	opacity: 0.4;
}

.videos-results {
	display: grid;
	grid-template-columns: 230px 1fr;
}

.sidebar {
	background: #16161a;
	padding: 25px 30px;
	border-radius: 5px;
	height: fit-content;
}

.videos-results.vsidb .sidebar {
	margin: 0 0 15px;
}


.sidebar .title {
	color: #d3d3e5;
	font-weight: 700;
	font-size: 18px;
	margin: 0 0 20px;
}

.sidebar .title.v2 {
	font-size: 15px;
	margin: 20px 0;

}

.sidebar_info {
	text-align: center;
}

.sidebar_info .user_avatar {
	width: 60px;
	height: 60px;
	background: var(--darkavatar);
	margin: 0 0 10px;
}

.sidebar_info .user_avatar svg {
	width: 20px;
	height: 22px;
}

.sidebar_info .user_name {
	color: #b9b9c9;
	font-weight: 700;
}

.sidebar_info .premiumtag {
	text-transform: uppercase;
	color: var(--defred);
	font-size: 11px;
	margin: 5px 0 0;
}

.sidebar_info .viewprofile {
	border-radius: 15px;
	margin: 15px 0 0;
	display: inline-block;
	padding: 8px 16px;
}

.sidebar .sidebar_menu {
	border-bottom: 2px solid #1c1c21;
	padding: 0 0 15px;
	font-size: 14px;
}

.sidebar .sidebar_menu.noborder {
	border-bottom: 0;
}

.sidebar .sidebar_menu label,
.sidebar .sidebar_menu a {
	padding: 11px 0;
	display: block;
	color: #757580;
	font-weight: 700;
	position: relative;
}

.sidebar .sidebar_menu span:after,
.sidebar .sidebar_menu a:after {
	content: '';
	width: 16px;
	height: 2px;
	background: var(--defred);
	display: inline-block;
	margin: -2px 0 0 0;
	position: absolute;
	right: 0;
	top: 50%;
	transform: scale(0, 1);
	transform-origin: left;
	transition: transform ease-in-out 250ms;
}

/*
.sidebar .sidebar_menu span:hover::after,
.sidebar .sidebar_menu a:hover::after {
    transform: scale(1, 1);
}
*/

.sidebar .sidebar_menu .my_subscriptions:after {
	content: '';
	width: 30px;
	height: 2px;
	background: #222225;
	display: block;
	margin: 20px 0;
}

.sidebar .sidebar_menu label:hover,
.sidebar .sidebar_menu a:hover {
	opacity: 0.8;
}

.sidebar .sidebar_menu label:active,
.sidebar .sidebar_menu a:active {
	opacity: 0.4;
}

.sidebar .sidebar_menu .featured_videos label {
	color: var(--defred);
}

.sidebar .sidebar_menu input[type=radio]:checked + span,
.sidebar .sidebar_menu input[type=radio]:checked + span:after,
.sidebar .sidebar_menu a.active,
.sidebar .sidebar_menu a.active:after {
	transform: scale(1, 1);
	color: #d3d3e5;
}

.content {
	margin: 0 0 0 30px;
}

.vsidb .content {
	background: #16161a;
	padding: 25px 30px;
}

.vsidb.v1 .content {
	background: #16161a;
	padding: 25px 40px;
}

.vsidb .content h1 {
	font-size: 20px;
}

.vsidb .content h1 strong {
	margin: 0 0 0 15px;
}

.content .s-video {
	/*width: calc(100%/4);*/
}

.row.top-channels {
	grid-template-columns:repeat(auto-fill, minmax(398px, 1fr));
	grid-gap: 24px;
	display: grid;
}

.single-channel {
	padding: 25px;
	background: #19191c;
	border-radius: 8px;
	display: flex;
	align-items: center;
	color: #757580;
}

.row.top-channels .single-channel:nth-child(3n+0) {
	margin-right: 0;
}

.single-channel .user_avatar {
	width: 90px;
	height: 90px;
	background: #3b3b40;
	margin: 0 25px 0 0;
}

.single-channel .user_avatar svg {
	width: 32px;
	height: 34px;
}

.single-channel .user_name {
	color: #b9b9c9;
	font-weight: 700;
	margin: 0 0 10px;
	font-size: 16px;
	display: inline-block;
}

.single-channel .verified_user svg {
	width: 14px;
	height: 14px;
	margin: 0 3px -1px;
}

.single-channel .button {
	margin: 12px 0 0 0;
}

.single-channel:hover {
	box-shadow: 0 0 0 2px #232328;
	color: #757580;
}

.single-channel:hover .user_name {
	color: var(--defred);
}

.vsidb .row.top-channels {
	grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
	grid-gap: 20px;
	display: grid;
}

.vsidb .single-channel {
	background: #202024;
	display: block;
	text-align: center;
	padding: 25px 10px;
}

.vsidb .single-channel .user_avatar {
	margin: 0 0 12px;
	width: 60px;
	height: 60px;
}

.vsidb .single-channel .user_avatar svg {
	width: 20px;
	height: 22px;
}

.vsidb .single-channel .user_name {
	margin: 0 0 10px 0;
}

.vsidb .single-channel .verified_user svg {
	width: 12px;
	height: 12px;
}

.my_videos {

}

.my_videos-head {
	color: #6a6a73;
	padding: 0 0 12px;
	border-bottom: 2px solid #1c1c1f;
	display: flex;
	align-items: center;
}

.single-vid_selectdel {
	width: 305px;
}

.selectall {
	color: #9898a6;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 900;
	position: relative;
	display: inline-block;
	margin: 0 20px 0 0;
}

.delete-all {
	color: #f04643;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 700;
}

.delete-all strong {
	color: #f06260;
	font-weight: 700;
}

.delete-all svg {
	width: 10px;
	height: 13px;
	fill: #ee4144;
	margin: 0 5px -1px 0;
}

.delete-all:hover,
.delete-all:hover svg {
	color: #f36562;
	fill: #f36562;
}

.delete-all:active,
.delete-all:active svg {
	color: #f58482;
	fill: #f58482;
}

.customcheckbox span {
	display: flex;
	align-items: center;
}

.customcheckbox span:before {
	width: 13px;
	height: 13px;
	border: 2px solid #3e3e44;
	background: transparent;
	margin: 0 7px 1px 0;
	border-radius: 1px;
	content: '';
	display: flex;
}

.customcheckbox input[type=checkbox]:checked + span {
	color: var(--defred);
}

.customcheckbox input[type=checkbox]:checked + span:before {
	background: var(--defred);
	border-color: var(--defred);
	content: "\2713";
	color: var(--almostblack);
	font-size: 11px;
	align-items: center;
	font-weight: 900;
}

.single-vid {
	color: #9898a6;
	padding: 12px 0;
	border-bottom: 2px solid #1c1c1f;
	display: flex;
	align-items: center;
	position: relative;
}

.single-vid:hover {
	background: #1d1d21;
}

.single-vid .customcheckbox {
	display: flex;
	padding: 0 13px;
	position: absolute;
	left: -39px;
	top: 12px;
	bottom: 12px;
}

.single-vid .customcheckbox span:before {
	margin: 0 0 0 0;
	opacity: 0;
	transition: var(--add-transition);
	-webkit-transition: var(--add-transition);
	-moz-transition: var(--add-transition);
	-ms-transition: var(--add-transition);
	-o-transition: var(--add-transition);
}

.single-vid:hover .customcheckbox span:before {
	opacity: 1;
}

.single-vid input[type=checkbox]:checked + span:before {
	opacity: 1;
}

.single-vid:hover .siminfo {
	opacity: 0;
}

.actbutton {
	position: absolute;
	right: 20px;
	opacity: 0;
	display: flex;
}

.single-vid:hover .actbutton {
	opacity: 1;
}

.single-vid .button {
	font-weight: 700;
}

.single-vid .button.edit {
	background: #3b3b40;
	margin: 0 8px 0 0;
}

.single-vid .button.edit:hover {
	background: #434349;
}

.single-vid .button.edit:active {
	background: #4b4b52;
}

.button.deletevideobutton {
	background: #f04643;
	color: var(--almostblack);
	font-weight: 700;
}

.button.deletevideobutton:hover {
	background: #f36562;
}

.button.deletevideobutton:active {
	background: #f58482;
}

.siminfo {
	min-width: 95px;
	padding: 0 15px;
	text-align: center;
}

.single-vid_image {
	position: relative;
	width: 100px;
}

.single-vid_image:before {
	background-color: #141414;
	width: 100%;
	content: "";
	padding-top: 56.25%;
	display: block;
}

.single-vid_image a {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.single-vid_image .overlay-hover {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	background: rgba(0, 0, 0, 0);
}

.single-vid_image:hover .overlay-hover {
	background: rgba(0, 0, 0, 0.3);
}

.single-vid_image img {
	border-radius: 3px;
}

.single-vid_image .inside_info {
	right: 1px;
	bottom: 1px;
	color: #dcdce5;
}

.single-vid_title {
	text-align: left;
	margin: 0 0 0 15px;
	width: 260px;
}

.single-vid_title a {
	color: #bcbccc;
	font-weight: 700;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	display: block;
}

.single-vid_title a:hover {
	color: var(--defred);
}

.single-vid_title a:active {
	color: #bd525b;
}

.single-vid_views {
	margin-left: auto;
}

.single-vid_visibility.public svg {
	width: 18px;
	height: 12px;
	fill: #59ca80;
}

.single-vid_visibility.private svg {
	width: 18px;
	height: 14px;
	fill: #e04c4f;
}

.vperpagepagi {
	margin: 25px 0 0;
	display: flex;
	align-items: center;
	place-content: flex-end;
}

.myv_paginator {
	display: flex;
	align-items: center;
	margin: 3px 0 0 20px;
}

.myv_paginator a {
	padding: 5px;
}

.allpages {
	color: #8d8d99;
	margin: 0 10px;
}

.myv_paginator .firstpage svg,
.myv_paginator .lastpage svg {
	width: 15px;
	height: 18px;
	fill: #56565e;
}

.myv_paginator .prevpage svg,
.myv_paginator .nextpage svg {
	width: 10px;
	height: 18px;
	fill: #56565e;
}

.myv_paginator .firstpage svg,
.myv_paginator .prevpage svg {
	transform: rotate(180deg)
}

.myv_paginator a:hover svg {
	fill: #81818c;
}

.paginator {
	margin: 80px 0;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}

.paginator a {
	width: 45px;
	height: 45px;
	line-height: 45px;
	border-radius: 50%;
	background: #232326;
	color: #5a5a66;
	display: inline-block;
	text-align: center;
	margin: 0 8px 0 0;
	font-size: 17px;
}

.paginator a:hover {
	opacity: 0.8;
}

.paginator a:active {
	opacity: 0.4;
}

.paginator a.active {
	background: var(--defred);
	color: var(--almostblack);
}

/*
.paginator a.active:hover {
    background:#bebecc;
}

.paginator a.active:active {
    background:#777780;
}
*/

.paginator a.prev,
.paginator a.next {
	width: auto;
	padding: 0 20px;
	border-radius: 25px;
	color: var(--almostblack);
	background: var(--defred);
	font-size: 15px;
}

.paginator a.prev svg,
.paginator a.next svg {
	fill: var(--almostblack);
	width: 13px;
	height: 10px;
	margin: 0 0 0 0;
}

/*
.paginator a.prev:hover,
.paginator a.next:hover {
    background:#bebecc;
}

.paginator a.prev:active,
.paginator a.next:active {
    background:#777780;
}
*/

.paginator a.prev svg {
	margin: 0 4px 0 0;
}

.paginator a.next svg {
	margin: 0 0 0 4px;
}

.paginator a.next svg {
	transform: rotate(180deg);
}

.paginator .emptyspace {
	width: 14px;
	height: 2px;
	border-radius: 2px;
	font-size: 0;
}

.tags {
	display: flex;
	align-items: center;
}

.autagsbs .tags {
	align-items: baseline;
	max-width: 650px;
}

.tags span {
	margin: 0 10px 0 0;
}

.tags ul {
	display: flex;
	flex-wrap: wrap;
	margin: 5px 0 0;
}

.tags li {

}

.tags li a {
	padding: 5px 7px;
	color: #9f9fa6;
	background: #2a2a2e;
	border-radius: 3px;
	margin: 0 4px 4px 0;
	display: flex;
}

.tags li a:hover {
	background: #3a3a40;
}

.tags li a:active,
.tags li a.active {
	background: #424249;
}

.pornstars {
	display: flex;
}

.pornstars span {
	margin: 0 10px 0 0;
}

.pornstars li {
	display: inline-block;
}

.pornstars li a {
	padding: 0px 2px;
	color: #bcbccc;
}

.pornstars li a:hover {
	opacity: 0.8;
}

.pornstars li a:active {
	opacity: 0.6;
}

.comments {
	margin: 40px 0 0;
}

.comm-head {
	display: flex;
	align-items: center;
	margin: 0 0 50px;
}

.comments .ncomments {
	color: #cacad9;
	font-size: 16px;
	font-weight: 700;
}

.comments .ncomments.divider_after:after {
	margin: 0 16px 1px 15px;
}

.comments .ncomments span {
	color: #82828c;
}

.single-comment {
	display: grid;
	margin: 0 0 30px;
	grid-template-areas:
        "avatar comment"
        ". addcom";
	grid-template-columns: 59px 1fr;
	transition: opacity .3s ease-in-out;
}

.is_negative {
	opacity: .5;
}

.single-comment .comment_avatar {
	grid-area: avatar;
}

.single-comment .comment_content {
	grid-area: comment;
}


.single-comment.replycom {
	margin-left: 60px;
}

.comments .user_avatar {
	width: 44px;
	height: 44px;
	background: var(--darkavatar);
	margin: 0 15px 0 0;
}

.comments .user_avatar svg {
	width: 16px;
	height: 18px;
}

.single-comment .user_name {
	font-weight: 700;
	color: #d3d3e5;
}

.single-comment .user_name:hover {
	opacity: 0.8;
}

.single-comment .user_name:active {
	opacity: 0.4;
}

.single-comment .verified_user {
	margin: 0 0 0 2px;
}

.single-comment .dayago {
	color: #6a6a73;
}

.single-comment .dayago.divider_before:before {
	margin: 0 9px 2px 9px;
}

.single-comment .comment_text {
	margin: 10px 0 18px;
	color: #81818c;
	line-height: 20px;
}

.single-comment .votes.divider_after:after {
	margin: 0px 11px 2px 5px;
}

.single-comment .votes a {
	padding: 1px 5px;
}

.single-comment .votes a:hover {
	opacity: 0.8;
}

.single-comment .votes a:active {
	opacity: 0.4;
}

.single-comment .votes .upvote {

}

.single-comment .votes .downvote {

}

.single-comment .result {
	color: #6a6a73;
}

.single-comment .result.positive {
	color: #59ca76;
}

.single-comment .result.negative {
	color: var(--defred);
}

.single-comment .votes svg {
	fill: #81818c;
	width: 12px;
	height: 7px;
}

.single-comment .votes .upvote.active svg {
	fill: #59ca76;
}

.single-comment .votes .downvote.active svg {
	fill: var(--defred);
}

.single-comment .votes .downvote svg {
	transform: rotate(180deg);
}

.single-comment .reply {
	color: #81818c;
	text-transform: uppercase;
	font-weight: 700;
}

.single-comment .reply:hover {
	opacity: 0.8;
}

.single-comment .reply:active {
	opacity: 0.4;
}

.add_comment {
	margin: 15px 0 0;
	grid-area: addcom;
}

.add_comment textarea {
	background: #1f1f21;
	resize: none;
	max-width: 100%;
	min-height: 100px;
	border-radius: 5px;
}

.add_comment .bldsa {
	display: grid;
	grid-template-columns: auto 1fr;
}

.add_comment .actual_comment {
	position: relative;
}

.add_comment .actual_comment:after {
	right: 100%;
	top: 22px;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(31, 31, 33, 0);
	border-right-color: #1f1f21;
	border-width: 10px;
	margin-top: -10px;
}

.add_comment .button {
	margin: 10px 0 0;
}

.add_comment .clear_reply {
	display: none;
	position: relative;
	margin: 0 0 0 15px;
}

.add_comment .clear_reply:hover {
	opacity: 0.8;
}

.add_comment .clear_reply:active {
	opacity: 0.4;
}

.add_comment .clear_reply svg {
	width: 18px;
	height: 18px;
	fill: #8d8d99;
}

.openmysubs {
	color: #8d8d99;
	text-decoration: underline;
	font-size: 14px;
	font-weight: 700;
	width: 175px;
	height: 45px;
	display: block;
	line-height: 23px;
	top: 50% !important;
	left: 50% !important;
	transform: translate(-50%, -50%);
}

.premium {
	display: block;
	margin: 40px auto;
	max-width: 650px;
	width: 100%;
}

.get-premium {
	background: var(--defred);
	padding: 6px 5px 6px 25px;
	border-radius: 25px;
	text-transform: uppercase;
	font-weight: 900;
	font-size: 15px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-between;
}

.get-premium span {
	color: var(--almostblack);
	margin: 0 0 2px 0;
}

.get-premium a {
	color: var(--defred);
	background: var(--almostblack);
	border-radius: 25px;
	font-size: 11px;
	font-weight: 600;
	padding: 7px 18px;
	margin: 0 0 0 15px;
}

.get-premium a:hover {
	background: #3a1b1d;
}

.get-premium a:active {
	background: #652f33;
}


.sort {
	font-size: 15px;
	font-weight: 700;
	color: #777780;
	margin: 0 -8px;
}

.sort li {
	display: inline-block;
}

.sort span {
	padding: 3px 8px;
	position: relative;
	font-weight: 700 !important;
	transition: var(--add-transition);
}

.sort span::after {
	background: #f96b78;
	height: 2px;
	/*
    width: -moz-calc(100% - 26px);
    width: -webkit-calc(100% - 26px);
    width: calc(100% - 26px);
    */
	width: 20px;
	position: absolute;
	display: block;
	bottom: -6px;
	left: 8px;
	transform: scale(0, 1);
	transform-origin: left;
	transition: transform ease-in-out 250ms;
	content: '';
}

.sort span:hover {
	color: #cacad9;
}

.sort input[type=radio]:checked + span,
.sort input[type=radio]:checked + span:after {
	color: #cacad9;
	transform: scale(1, 1);
}

.sort.disabled {
	opacity: 0.3;
}

.sort.disabled li label {
	cursor: not-allowed;
}

.sort.disabled input[type=radio]:checked + span,
.sort.disabled span:hover {
	color: #777780;
}

.sort.disabled span:hover::after,
.sort.disabled input[type=radio]:checked + span:after {
	transform: scale(0, 1);
}

.zero-videos {
	display: flex;
	margin: 70px 0;
	justify-content: center;
	align-items: center;
	font-weight: 700;
}

.zero-videos .no_videos {
	color: #6a6a73;
	margin: 0 0 7px;
}

.zero-videos .no_videos_link {
	color: #8d8d99;
	text-decoration: underline;
}

.zero-videos .no_videos_link:hover {
	opacity: 0.8;
}

.zero-videos .no_videos_link:active {
	opacity: 0.4;
}

.zero-videos svg {
	width: 20px;
	height: 20px;
	fill: #3b3b40;
	margin: 0 15px 0 0;
}

.zero-videos.profile {
	margin: 150px 0;
	text-align: center;
	font-size: 16px;
	line-height: 25px;
}

.zero-videos.profile .button {
	background: var(--defred);
	color: var(--almostblack);
	padding: 3px 10px;
	font-size: 14px;
	display: inline-block;
	margin: 5px 0 0;
}

.zero-videos.profile .button:hover {
	opacity: 0.8;
}

.zero-videos.profile .button:active {
	opacity: 0.4;
}

.profile-header {
	margin: 0 0 60px;
}

.profile_image {
	position: relative;
}

.profile_image img {
	border-radius: 5px;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	object-fit: cover;
	max-height: 250px;
	width: 100%;
}

.profile_image:before {
	background-color: #141414;
	border-radius: 5px;
	width: 100%;
	content: "";
	padding-top: 18.869%;
	display: block;
}

.upload-head {
	background: rgb(255 255 255 / 50%);
	padding: 5px 10px;
	color: var(--pureblack);
	border-radius: 5px;
	z-index: 2;
	position: absolute;
	right: 15px;
	top: 15px;
	font-weight: 700;
}

.upload-head:hover {
	color: var(--pureblack);
	background: rgb(255 255 255 / 60%);
}

.upload-head:active {
	background: rgb(255 255 255 / 70%);
}

.upload-head svg {
	fill: var(--almostblack);
	width: 15px;
	height: 12px;
	opacity: 0.5;
	margin: 0 3px -1px 0;
}

.user_info {
	display: flex;
	z-index: 2;
	position: relative;
	margin: -14px 35px 0;
}

.user_info .left {
	display: flex;
	align-items: center;
}

.user_info .user_avatar {
	width: 106px;
	height: 106px;
	background: #3b3b40;
	border: 6px solid var(--almostblack);
	margin: 0 20px 0 0;
}

.user_info .user_avatar svg {
	width: 36px;
	height: 38px;
}

.user_info .uploadavatar {
	width: 31px;
	height: 31px;
	border-radius: 50%;
	display: block;
	background: #757580;
	position: absolute;
	right: 0;
	bottom: 2px;
}

.user_info .uploadavatar svg {
	width: 15px;
	height: 12px;
	fill: var(--almostblack);
}

.user_info .uploadavatar:hover {
	opacity: 0.8;
}

.user_info .uploadavatar:active {
	opacity: 0.4;
}

.u_info {
	margin: 15px 0 0 0;
}

.u_info .usname {
	margin: 0 0 4px 0;
}

.user_info .user_name {
	font-size: 18px;
	color: #b9b9c9;
	font-weight: 700;
}

.user_info .usinfo {
	color: #81818c;
}

.user_info .verified_user svg {
	width: 14px;
	height: 14px;
}

.user_info .editpro svg {
	width: 15px;
	height: 15px;
	fill: #757580;
	margin: 0 5px -2px;
}

.user_info .button {
	display: inline-block;
}

.user_info .sendtip {
	background: #b0b0bf;
	padding: 6px 15px;
	border-radius: 25px;
	color: var(--almostblack);
	font-weight: 700;
}

.user_info .sendtip:hover {
	opacity: 0.8;
}

.user_info .sendtip:active {
	opacity: 0.4;
}

.user_info .sendtip svg {
	width: 7px;
	height: 14px;
	fill: var(--almostblack);
	margin: 0 2px -3px 0;
}

.user_info .right {
	display: flex;
	align-items: center;
	margin: 15px 0 0 auto;
}

.user_info .mysite {
	background: #1f1f21;
	padding: 4px 7px;
	border-radius: 10px;
	color: #a4a4b2;
	margin: 0 5px 0;
}

.user_info .mysite:hover {
	opacity: 0.8;
}

.user_info .mysite:active {
	opacity: 0.4;
}

.user_info .mysite svg {
	width: 9px;
	height: 9px;
	fill: #525259;
	margin: 0 3px -1px;
}

.s-video .editvideo {
	background: #2b2b30;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	position: absolute;
	right: 0;
	bottom: 0;
	opacity: 0;
}

.s-video:hover .editvideo {
	opacity: 1;
}

.s-video .editvideo:hover {
	background: #36363b;
}

.s-video .editvideo:active {
	background: #3f3f43;
}

.s-video .editvideo svg {
	width: 14px;
	height: 14px;
	fill: #9898a6;
}

.uploadfiles {
	max-width: 860px;
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

.uploadfiles h1 {
	font-size: 22px;
	font-weight: 900;
	margin: 0 0 40px;
}

.uploadfiles .box {
	border-radius: 10px;
	padding: 40px;
	background: #17171a;
}

.uploadfiles .ubci {
	background: #232326;
	width: 160px;
	height: 160px;
	border-radius: 50%;
	position: relative;
	display: block;
	margin: 0 auto 25px;
}

.uploadfiles .ubci svg {
	width: 48px;
	height: 50px;
	fill: #46464d;
}

.uploadfiles .ubci:hover {
	opacity: 0.8;
}

.uploadfiles .ubci:active {
	opacity: 0.4;
}

.uploadfiles .dragdrop {
	color: #81818c;
	font-size: 16px;
	font-weight: 700;
}

.uploadfiles .or {
	color: #5e5e66;
	font-size: 16px;
	font-weight: 700;
	margin: 18px 0;
}

.premiumover {
	width: 100%;
	background: var(--defred);
	color: var(--almostblack);
	padding: 38px 0;
	text-align: center;
}

.premiumover h1 {
	font-size: 16px;
	opacity: 0.6;
	margin: 0 0 12px;
}

.premiumover h2 {
	font-size: 22px;
	font-weight: 900;
}

.premiumpage .row {
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	display: grid;
	text-align: center;
}

.single-feature {
	margin: 0 0px 80px 0;
	padding: 0 30px;
}

.single-feature svg {
	fill: var(--defred);
	width: 34px;
}

.single-feature .shareup {
	width: 30px;
	height: 34px;
}

.single-feature .tumbnail {
	width: 40px;
	height: 18px;
}

.single-feature .title {
	margin: 25px 0 20px;
	color: #b0b0bf;
	font-size: 14px;
	font-weight: 700;
}

.single-feature p {
	color: #757580;
	line-height: 23px;
}

.buy-premium {
	text-align: center;
}

.buy-premium p {
	font-size: 16px;
	color: #bcbccc;
	font-weight: 700;
	line-height: 30px;
}

.premiumbuttonbuy {
	margin: 40px 0 25px;
	font-size: 15px;
	padding: 13px 80px;
}

.premiumprice .price {
	color: #c7c7d9;
	font-weight: 900;
	font-size: 25px;
	margin: 0 0 10px;
}

.premiumprice span {
	color: #757580;
	font-weight: 700;
}

.request {
	padding: 20px 30px;
	border-radius: 5px;
	background: #c7c7d9;
	display: flex;
	align-items: center;
	margin: 0 0 40px;
	justify-content: space-between;
}

.request span {
	display: block;
	font-weight: 900;
}

.balance_usd {
	color: var(--almostblack);
	font-size: 23px;
	margin: 0 0 5px;
}

.balance {
	color: var(--pureblack);
	opacity: 0.6;
	font-size: 15px;
}

.request .button {
	color: #c7c7d9;
	background: var(--almostblack);
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 700;
	border-radius: 15px;
}

.request .button:hover {
	opacity: 0.8;
}

.request .button:active {
	opacity: 0.4;
}

.phistory .title {
	color: #d3d3e5;
	font-size: 15px;
	font-weight: 700;
}

.pheadinfo {
	color: #57575e;
	font-weight: 900;
	font-size: 13px;
	margin: 30px 20px 10px;
	display: flex;
}

.single-payout {
	padding: 20px 20px;
	background: #212124;
	border-radius: 3px;
	margin: 0 0 4px;
	display: flex;
}

.single-payout:hover {
	background: #262629;
}

.single-payout:active {
	background: #2e2e32;
}

.single-payout .hdate {
	color: #757580;
}

.single-payout .hmethod {
	color: #8d8d99;
	font-weight: 700;
}

.single-payout .hamount {
	color: #d0d0d9;
	font-weight: 700;
}

.loadmorep {
	display: flex;
	align-items: center;
	justify-content: center;
}

.loadmorepayouts {
	padding: 13px 40px;
	margin: 30px 0;
}

.pdate,
.hdate {
	width: 235px;
}

.pmethod,
.hmethod {

}

.pamount,
.hamount {
	margin-left: auto;
}

.earnings {
	display: grid;
	grid-template-areas:
    "earnings request"
    "countries .";
	grid-template-columns: 1fr 165px;
	grid-gap: 40px 20px;
}

.earnings .request {
	display: block;
	grid-area: request;
	margin: 0 0 0;
	text-align: center;
	padding: 25px 24px 18px;
}

.earnings .request .balance {
	font-size: 14px;
	margin: 0 0 10px;
}

.earnings .request .button {
	font-size: 10px;
	padding: 9px 12px;
	margin: 3px 0 0;
}

.earningtab {
	grid-area: earnings;
	background: #212124;
	padding: 25px 40px;
	border-radius: 5px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: 900;
}

.earningtab .title {
	font-size: 14px;
	color: #6a6a73;
}

.earningtab .value {
	font-size: 22px;
	color: #d3d3e5;
	margin: 11px 0 13px;
	position: relative;
}

.earningtab .value svg {
	width: 10px;
	height: 6px;
	fill: var(--defred);
	transform: rotate(180deg);
	position: absolute;
	top: 50%;
	margin: -3px 0 0 -16px;
}

.earningtab .subtit {
	color: #6a6a73;
	font-size: 12px;
}

.earningtab .subtit.red {
	color: var(--defred);
}

.head-info .title {
	font-size: 14px;
	font-weight: 900;
	color: #d3d3e5;
}

.earningspage .selected,
.earningspage .selected1 {
	background: #2f2f33;
}

.bycountries {
	grid-area: countries;
	background: #212124;
	padding: 25px;
	border-radius: 5px;
}

.bycountries {

}

.tinfoco .head {
	color: #57575e;
	font-weight: 700;
	margin: 0 0 15px;
	display: flex;
}

.tinfoco .number {
	width: 35px;
}

.tinfoco .country {

}

.tinfoco .revenue {
	text-align: right;
	margin: 0 55px 0 auto;
}

.sincon {
	display: flex;
	padding: 11px 0;
}

.sincon .number {
	color: #757580;
}

.sincon .country {
	color: #d0d0d9;
}

.sincon .revenue,
.sincon .views {
	color: #8b8b99;
}

.settingspage {

}

.settingspage .request {
	background: var(--defred);
}

.settingspage .button.blbutonred {
	color: var(--defred);
	background: var(--almostblack);
	border-radius: 25px;
	font-size: 11px;
	font-weight: 600;
	padding: 7px 18px;
}

.settingspage .button.blbutonred:hover {
	background: #3a1b1d;
	opacity: 1;
}

.settingspage .button.blbutonred:active {
	background: #652f33;
	opacity: 1;
}

.rowuserinfo {
	display: flex;
	align-items: center;
	padding: 25px 0;
	border-bottom: 2px solid #1a1a1d;
}

.rowuserinfo.resetflex {
	display: block;
}

.rowuserinfo.resetborder {
	border-bottom: none;
}

.rowuserinfo .stit {
	color: #d3d3e5;
	font-size: 16px;
	margin: 0 0 15px;
	font-weight: 700;
}

.rowuserinfo .ctit {
	color: #6a6a73;
	font-weight: 700;
	font-size: 14px;
}

.rowuserinfo .button {
	margin-left: auto;
}

.upgradeto {
	align-items: flex-start;
}

.upgradeto .stit {
	color: var(--defred);
}

.upgradeto .ctit {
	line-height: 23px;
}

.upgradeto .left {
	width: 100%;
	max-width: 480px;
}

.upavatar {
	background: #1d1d21;
	padding: 20px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	width: max-content;
}

.upavatar .right {
	margin: 0 0 0 20px;
}

.upavatar .user_avatar {
	width: 90px;
	height: 90px;
	background: var(--darkavatar);
	margin: 0;
}

.upavatar .user_avatar svg {
	width: 30px;
	height: 34px;
}

.upavatar span {
	color: #757580;
	display: block;
	margin: 12px 0 0;
}

.chooseavatar, .chooseheadimg {
	position: relative;
}

.chooseavatar input[type=file], .chooseheadimg input[type=file] {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
	font-size: 0;
}

.upheadimgr {
	width: 300px;
	height: 90px;
	background: #29292e;
	border-radius: 5px;
	position: relative;
}

.upheadimgr svg {
	width: 42px;
	height: 28px;
	fill: #45454c;
}

.removeim {
	position: relative;
	width: 30px;
	height: 30px;
	border-radius: 3px;
	background: #2f2f33;
	display: inline-block;
	vertical-align: middle;
	margin: 0 0 0 5px;
}

.removeim:hover {
	background: #2c2c30;
}

.removeim:active {
	background: #3f3f43;
}

.removeim svg {
	fill: #9898a6;
	width: 12px;
	height: 16px;
}

.sociallinks .stit {
	margin: 0 0 40px;
}

.soclink {
	display: grid;
	align-items: center;
	grid-template-areas:
    ". text ."
    "icons input remove";
	grid-template-columns: 28px 300px auto;
	margin: 0 0 20px;
}

.soclink .iconfor {
	grid-area: icons;
}

.soclink input {
	border-radius: 5px;
	grid-area: input;
	color: #c7c7d9;
}

.soclink label {
	color: #8d8d99;
	margin: 0 0 7px;
	display: block;
	grid-area: text;
}

.soclink .resoclink {
	grid-area: remove;
	background: none;
}

.soclink .resoclink svg {
	fill: var(--defred);
}

.soclink .resoclink:hover {
	opacity: 0.8;
}

.soclink .resoclink:active {
	opacity: 0.4;
}

.sociallinks .website {
	width: 9px;
	height: 9px;
	fill: #525259;
}

.sociallinks .twitter {
	width: 13px;
	height: 10px;
	fill: #30a3ef;
}

footer {
	width: 100%;
	min-height: 150px;
	padding: 35px 0;
	background: var(--hdftbc) url("/assets/img/p_icon_shadow.png");
	background-repeat: no-repeat;
	background-size: contain;
}

footer .row {
	display: grid;
	grid-template-columns:500px repeat(3, 1fr) 300px;
}

.footermenu1 {
	font-family: 'Kalam', cursive;
	margin-left: 100px;
	font-size: 20px;
}

footer .title {
	font-size: 12px;
	color: #d3d3e5;
	text-transform: uppercase;
	font-weight: 700;
	margin: 0 0 30px;
}

footer li a {
	color: #8d8d99;
	padding: 7px 0;
	display: block;
}

footer .social {
	text-align: right;
}

footer .socialicon:active {

}

.socialicon {
	position: relative;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: #2f2f33;
	display: inline-block;
	margin: 0 0 0 5px;
}

.socialicon:hover {
	background: #36363b;
}

.socialicon:active {
	background: #3f3f43;
}

.socialicon svg {
	fill: #30a3ef;
	width: 18px;
	height: 14px;
}

.textpage {
	background: #16161a;
	padding: 25px 40px;
	max-width: 1024px;
	margin: 0 auto;
	color: #bcbccc;
}

.textpage h1, .textpage h2, .textpage h3 {
	color: #cacad9;
	font-size: 21px;
	font-weight: 900;
	margin: 0 0 15px;
}

.textpage h2 {
	font-size: 18px;
}

.textpage h2 {
	font-size: 16px;
}

.textpage p {
	line-height: 22px;
}

.textpage input::-webkit-input-placeholder {
	font-weight: 400;
}

.textpage input, .textpage textarea {
	border-radius: 4px;
}

.reportform {
	max-width: 500px;
}

.textpage label span {
	margin: 10px 0 5px;
	display: block;
}

.textpage button {
	margin: 10px 0 0;
}

.textpage ul {
	list-style: disc;
	margin: 15px 0 15px 15px;
}

.textpage ul li {
	margin: 5px 0 0;
	line-height: 22px;
}

.widgets {
	background: var(--hdftbc);
	padding: 26px 25px;
	min-height: 10px;
	z-index: 21;
	border-radius: 5px;
	position: fixed;
	margin: auto;
	top: 150px;
	left: 0;
	right: 0;
}

.widgets .close {
	cursor: pointer;
	width: 32px;
	height: 32px;
	background: #2f2f33;
	position: absolute;
	top: -16px;
	right: -16px;
	border-radius: 50%;
}

.widgets .close svg {
	fill: #8d8d99;
	width: 12px;
	height: 12px;
}

.widgets .close:hover {
	background: #38383d;
}

.widgets .close:hover svg {
	fill: #a4a4b2;
}

.widgets .close:active {
	opacity: 0.4;
}

.widgets .title {
	color: #bcbccc;
	font-size: 18px;
	text-align: center;
	font-weight: 700;
	margin: 0 0 15px;
}

.widgets.sing_up .title {
	margin: 0 0 25px;
}

.widgets .alerts {
	color: #f15664;
	margin: 0 0 10px;
	text-align: center;
	line-height: 22px;
}

.widgets input, .widgets select {
	margin: 0 0 8px;
	border-radius: 4px;
	padding: 13px 16px;
}

.widgets button {
	background: var(--defred);
	color: var(--pureblack);
	width: 100%;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 700;
	padding: 13px 15px;
}

.widgets button:hover {
	background: #bebecc;
}

.widgets button:active {
	background: #777780;
}

.widgets .forgot-pass {
	color: var(--defred);
	margin: 10px 0 0;
	text-align: center;
	display: block;
}

.widgets .forgot-pass:hover {
	color: #d95d68;
}

.widgets .forgot-pass:active {
	color: #994249;
}

.widgets .singup_form {
	display: grid;
	grid-template-columns: 270px 1fr;
}

.widgets .singup_form .second {
	margin: 0 0 0 35px;
	padding: 0 0 0 35px;
	border-left: 2px solid #232326;
	text-align: left;
}

.widgets .singup_form .second .title {
	text-align: left;
	font-size: 16px;
	line-height: 22px;
}

.widgets .features li {
	margin: 0 0 18px;
	color: #9898a6;
}

.widgets .singup_form .second svg {
	width: 19px;
	height: 19px;
	fill: var(--defred);
	margin: 0 6px -4px 0;
}

.login_in {
	width: 320px;
}

.sing_up {
	width: 575px;
}

.deletevideo {
	width: 360px;
	display: none;
}

.widgets.deletevideo .title {
	text-align: left;
	margin: 0 0 25px;
}

.widgets.deletevideo .alvid {
	color: #757580;
	line-height: 20px;
	font-size: 14px;
	font-weight: 700;
}

.widgets .actions {
	display: flex;
	align-items: center;
	place-content: flex-end;
	margin: 25px 0 0;
}

.widgets .cancel {
	color: #a4a4b2;
	font-weight: 700;
	margin: 0 10px 0 0;
	padding: 5px 10px;
}

.widgets .cancel:hover {
	opacity: 0.8;
}

.widgets .cancel:active {
	opacity: 0.4;
}

.widgets.changeavatar, .widgets.changeheadimg {
	width: 440px;
	display: none;
	padding: 0;
}

.widgets.changeavatar.active, .widgets.changeheadimg.active {
	display: block;
}

.widgets.changeavatar .title, .widgets.changeheadimg .title {
	padding: 22px;
	background: #212124;
	text-align: center;
	border-radius: 5px 5px 0 0;
}

.widgets.changeavatar input, .widgets.changeheadimg input {
	margin: 0 0 0 20px;
	padding: 14px 0;
}

.widgets.changeavatar .saveavatar, .widgets.changeheadimg .saveheader {
	position: absolute;
	right: 20px;
	bottom: 14px;
}

.widgets.changeheadimg .croppie-container .cr-boundary {
	width: 380px !important;
	height: 150px !important;
}

.widgets.uploadvideo {
	width: 860px;
	top: 115px;
}

.widgets.uploadvideo .title {
	text-align: left;
	border-bottom: 2px solid #202023;
	padding: 0 0 17px;
}

.video-detail-widget {
	display: grid;
	grid-template-columns: 510px 260px;
	grid-gap: 40px;
}

.widgets.uploadvideo .lineof {
	color: #bcbccc;
	margin: 23px 0 0;
}

.widgets.uploadvideo label {
	margin: 0 0 8px;
	display: block;
}

.widgets.uploadvideo span {
	color: #6a6a73;
}

.widgets.uploadvideo .halfsize {
	width: 280px;
}

.widgets.uploadvideo .subspan {
	color: #757580;
	font-size: 13px;
	margin: 8px 0;
	display: block;
}

.widgets.uploadvideo .hideit label {
	opacity: 0;
	cursor: default;
}

.widgets.uploadvideo .uprogress {
	width: 100%;
	height: 150px;
	background: #262629;
	border-radius: 2px;
	color: #757580;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.widgets.uploadvideo #progress {
	background: #343438;
	border-radius: 3px;
	height: 3px;
	width: 180px;
	margin: 10px 0 0;
}

.widgets.uploadvideo #progress span {
	display: block;
	background: var(--defred);
	width: 20%;
	height: 100%;
	border-radius: 2px;
}

.widgets.uploadvideo .filetitle {
	color: #a4a4b2;
	margin: 15px 0 12px;
	font-size: 14px;
	font-weight: 700;
	max-width: 100%;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.widgets.uploadvideo .filesize {
	color: #6a6a73;
	font-weight: 700;
}

.visibility .vichos {
	display: flex;
	justify-content: space-between;
}

.widgets.uploadvideo .visibility .choose {
	margin: 0;
}

.widgets.uploadvideo .visibility .twcs {
	display: flex;
	align-items: center;
	padding: 15px;
	background: #28282b;
	width: 242px;
	border-radius: 3px;
}

.widgets.uploadvideo .visibility label .twcs:before {
	content: '';
	height: 20px;
	width: 20px;
	border-radius: 50%;
	background: #28282b;
	border: 3px solid #3e3e44;
	margin: 0 12px 0 0;
}

.widgets.uploadvideo .twcs span {
	font-size: 14px;
	color: #b0b0bf;
	font-weight: 700;
}

.widgets.uploadvideo .twcs i {
	font-size: 13px;
	color: #81818c;
	font-style: normal;
	margin: 8px 0 0;
	display: block;
	font-weight: 400;
}

.widgets.uploadvideo .visibility input[type=radio]:checked + .twcs:before {
	border: 6px solid var(--almostblack);
	background: #bcbccc;
}

.widgets.uploadvideo .visibility input[type=radio]:checked + .twcs {
	background: #bcbccc;
}

.widgets.uploadvideo .visibility input[type=radio]:checked + .twcs span {
	color: var(--almostblack);
}

.widgets.uploadvideo .visibility input[type=radio]:checked + .twcs span i {
	color: #3b3b40;
}

.widgets .infopass {
	color: #9898a6;
	margin: 0 0 10px;
	line-height: 20px;
}


/* -- select box -- */
.select-box {
	position: relative;
	z-index: 2;
}

.widgets.uploadvideo {
	position: absolute;
	top: 65px;
}

.loader--transparent:before,
.loader--transparent:after {
	background: #16161A !important;
}

.loader--black:before,
.loader--black:after {
	background: var(--almostblack) !important;
}

.restOfForm {
	display: none !important;
}

@media only screen and (max-width: 1400px) {
	.wrap {
		padding: 0 15px;
	}

	.logo {
		margin: 0 35px 0 0;
	}

	.search {
		width: 235px;
	}

	.single-vid_image {
		width: 90px;
	}

	.single-vid_selectdel {
		width: 275px;
	}

	.single-vid_title {
		width: 170px;
	}

	.siminfo {
		padding: 0 5px;
	}

	footer .row {
		grid-template-columns:500px repeat(3, 1fr) 250px;
	}

	.footermenu1 {
		/*margin-left: 200px;*/
	}
}

@media only screen and (min-width: 1024px) and (max-width: 1200px) {
	.logo {
		margin: 0 25px 0 0;
	}

	.search {
		width: 205px;
	}

	.videos {
		grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
		grid-gap: 25px 15px;
	}

	.videopla {
		grid-template-columns: 1fr 225px;
	}

	.videopla .video-details {
		padding: 0 30px 0 0;
	}

	.videopla .player iframe {
		height: 420px;
	}

	.premium {
		margin: 30px auto;
	}

	.user_info {
		margin: -14px 15px 0;
	}

	.slick-next {
		right: 0 !important;
	}

	.single-vid_image {
		width: 90px;
	}

	.single-vid_selectdel {
		width: 250px;
	}

	.single-vid_image {
		width: 70px;
	}

	.single-vid_title {
		width: 150px;
	}

	.siminfo {
		min-width: 65px;
		padding: 0 5px;
	}

	.selectall {
		margin: 0 10px 0 0;
	}

	.autagsbs .tags {
		max-width: 490px;
	}


	footer .row {
		grid-template-columns:500px repeat(3, 1fr) 200px;
	}
}

@media only screen and (max-width: 1023px) {
	header .inner {

	}

	.mobmenu {
		display: inline-block;
		cursor: pointer;
		margin: 3px 20px 0 -15px;
		order: 1;
		padding: 14px 15px 13px;
	}

	.mobmenu span {
		width: 32px;
		height: 2px;
		background-color: #5a5a5a;
		margin: 5px 0;
		display: block;
	}

	.nav {
		position: absolute;
		display: none;
		width: 100%;
		background: var(--subnavbgc);
		top: 60px;
		left: 0;
		z-index: 10;
		text-align: center;
		line-height: normal;
	}

	.nav li {
		display: block;
	}

	.nav a {
		display: block;
		padding: 12px 0;
	}

	.nav .dropdown {
		margin: 0 -11px 1px 3px;
	}

	.nav .submenu {
		position: relative;
		margin: 0;
		padding: 0;
	}

	.logo {
		order: 2;
	}

	.search {
		order: 3;
	}

	.unavdiv {
		position: absolute;
		right: 0;
	}

	.container {
		padding: 30px 0;
	}

	.profile-header {
		margin: 0 0 30px;
	}

	.videopla {
		grid-template-columns: 1fr 185px;
	}

	.videopla .player iframe {
		height: 340px;
	}

	.videopla .video-details h1 {
		font-size: 18px;
		margin: 0 0 15px;
	}

	.videos-results {
		display: block;

	}

	.videos-results.vsidb {
		margin: 0 -15px;
	}

	.showmu {
		padding: 12px 10px;
		color: #8d8d99;
		background: #1a1a1c;
		border-radius: 3px;
		cursor: pointer;
		display: block;
		font-weight: 700;
		margin: 0 0 15px;
		text-align: center;
	}

	.showmu.active {
		background: #222223;
	}

	.sidebar {
		display: none;
		margin: 0px 0 20px 0;
		text-align: center;
	}

	.content {
		margin: 0;
	}

	.head-info.m60 {
		margin: 0 0 30px;
	}

	.vsidb.v1 .content, .vsidb .content {
		padding: 20px 15px;
	}

	.sidebar .sidebar_menu .my_subscriptions:after {
		margin: 20px auto;
	}

	.sidebar .tags {
		justify-content: center;
	}

	.my_videos-row {
		grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
		grid-gap: 25px 15px;
		display: grid;
	}

	.single-vid .customcheckbox {
		padding: 9px 9px;
		margin: 0 0;
		display: block;
		bottom: 12px;
		left: auto;
		top: auto;
		right: 0;
	}

	.single-vid .customcheckbox span:before {
		opacity: 1;
	}

	.single-vid {
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
	}

	.single-vid_image {
		width: 100%;
	}

	.single-vid_title {
		margin: 15px 0 10px;
		width: 100%;
	}

	.single-vid_views {
		margin: 0;
	}

	.my_videos-head .single-vid_views,
	.my_videos-head .single-vid_ratio,
	.my_videos-head .single-vid_comments,
	.my_videos-head .single-vid_revenue,
	.my_videos-head .single-vid_date,
	.my_videos-head .single-vid_visibility {
		display: none;
	}

	.single-vid_views:before {
		content: 'Views:';
		opacity: 0.7;
	}

	.single-vid_ratio:before {
		content: 'Like Ratio:';
		opacity: 0.7;
	}

	.single-vid_comments:before {
		content: 'Comments:';
		opacity: 0.7;
	}

	.single-vid_revenue:before {
		content: 'Revenue:';
		opacity: 0.7;
	}

	.single-vid_date:before {
		content: 'Upload Date:';
		opacity: 0.7;
	}

	.single-vid_visibility:before {
		content: 'Visibility:';
		opacity: 0.7;
	}

	.siminfo {
		padding: 5px 5px 5px 0;
		text-align: left;
	}

	.single-vid_visibility svg {
		margin: 0 0 -2px 5px;
	}

	.actbutton {
		opacity: 1;
		position: relative;
		margin: 15px 0 0 20px;
	}

	.user_info {
		margin: -14px 10px 0;
		flex-direction: column;
	}

	.user_info .left {
		justify-content: center;
	}

	.user_info .right {
		align-self: center;
		margin: 15px 0 0 0;
	}

	.autagsbs .tags {
		max-width: 390px;
	}


	footer .row {
		grid-template-columns:400px repeat(3, 1fr) 100px;
	}

	.widgets {
		top: 60px;
	}

	.widgets.uploadvideo {
		width: 80%;
		top: 30px;
	}

	.video-detail-widget {
		display: block;
	}

	.visibility .vichos {
		justify-content: start;
	}

	.widgets.uploadvideo .visibility .choose {
		margin: 0 10px 0 0;
	}

	.widgets.uploadvideo .right {
	}
}

@media only screen and (max-width: 850px) {
	.row.top-channels {
		grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
	}

	.single-channel {
		flex-direction: column;
		text-align: center;
		padding: 20px 10px;
	}

	.single-channel .user_avatar {
		margin: 0 0 15px;
	}

	.videopla {
		display: block;
	}

	.videopla .player {
		margin: 0 0 10px;
	}

	.videopla .video-details {
		padding: 0;
	}

	.videopla .player iframe {
		height: 380px;
	}

	.sidebar_rvideos {
		margin: 30px 0 0;
	}

	.videopla .videos.related {
		display: grid;
		grid-gap: 25px 15px;
	}

	.videopla .videos.related .s-video {
		margin: 0;
	}

	.loadmorevideos {
		max-width: 200px;
		margin: 30px auto 0;
	}

	.textpage {
		padding: 25px 25px;
		margin: 0 -15px;
	}

	.autagsbs .tags {
		max-width: 500px;
	}

	footer .row {
		grid-template-columns: repeat(2, 50%);
		grid-gap: 20px 0;
		text-align: center;
		grid-template-areas:
        "fmenu1 fsocial"
        "fmenu3 fmenu4";
	}

	.website-info {
		margin-right: 0 !important;
	}

	.footermenu1 {
		margin-left: 20px;
		margin-right: 20px;
	}

	footer .title {
		margin: 0 0 10px;
	}

	footer li a {
		padding: 10px 0;
		display: inline-block;
	}

	.footerlogo {
		grid-area: flogo;
		align-self: center;
	}

	.footermenu1 {
		grid-area: fmenu1;
	}

	.footermenu2 {
		grid-area: fmenu2;
	}

	.footermenu3 {
		grid-area: fmenu3;
	}

	.footermenu4 {
		grid-area: fmenu4;
	}

	footer .social {
		grid-area: fsocial;
		text-align: center;
	}
}

@media only screen and (max-width: 767px) {
	header {
		line-height: normal;
		height: auto;
	}

	header .inner {
		display: block;
		padding: 0;
	}

	.mobmenu {
		margin-top: 0;
		position: absolute;
	}

	.msearch {
		width: 32px;
		height: 32px;
		position: absolute;
		display: block;
		background: #292929;
		border-radius: 4px;
		top: 12px;
		right: 15px;
	}

	.msearch svg {
		fill: #81818c;
		width: 16px;
		height: 16px;
	}

	.logo {
		max-width: 120px;
		margin: 0 auto;
		text-align: center;
		display: block;
		padding: 18px 0 15px;
	}

	.nav {
		top: 60px;
	}

	.search {
		display: none;
		position: absolute;
		z-index: 2;
		width: auto;
		left: 0;
		right: 0;
		margin: 5px 15px;
	}

	.upgrade {
		margin: 0 15px 0 0;
	}

	.unavdiv {
		top: 0;
		right: 0;
		margin: 0;
		text-align: center;
		position: relative;
	}

	.unav a {
		display: block;
		padding: 20px 13px;
	}

	.submenu {
		margin-top: 17px;
	}

	.unav-logged .notifications {
		margin: 0 0 0 5px;
	}

	.notification-box {
		top: 115px;
		margin: 0 10px;
	}

	.premiumover {
		padding: 25px 0;
	}

	.premiumover h2 {
		font-size: 16px;
		line-height: 22px;
	}

	.buy-premium p {
		font-size: 14px;
	}

	.paginator {
		margin: 45px 0;
	}

	.autagsbs .tags {
		max-width: 400px;
	}

	.widgets.uploadvideo {
		width: 100%;
	}

	.widgets.uploadvideo .close {
		top: 12px;
		right: 12px;
	}
}

@media only screen and (max-width: 640px) {
	.get-premium {
		place-content: center;
		flex-direction: column;
		font-size: 12px;
		padding: 8px 15px 8px 15px;
		text-align: center;
	}

	.get-premium a {
		margin: 5px 0 0 0;
	}

	.sort {
		margin: 0 -4px;
	}

	.sort span {
		padding: 3px 4px;
		font-size: 14px;
	}

	.sort span::after {
		left: 4px;
	}

	.sort-videos span {
		margin: 0 10px 0 0;
	}

	.premiumpage .row {
		grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
	}

	.single-feature {
		margin: 0 0px 40px 0;
		padding: 0 20px;
	}

	.single-feature .title {
		margin: 15px 0 10px;
	}

	.paginator a.prev, .paginator a.next {
		display: none;
	}

	.paginator a {
		width: 42px;
		height: 42px;
		line-height: 42px;
		margin: 0 5px 0 0;
	}

	.head-info {
		flex-direction: column;
		place-items: flex-start;
	}

	.head-info.top-channels h1 {
		font-size: 18px;
		margin: 0 0 20px;
	}

	.head-info .right {
		margin: 20px 0 0;
	}

	.head-info .sort {
		margin-bottom: 20px;
	}

	.videos-results.vsidb .head-info {
		flex-direction: row;
		place-items: center;
		justify-content: space-between;
	}

	.videos-results.vsidb .head-info .right {
		margin: 0;
	}

	.videopla .player iframe {
		height: 320px;
	}

	.videopla .video-details h1 {
		font-size: 15px;
		line-height: 24px;
	}

	.videopla .autagsbs {
		flex-direction: column;
	}

	.videopla .autagsbs .right {
		margin: 15px 0 0;
	}

	.videopla .autagsbs .right.viewsnlikes {
		display: flex;
		justify-content: space-between;
	}

	.videopla .autagsbs.daygotags {
		margin: 0 0 10px;
	}

	.videopla .autagsbs.daygotags .left {
		display: block;
	}

	.videopla .autagsbs.daygotags .left .dayago {
		margin: 0 0 8px;
		display: block;
	}

	.videopla .autagsbs.daygotags .left .dayago:before {
		content: 'Added:'
	}

	.videopla .autagsbs.daygotags .left .dayago:after {
		display: none;
	}

	.videopla .autagsbs .nviews:after {
		display: none;
	}

	.vsidb .content h1 {
		font-size: 17px;
	}

	.earnings {
		display: grid;
		grid-template-areas:
            "request"
            "earnings"
            "countries";
		grid-template-columns: 1fr;
		grid-gap: 40px 20px;
	}

	.earnings .request {
		display: flex;
		text-align: left;
		padding: 20px 30px;
	}

	.earnings .request .button {
		font-size: 12px;
		margin: 0;
	}

	.earnings .request .balance {
		margin: 0 0 6px;
	}

	.earnings .request .balance_usd {
		margin: 0;
	}

	.videos-results.vsidb.earningspage .head-info {
		display: flex;
		place-items: center;
		flex-direction: row;
		justify-content: space-between;
	}

	.videos-results.vsidb.earningspage .head-info .right {
		margin: 0;
	}

	.earningtab {
		padding: 25px 20px;
	}

	.bycountries {
		padding: 20px;
	}

	.upheadimgr {
		width: 250px;
		height: 75px;
	}

	.upgradeto .left {
		max-width: 310px;
	}

	.sing_up {
		width: 320px;
	}

	.widgets .singup_form {
		grid-template-columns:1fr;
	}

	.widgets.sing_up .first {
	}

	.widgets .singup_form .second .title {
		font-size: 14px;
		margin: 0 0 15px;
	}

	.widgets .singup_form .second {
		margin: 15px 0 0 0;
		padding: 0;
		border-left: none;
		text-align: left;
	}

	.button.editvpx, .aftersocials {
		display: none;
	}

	.user_info {
		margin: -14px 0 0;
	}

	.u_info {
		margin: 0;
		background: #0d0d0f;
		padding: 10px 10px 0 10px;
		border-radius: 5px;
	}

	.user_info .user_avatar {
		width: 90px;
		height: 90px;
	}

	.user_info .user_avatar svg.default-avatar {
		width: 32px;
		height: 34px;
	}

	.emptytillmb {
		display: block;
		margin: 10px 0 0;
	}

	.vviews:after {
		display: none;
	}

	.autagsbs .tags {
		max-width: 100%;
	}

	footer .row {
		grid-template-columns: repeat(1, 100%);
		grid-gap: 20px 0;
		text-align: center;
		grid-template-areas:
        "fmenu1"
		"fsocial"
        "fmenu3"
		"fmenu4";
	}
}

@media only screen and (max-width: 600px) {
	.notification-box {
		left: 0;
		right: 0;
		width: auto;
	}

	.single_not {
		grid-template-columns: auto 1fr 70px;
		padding: 10px 10px 12px 16px;
	}

	.single_not .user_avatar {
		width: 40px;
		height: 40px;
		margin: 0 10px 0 3px;
	}

	.single_not.nonseen .user_avatar:before {
		top: 8px;
	}

	.single_not .not_tit {
		max-width: 270px;
	}

	.single_not .not_image {
		align-self: center;
	}

	.pdate, .hdate {
		width: 170px;
	}

	.visibility .vichos {
		flex-direction: column;
	}

	.widgets.uploadvideo .visibility .choose {
		margin: 0 0 10px;
	}

	.widgets.changeavatar,
	.widgets.changeheadimg {
		width: 380px;
	}

	.croppie-container .cr-boundary {
		width: 300px !important;
		height: 158px !important;
	}

	.cr-slider {
		width: 150px !important;
	}

	.widgets.changeheadimg .croppie-container .cr-boundary {
		width: 320px !important;
		height: 125px !important;
	}
}

@media only screen and (max-width: 480px) {
	.not_header .title:after {
		display: none;
	}

	.not_header .manage_subs {
		display: block;
		margin: 7px 0 0 0;
	}

	.not_header .manage_subs a {
	}

	.not_header .mark_read {
		float: none;
		display: block;
		position: absolute;
		right: 30px;
		top: 10px;
		padding: 10px 0;
	}

	.single_not {
		grid-template-columns: auto 1fr;
	}

	.single_not .not_image img {
		display: none;
	}

	.single_not .not_text {
		margin: 4px 0 0 0;
		display: block;
	}

	.single_not .not_tit {
		max-width: 250px;
	}

	.socialicon {
		vertical-align: middle;
	}

	.aftersocials {
		display: none;
	}

	.videopla .player iframe {
		height: 220px;
	}

	.single-comment {
		grid-template-areas:
            "avatar comment"
            "addcom addcom";
	}

	.videopla .autagsbs .subscribers {
		display: none;
	}

	.videopla .autagsbs .button.subscribe {
		margin: 0 0 0 15px;
	}

	.upload-head {
		right: 5px;
		top: 5px;
	}

	.vperpagepagi {
		flex-direction: column;
	}

	.vperpagepagi .sort-videos {
		margin: 0 0 15px;
	}

	.myv_paginator {
		margin: 0;
	}

	.videos-results.vsidb .head-info {
		flex-direction: column;
		place-items: flex-start;
	}

	.videos-results.vsidb .head-info .right {
		margin: 20px 0 0;
	}

	.request {
		flex-direction: column;
		text-align: center;
	}

	.balance {
		margin: 0 0 10px;
	}

	.pheadinfo {
		margin: 30px 15px 10px;
	}

	.single-payout {
		padding: 20px 15px;
	}

	.pdate, .hdate {
		width: 125px;
	}

	.rowuserinfo {
		padding: 15px 0;
		flex-direction: column;
		align-items: flex-start;
	}

	.rowuserinfo .button {
		margin: 10px 0 0 0;
	}

	.rowuserinfo .button.chooseavatar {
		margin: 0;
	}

	.channelheaderimg .upavatar {
		flex-direction: column;
	}

	.channelheaderimg .upavatar .right {
		margin: 0;
		text-align: center;
	}

	.soclink {
		grid-template-columns: 28px 280px auto;
	}

	.earnings .request {
		text-align: center;
	}

	.earnings .request .balance_usd {
		margin: 0 0 10px 0;
	}

	.earningtab {
		padding: 20px 15px;
	}

	.earningtab .title {
		font-size: 13px;
	}

	.earningtab .value {
		font-size: 17px;
	}

	.uploadfiles .box {
		padding: 20px;
	}

	.uploadfiles .ubci {
		width: 140px;
		height: 140px;
	}

	.uploadfiles .ubci svg {
		width: 43px;
		height: 45px;
	}

	.uploadfiles .dragdrop {
		font-size: 14px;
	}

	.widgets.uploadvideo .halfsize {
		width: auto;
	}

	.widgets.changeavatar, .widgets.changeheadimg {
		width: 320px;
	}

	.croppie-container .cr-boundary {
		width: 280px !important;
		height: 148px !important;
	}

	.cr-slider {
		width: 100px !important;
	}

	.widgets.changeheadimg .croppie-container .cr-boundary {
		width: 280px !important;
		height: 110px !important;
	}
}

@media only screen and (max-width: 380px) {
	.single_not .not_tit {
		max-width: 170px;
	}

	.single-feature {
		margin: 0 0px 25px 0;
		padding: 0;
	}

	.comments .user_avatar {
		width: 35px;
		height: 35px;
	}

	.single-comment.replycom {
		margin-left: 45px;
	}

	.comments .user_avatar svg {
		width: 12px;
		height: 14px;
	}

	.pmethod, .hmethod {
		display: none;
	}

	.soclink {
		grid-template-columns: 28px 220px auto;
	}

	footer .row {
		grid-gap: 20px 0;
	}

	.widgets .close {
		top: 5px;
		right: 5px;
	}

	.user_info .user_avatar {
		display: none;
	}
}

@-webkit-keyframes load2 {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes load2 {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.website-info {
	color: var(--defred);
	margin-right: 50px;
	display: block;
	text-align: justify;
}