* {margin: unset; padding: unset; font-size: unset; line-height: unset; font-weight: unset; background: unset; color: unset; outline: unset; box-shadow: unset; text-align: unset; border: unset; box-sizing: border-box;}#MyAccount {
	padding: 79px 22px;
}

#MyAccount h2 {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 20px;
}

#MyAccount h3 {
	font-size: 16px;
	margin-bottom: 20px;
}

#MyAccount .TabContent {
	overflow: hidden;
	height: 0;
	position: relative;
}

#MyAccount .TabContent .In {
	padding: 14.5px 35px;
}

#MyAccount .TabContent::after {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	content: '';
	background-color: var(--separator-color);
}

#MyAccount [data-tab="open"]+.TabContent {
	height: auto;
}

#MyAccount .Tab {
	padding: 10px 4px;
	display: flex;
	align-items: center;
	cursor: pointer;
}

#MyAccount .Tab .Icon {
	flex: 0 0 30px;
	display: flex;
	justify-content: center;
	align-items: center;
}

#MyAccount .Tab .Icon svg {
	height: 20px;
	width: auto;
}

#MyAccount .Tab .Label {
	flex: 1;
}

#MyAccount [data-tab="open"] .Opener svg {
	transform: rotate(90deg);
}

#MyAccount .NoVideos {
	text-align: center;
	font-size: 13px;
}

#MyAccount .NoVideos div:first-of-type {
	margin-bottom: 20px;
}

#MyAccount .NoVideos div:nth-of-type(2) {
	margin-bottom: 20px;
}

#MyAccount .InvoicesItem {
	display: flex;
	margin-bottom: 12px;
	justify-content: space-between;
}

#MyAccount .InvoicesItem a:first-of-type {
	font-size: 13px;
}

#MyAccount .InvoicesItem a:last-of-type {
	font-weight: 500;
	font-size: 11px;
}

#MyAccount .SubscriptionOptions .Note {
	font-size: 11px;
	padding-top: 15px;
}

#MyAccount .SubscriptionsPrice+.SubscriptionsPrice {
	margin-top: 18px;
}

#MyAccount .SubscriptionsPrice {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	align-items: center;
	font-size: 13px;
	text-align: right;
}

#MyAccount .SubscriptionsPrice .SmallButton {
	font-weight: normal;
}

#MyAccount .CancelBlock {
	padding-top: 25px;
	text-align: right;
}

#MyAccount .CancelSubscriptionButton {
	font-size: 12px;
}

#MyAccount form {
	margin-bottom: 50px;
}

#MyAccountSubscriptionDialog .ButtonsBox {
	display: flex;
	justify-content: center;
	gap: 25px;
	align-items: center;
	margin-top: 50px;
}

#MyAccountSubscriptionDialog .SmallButton {
	font-weight: bold;
}

#MyAccountSubscriptionDialog .ConfirmCancelSubscriptionButton {
	font-size: 12px;
}

#MyAccountTabs {
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

.TermsText {
	margin-top: 30px;
}

.TermsText a {
	text-decoration: underline;
}

.SubscriptionOptions h2 {
	padding-top: 45px;
}

.SubscriptionOptions h3 {
	padding-top: 35px;
}

.UserConfirmInfo {
	line-height: 120%;
	padding-top: 50px;
}

.UserConfirmInfo .Bigger {
	font-size: 20px;
	margin-bottom: 10px;
}

.UserDataChange .Note {
	font-size: 13px;
	padding-top: 15px;
	padding-bottom: 15px;
}

.EarningCodeTierOption {
	padding: 25px 5px;
}

.EarningCodeTierOption+.EarningCodeTierOption {
	border-top: 1px solid var(--accent-color);
}

#PaymentNeedAttentionBlock {
	max-width: 600px;
	margin: 60px auto 60px auto;
}

#PaymentNeedAttentionBlock h2 {
	font-size: 24px;
	display: flex;
	gap: 30px;
	align-items: flex-end;
}

#PaymentNeedAttentionBlock p {
	margin-bottom: 30px;
	font-size: 16px;
}

#PaymentNeedAttentionBlock svg {
	width: 40px;
	height: auto;
}

#PaymentNeedAttentionBlock path {
	fill: var(--accent-color);
}

#PaymentNeedAttentionBlock .Button {
	font-weight: bold;
}

.RecommendationCodeBox {
	margin: 30px auto;
	text-align: center;
}

.RecommendationCodeBox p {
	font-size: 16px;
}

.RecommendationCodeBox .RecommendationCode {
	font-weight: bold;
	font-size: 20px;
	line-height: 150%;
}

@media (width >=1024px) {
	#MyAccount .SubscriptionOptions h3 {
		font-size: 22px;
	}

	.SubscriptionsPrice div {
		font-size: 16px;
	}
}:root {
	--main-color: white;
	--accent-color: black;
	--label-text-color: white;
	--green: #76dd78;

	--font-color: var(--accent-color);
	--bg-color: var(--main-color);

	--separator-color: #282828;

	/*New Colors and Gradients*/
	--gradient: linear-gradient(to top right, #FBDA61, #FF5ACD);
	--pink: #FF5ACD;
}

@media (prefers-color-scheme: dark) {
	:root {
		--accent-color: white;
		--main-color: black;
		--separator-color: #CCCCCC;
	}

	header .Logo svg {}
}

html,
body {
	scroll-behavior: smooth;
}

body {
	background: var(--bg-color);
}

main {
	min-height: calc(100svh - 102px);
}

body,
body a,
body input,
body select,
body textarea,
body button {
	font-family: PP;
	color: var(--font-color);
}

body p,
body li {
	font-weight: 200;
	font-size: 14px;
	line-height: 130%;
}

a {
	text-decoration: none;
}

.Button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 25px;
	background-color: var(--pink);
	color: var(--accent-color);
	height: 40px;
	border-radius: 999999px;
	border: 1px solid var(--accent-color);
	width: 100%;
	text-align: center;
	font-size: 16px;
	font-weight: 200;
}

.SmallButton {
	background-color: var(--pink);
	color: var(--main-color);
	height: 28px;
	border-radius: 999999px;
	border: 1px solid var(--accent-color);
	padding: 0 12px;
	text-align: center;
	font-size: 14px;
	font-weight: 200;
	display: inline-flex;
	justify-content: center;
	align-items: center;
}

.Minibutton {
	color: var(--accent-color);
	height: 25px;
	border-radius: 999999px;
	border: 1px solid var(--accent-color);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	font-weight: 200;
	padding: 0 10px;
	cursor: pointer;
}

.Logo svg {
	margin-left: 10px;
}

footer {
	margin: auto;
	width: 90%;
	padding: 0 15px 15px 15px;
	text-align: center;
	font-weight: 200;
	font-size: 11px;
}

header {
	position: absolute;
	left: 0;
	top: 12px;
	right: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 2;
}

header .Logo svg {
	height: 25px;
	width: auto;
}

header .UserOpener,
header .MenuOpener {
	padding: 17px;
}

.LogoC {
	fill: url(#LogoCGradient);
}

#Menu {
	position: fixed;
	right: 12px;
	top: 12px;
	transform: translateX(120%) translateY(-120%);
	width: 243px;
	background-color: var(--bg-color);
	border-radius: 10px;
	padding: 34px 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 23px;
}

#Menu a {
	display: block;
	width: 100%;
	font-size: 24px;
	color: var(--font-color);
}

#UserOverview,
#Menu {
	--bg-color: #ECECEC;
	--font-color: #282828;
}

@media (prefers-color-scheme: dark) {

	#UserOverview,
	#Menu {
		--bg-color: #282828;
		--font-color: #ECECEC;
	}
}

#UserOverview {
	position: fixed;
	width: 90%;
	max-width: 300px;
	left: 5%;
	top: 40px;
	transform: translateX(-120%) translateY(-120%);
	background-color: var(--bg-color);
	border-radius: 10px;
	padding: 49px 12px 21px 12px;
}

#UserOverview nav {
	margin: 0 12px 57px 12px;
}

#UserOverview nav a {
	display: flex;
	align-items: center;
}

#UserOverview nav a+a {
	margin-top: 10px;
}

#UserOverview nav .Icon {
	flex: 0 0 28px;
	text-align: center;
	display: flex;
	justify-content: center;
}

#UserOverview nav .Icon svg {
	width: auto;
	height: 16px;
}

#UserOverview .UserName {
	padding-left: 45px;
	padding-bottom: 45px;
	font-size: 18px;
}

#UserOverview .LogoutBox {
	text-align: right;
}

#UserOverview .LogoutBox button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

#UserOverview .LogoutBox .Icon {
	display: flex;
}

#UserOverview .LogoutBox svg {
	height: auto;
	width: 20px;
}

[data-menu="opened"] #Menu {
	transform: translate(0);
}

@media (max-width: 1024px) {
	[data-menu="opened"] #Menu {z-index: 2;}
	[data-menu="user"] #UserOverview {z-index: 2;}
	:is([data-menu="opened"], [data-menu="user"]) header {z-index: 3; pointer-events: none;}
	:is([data-menu="opened"], [data-menu="user"]) header .Logo {opacity: 0; pointer-events: none;}
	:is([data-menu="opened"], [data-menu="user"]) :is(.MenuOpener, .UserOpener) {pointer-events: auto;}
}

[data-menu="user"] #UserOverview {
	transform: translate(0);
}

.ColorIcon [fill] {
	fill: var(--accent-color);
}

.ColorIcon [stroke] {
	stroke: var(--accent-color);
}

.ColorIcon [stroke]:not([fill]) {
	fill: transparent;
}

.MainHeading {
	text-align: center;
	margin-bottom: 40px;
	font-weight: 500;
	font-size: 32px;
}

.Socials {
	display: flex;
	gap: 15px;
	align-items: center;
	justify-content: center;
}

footer .LinkSign {
	padding-top: 10px;
}

footer .LinkSign a {
	display: inline-flex;
	align-items: center;
	gap: 15px;
}

footer .Socials {
	margin-bottom: 5px;
	padding-bottom: 15px;
	border-bottom: 1px solid var(--separator-color);
}

@media (width >=1024px) {

	body p,
	body li {
		font-size: 22px;
	}

	.Button {
		font-weight: normal;
	}

	header .Logo svg {
		height: 40px;
	}

	.UserOpener svg,
	.MenuOpener svg {
		width: auto;
		height: 25px;
	}

	footer {
		font-size: 14px;
	}
}#CartPage {
	max-width: 1200px;
	padding-left: 20px;
	padding-right: 20px;
	margin-left: auto;
	margin-right: auto;
}

#CartPage,
.EmptyCartPage {
	padding-top: 100px;
	padding-bottom: 100px;
}

#CartPage h1,
.EmptyCartPage h1 {
	text-align: center;
	font-size: 30px;
	font-weight: bold;
	margin-bottom: 40px;
}

#CartItemsList {}

.CartItem {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	border-bottom: 1px solid var(--brown);
}

.CartItem>* {
	padding: 10px;
}

.CartItem .ProductImage {
	width: 200px;
}

.CartItem .ProductImage img {
	width: 100%;
}

.CartItem .ProductImage .VideosItem img {width: 100%; object-fit: cover; object-position: center; height: 100%;}

.CartItem .ProductName {
	font-size: 22px;
	flex: 0 0 45%;
}

.CartItem .ProductPrice {
	font-size: 18px;
	flex: 0 0 10%;
	text-align: right;
}

.CartVoucherNote {
	padding-top: 20px;
	font-size: 14px;
}

.CartItem .Delete {
	background-color: transparent;
	border: none;
	cursor: pointer;
}

.CartItem .Delete svg {
	width: 20px;
	height: auto;
}

.CartItem .Delete rect {
	fill: var(--accent-color);
}

.EmptyCartPage {
	text-align: center;
}

#CartPage .ProductPrices {
	padding: 30px 10px 100px 10px;
	text-align: right;
	font-size: 20px;
}

#MiniCart [data-empty] {
	display: flex;
	gap: 15px;
	align-items: center;
}

#MiniCart svg {
	width: 30px;
	height: auto;
}

#MiniCart .No {
	font-size: 20px;
	font-weight: bold;
}

#OrderForm {
	max-width: 700px;
	padding: 0 15px;
	margin-left: auto;
	margin-right: auto;
}

#CartPage .InFormHeading {
	margin-bottom: 20px;
	padding-top: 20px;
	font-weight: 500;
	font-size: 16px;
}

#CartPage .FormItem:has(input[name*="street_no"]) {
	flex: 0 0 120px;
}

#CartPage .FormItem:has(input[name*="zip"]) {
	flex: 0 0 120px;
}

#CartPage form h2 {
	font-weight: bold;
	font-size: 26px;
}

#CartPage form input {
	font-weight: 500;
}

#CartPage .ConfirmBtnBox {
	padding-top: 50px;
}

#CartPage .ConfirmButton {
	font-size: 25px;
	border-width: 2px;
	padding: 15px 35px;
	cursor: pointer;
}

.PreparingOnlinePaymentText {
	padding: 20px;
	font-weight: 500;
	font-size: 20px;
}

#AddVoucherForm {
	max-width: 500px;
}

#AddVoucherForm h3 {
	flex: 0 0 100%;
}

#AddVoucherForm .InputsLine {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

@media (min-width: 800px) {
	#PayShipLists {
		display: flex;
		justify-content: space-between;
		gap: 20px;
	}
}.VouchersList {display: flex; gap: 40px; overflow: auto; margin: 0 40px; scroll-snap-type: x mandatory; padding: 0 0 10px 0;}
.VouchersList .Image {margin-bottom: 5px;}
.VouchersList .Image img {width: 100%;}
.VouchersList h3 {font-weight: bold; font-size: 16px; margin-bottom: 10px;}
.VouchersList .VoucherPrice {font-weight: 300; font-size: 18px; text-align: right;}
.VouchersList .ButtonBox {padding-top: 10px;}

.VouchersForSaleItem {flex: 1; min-width: 200px; max-width: min(400px, 70%); scroll-snap-align: start;}

@media (min-width: 800px) {
	.VouchersList {--columns: 2;}
}

@media (min-width: 1024px) {
	.VouchersList h3 {font-size: 23px; margin-bottom: 20px;}
}@font-face {
	font-family: PP;
	src: url("/Preview/Projects/MyHairCloud/Design/Fonts/PPTelegraf-Regular.ttf") format("truetype");
}
@font-face {
	font-family: PP;
	src: url("/Preview/Projects/MyHairCloud/Design/Fonts/PPTelegraf-Ultralight.ttf") format("truetype");
	font-weight: 200;
}
@font-face {
	font-family: PP;
	src: url("/Preview/Projects/MyHairCloud/Design/Fonts/PPTelegraf-Semibold.ttf") format("truetype");
	font-weight: 500;
}.FormItem {
    width: 100%;
}

.FormItem+.FormItem {
    margin-top: 13px;
}

input:is([type="text"], [type="password"], [type="email"], [type="tel"]),
select {
    height: 40px;
    border-radius: 99999px;
    border: 1px solid var(--accent-color);
    padding: 0 22px;
    font-size: 16px;
    font-weight: 200;
    width: 100%;
}

.LogInForms {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    gap: 78px;
    justify-content: center;
    padding: 30px 50px;
}

.LogInForms .Logo {
    text-align: center;
}

.AppendToLogin,
.AppendToReg,
.AppendToPwd {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.LogInForms form,
.AppendToLogin,
.AppendToPwd,
.AppendToReg {
    display: none;
}

.LogInForms[data-form="login"] .LoginForm {
    display: block;
}

.LogInForms[data-form="login"] .AppendToLogin {
    display: block;
}

.LogInForms[data-form="pwd"] .PwdForm {
    display: block;
}

.LogInForms[data-form="pwd"] .AppendToPwd {
    display: block;
}

.LogInForms[data-form="reg"] .RegForm {
    display: block;
}

.LogInForms[data-form="reg"] .AppendToReg {
    display: block;
}:root {
	--window-height: 100svh;
	--nav-text-color: #282828;
}

@media (prefers-color-scheme: dark) {
	:root {
		--nav-text-color: #AAAAAA;
	}
}

#HPMain {
	height: 100svh;
	overflow: auto;
	scroll-snap-type: y mandatory;
	scroll-behavior: smooth;
}

.Screen {
	height: 100svh;
	display: flex;
	flex-direction: column;
	position: relative;
	scroll-snap-align: start;
}

.Screen .TopPart {
	flex: 0 0 68%;
	position: relative;
	overflow: hidden;
}

.Screen .BottomPart {
	flex: 0 0 32%;
	position: relative;
	overflow: hidden;
}

.Screen .BottomPart[data-image-type] {
	background: no-repeat center center;
	background-size: cover;
}

.Screen .VideoPart video {
	object-fit: cover;
	object-position: center center;
	width: 100%;
	height: 100%;
}

.Screen h2 {
	text-align: center;
	margin-bottom: 35px;
	font-size: 24px;
	font-weight: 500;
	padding-top: 69px;
}

#HPMain [data-image-type="bg"] {
	opacity: 0.5;
}

#HPScreen1 header .Logo svg {
	height: 40px;
	animation: hplogorotate 2s infinite;
}

@keyframes hplogorotate {
	0% {
		transform: rotate(0);
	}

	90% {
		transform: rotate(360deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

#HPScreen1 h1 {
	font-size: 78px;
	line-height: 85px;
	padding-top: 25px;
}

#HPScreen1 h1 svg {
	width: auto;
	max-height: 250px;
}

/*Position relative*/
#HPScreen1 .Text {
	padding-top: 15%;
	padding-right: 15px;
	padding-left: 22%;
	position: relative;
}

#HPScreen1 .Text .Image {
	position: absolute;
	left: -5px;
	width: 30%;
	height: 110%;
	background: no-repeat right center;
	background-size: cover;
	opacity: 0.7;
}


/*Position relative, z-index*/
#HPScreen1 .Text h1,
#HPScreen1 .Text p {
	position: relative;
	z-index: 2;
}

#HPScreen1 nav {
	display: flex;
	justify-content: center;
	gap: 25px;
	position: absolute;
	bottom: 67px;
	left: 0;
	right: 0;
}

#HPScreen1 nav a {
	font-size: 15px;
	text-decoration: none;
	color: var(--nav-text-color);
}

#HPScreen1 nav a:hover {
	color: var(--accent-color);
}

#HPScreen2 .BottomPart {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	flex: 1;
}

#HPScreen2 .TopPart {
	flex-basis: 40%;
}

#HPScreen2 .Text {
	text-align: center;
	width: 100%;
}

#HPScreen2 .Text p + p {
	margin-top: 15px;
}

#HPScreen3 .PriceItem {
	display: flex;
	flex-wrap: wrap;
	padding: 0 15px;
	max-width: 390px;
	margin: auto;
}

#HPScreen3 .PriceItem + .PriceItem {
	margin-top: 30px;
}

#HPScreen3 .Name {
	flex: 1;
	font-weight: normal;
	font-size: 16px;
}

#HPScreen3 .Price {
	font-weight: 500;
	font-size: 18px;
}

#HPScreen3 .Price div {
	font-weight: normal;
	font-size: 14px;
}

#HPScreen3 p {
	flex: 0 0 100%;
	padding-top: 5px;
}

#HPScreen3 .TopPart {
	display: flex;
	flex-direction: column;
}

#HPScreen3 .Pricelist {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 40px;
}

#HPScreen3 .Pricelist .Button {
	max-width: 250px;
}

#HPScreen4 .BottomPart {
	background: no-repeat center center;
	background-size: cover;
	display: flex;
	flex-direction: column;
}

#HPScreen4 .BottomPart .Socials {
	flex: 1;
}


#HPScreen5 .TopPart {
	display: flex;
	flex-direction: column;
}

#HPScreen5 .ContactsList {
	margin: auto;
	max-width: 216px;
	flex: 1;
	display: flex;
	align-items: center;
}

#HPScreen5 .ContactsList a {
	display: flex;
	align-items: center;
}

#HPScreen5 .ContactsList a + a {
	margin-top: 30px;
}

#HPScreen5 .ContactsList .Icon {
	flex: 0 0 35px;
}

#HPScreen5 .ContactsList svg {
	width: 80%;
	height: auto;
}

#HPScreen5 .ContactsList [fill] {
	fill: var(--accent-color);
}

#HPScreen5 .ContactsList [stroke] {
	stroke: var(--accent-color);
}

#LoggedViewInstead {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 20px;
}

#HPTopVideos {
	margin-bottom: 30px;
}

.HostsScreen {display: flex; flex-direction: column; justify-content: center; height: 100%; width: 100%;}
.HostsPresentation {display: flex; flex-wrap: wrap; gap: 25px; justify-content: center; align-items: center; align-content: center; width: 100%; max-width: 100%; text-align: center; font-size: 18px; margin-left: auto; margin-right: auto; max-width: 1600px;}
.HostsPresentation .Host {flex: 0 0 150px;}
.HostsPresentation .Image {width: 125px; height: 125px; margin-bottom: 15px; margin-left: auto; margin-right: auto; border-radius: 9999999px; overflow: hidden;}
.HostsPresentation img {width: 100%; height: 100%; object-position: center; object-fit: cover;}

@media (max-width: 1220px) {
	.HostsPresentation .Host {flex-basis: 125px;}
	.HostsPresentation .Image {width: 100px; height: 100px;}
	.Screen .HostsScreen h2 {padding-top: 40px;}
}

@media (max-width: 1024px) {
	.HostsPresentation {display: grid; grid-template-rows: max-content max-content; grid-auto-flow: column; overflow: auto; padding-left: 15px; padding-right: 15px; padding-bottom: 15px; max-width: 100%; justify-content: left;}
	.HostsScreen h2 {}

	#HPScreen4 .TopPart {
		flex-basis: 80%;
	}

	#HPScreen4 .BottomPart {
		flex-basis: 20%;
	}

	#HPScreen3 .TopPart {flex: 0 0 100%;}
	#HPScreen3 .BottomPart {display: none;}
}

@media (min-width: 1024px) {
	.Screen {
		flex-direction: row;
	}

	.Screen h2 {
		font-size: 32px;
		padding-top: 109px;
	}

	#HPScreen1 h1 {
		font-size: 120px;
		line-height: normal;
	}

	#HPScreen1 nav a {
		font-size: 22px;
		font-weight: normal;
	}

	#HPScreen3 .Name {
		font-size: 22px;
	}

	#HPScreen3 p {
		padding-top: 15px;
		font-size: 16px;
	}

	#HPScreen5 .ContactsList {
		font-size: 22px;
		max-width: 500px;
		white-space: nowrap;
	}

	#HPScreen5 .ContactsList .Icon {
		flex-basis: 60px;
	}

	#HPScreen5 .ContactsList .Icon svg {
		height: auto;
		width: 40px;
	}

	#HPScreen3 .PriceItem {
		max-width: 600px;
	}

	#LoggedViewInstead {
		align-items: center;
	}

	#LoggedViewInstead .Button {
		width: auto;
	}

	#HPTopVideos {
		width: 100%;
	}
}* {
	transition-duration: 300ms;
}

/*Color changed on hover*/
.Button:hover {
	background-image: var(--gradient);
	color: var(--accent-color);
}

.Dialog {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.3);
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px 10px;
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
}

.DialogContent {
	max-width: 500px;
	background-color: var(--bg-color);
	border-radius: 10px;
	padding: 20px;
}

.DialogContent h2 {
	font-size: 25px;
	margin-bottom: 20px;
}

.DialogContent p {
	margin-bottom: 15px;
}

.DialogContent .SmallerText {
	font-size: 13px;
	display: block;
	padding-top: 10px;
	line-height: normal;
}

.DialogContent strong {
	font-weight: bold;
}

[data-loading="1"] {
	position: relative;
	pointer-events: none;
}

[data-loading="1"]::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(255, 255, 255, 0.75);
}

[data-loading="1"]::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border: 5px solid var(--accent-color);
	border-top: 5px solid var(--main-color);
	border-radius: 50%;
	width: 20px;
	height: 20px;
	animation: ButtonLoading 2s linear infinite;
}

@keyframes ButtonLoading {
	0% {
		transform: translate(-50%, -50%) rotate(0deg);
	}

	100% {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}.PackSubscribePromo {text-align: center; font-size: 20px; padding: 25px 0 80px 0; line-height: 160%;}
.PackSubscribePromo strong {font-weight: bold;}
.PackSubscribePromo strike {display: inline-block; padding: 10px 20px; font-size: 18px;}

.PackSubscribePromo .MoreInfo {font-size: 15px;}
.PackSubscribePromo a {text-decoration: underline; font-weight: 500;}.PacksToSale {width: 100%; padding: 80px 0;}
.PacksToSale h2 {text-align: center;}

.PackVideos {display: flex; overflow: auto; padding: 10px; gap: 15px;}
.PackVideos img {height: 250px; width: auto;}
.PackVideos .VideoName {font-weight: 500; margin-top: 5px;}

.PacksToSale .PurchaseBox {text-align: center;}
.PacksToSale .PurchaseBox > div {margin: auto; display: flex; justify-content: center; align-items: center; gap: 25px; flex-wrap: wrap;}
.PacksToSale .PurchaseBox .Button {width: auto;}
.PacksToSale .PurchaseBox em {display: block; margin-top: 25px;}

.PacksToSale h2 {font-size: 35px;}
.PacksToSale .Price {font-size: 18px;}
.PacksToSale strong {font-weight: bold;}:root {
	--gradient: linear-gradient(to top right, #FBDA61, #FF5ACD);
	--pink: #FF5ACD;
}

#VideosTopCarousel {
	overflow: auto;
	overflow-y: hidden;
	height: calc(var(--window-height) * 0.5);
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	display: flex;
}

#VideosTopCarousel a {
	display: block;
	height: 100%;
	position: relative;
	scroll-snap-align: start;
	flex: 0 0 50%;
}

#VideosTopCarousel img {
	object-position: center;
	object-fit: cover;
	width: 100%;
	height: 100%;
}

#VideosTopCarousel .Data {
	position: absolute;
	bottom: 21px;
	left: 21px;
	right: 53px;
	padding: 5px;
	border-radius: 6px;
	background: rgba(0, 0, 0, 0.2);
}

#VideosTopCarousel .Data br {
	display: none;
}

#VideosTopCarousel .Name {
	font-size: 32px;
	color: var(--label-text-color);
}

#VideosTopCarousel .Text {
	font-size: 16px;
	font-weight: 200;
	color: var(--label-text-color);
}

.ContentSelectionPage {
	padding: 23px 20px;
}

.ContentSelectionPage .ContentCategories {
	margin-bottom: 12px;
}

.ContentCategories {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}

.ContentCategories a {
	padding: 0 6px;
	display: inline-flex;
	align-items: center;
	height: 24px;
	border: 1px solid #767676;
	color: #767676;
	font-size: 13px;
	border-radius: 3px;
}

.VideosCategoryItem {
	margin-bottom: 40px;
}

.VideosCategoryItem h2 {
	font-size: 22px;
	margin-bottom: 15px;
	text-transform: uppercase;
}

#VideoDetail {
	--data-high: 0px;
	--data-from-bottom: 40px;
}

#VideoDetail {
	height: calc(var(--window-height) - env(safe-area-inset-bottom));
	overflow: hidden;
	width: 100%;
	position: relative;
	transition: none !important;
}

#VideoDetail video {
	object-fit: cover;
	object-position: center;
	width: 100%;
	height: 100%;
	transition: none !important;
}

#VideoDetail .Data {
	position: fixed;
	bottom: var(--data-from-bottom);
	right: 25px;
	left: 25px;
	z-index: 10;
	padding: 12px 22px;
	border-radius: 10px;
}

#VideoDetail .Data .Text {
	opacity: 0.7;
}

#VideoDetail .Data .Text h1 {
	font-size: 20px;
}

#VideoDetail .Data .Text p {
	font-size: 15px;
	font-weight: 200;
	line-height: 18px;
}

#VideoDetail :is(.Data, .Tag, .Favorite) {
	background: rgba(255, 255, 255, 0.3);
}

@media (prefers-color-scheme: dark) {
	#VideoDetail :is(.Data, .Tag, .Favorite) {
		background: rgba(0, 0, 0, 0.3);
	}
}

#VideoDetail .Data :is(.Tag, .Favorite) {
	position: absolute;
	bottom: calc(100% + 40px);
	width: 42px;
	height: 42px;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

#VideoDetail .Data svg {
	width: auto;
	height: 20px;
}

/*#VideoDetail .Data svg path {fill: white; fill-opacity: 1;}*/
#VideoDetail .Data .Tag {
	right: 0;
}

#VideoDetail .Data .Favorite {
	right: 56px;
}

#VideoDetail .Data .Favorite.Active {
	background-color: #FF5050;
}

#VideoDetail .Data .Tag.Active {
	background-color: #97E518;
}

#VideoDetail .HeadsheetsDownloads {
	position: relative;
	z-index: 2;
	margin-top: 5px;
	margin-bottom: 20px;
	display: flex;
	justify-content: left;
	gap: 15px;
}

#VideoDetail .HeadsheetsDownloads button {
	display: inline-flex;
	gap: 6px;
	align-items: center;
}

#VideoDetail .HeadsheetsDownloads span {
	display: flex;
}

#VideoDetail #Muted {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	padding: 20px;
	border-radius: 12px;
	background-color: rgba(255, 255, 255, 0.9);
	box-shadow: 0 0 10px black;
}

@media (prefers-color-scheme: dark) {
	#VideoDetail #Muted {
		background: rgba(0, 0, 0, 0.9);
	}
}

#VideoDetail #Muted svg {
	height: auto;
	width: 80px;
}

#VideoDetail #Muted.Moved {
	left: 90%;
	top: 70%;
	padding: 5px;
}

#VideoDetail #Muted.Moved svg {
	width: 40px;
}

#VideoDetail.HideInfo .Data {
	transform: translateY(calc(var(--data-high) + var(--data-from-bottom)));
}

.VideosList {
	display: flex;
	gap: 10px;
	max-width: 100%;
	overflow: auto;
}

.VideosList .VideosItem {
	flex: 0 0 93px;
	height: 150px;
	position: relative;
	overflow: hidden;
	width: 100%;
}

.VideosList .VideosItem span {
	display: block;
	margin-top: -30px;
	padding: 5px;
	background-color: rgba(0, 0, 0, 0.3);
	font-weight: 500;
	position: relative;
	color: var(--label-text-color);
}

.VideosList .VideosItem .TopInfo {position: absolute; left: 0; top: 0; width: 100%; padding: 6px; font-weight: bold; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;}

.VideosList .VideosItem .PremiumInfo {display: flex; padding: 2px 5px; background: #ffffff33; max-width: max-content; margin-bottom: 3px; border-radius: 6px;}

.VideosList .VideosItem .Lock {display: flex; padding: 2px 5px; background: #ffffff33; max-width: max-content; margin-bottom: 3px; border-radius: 6px;}

.VideosList .VideosItem .Lock svg {width: 15px; height: auto;}

.VideosList .VideosItem .Lock path {fill: var(--pink);}

.VideosList {
	display: flex;
	gap: 10px;
	max-width: 100%;
	overflow: auto;
}

.VideosList .VideosItem {
	flex: 0 0 93px;
	height: 150px;
	position: relative;
	overflow: hidden;
	width: 100%;
	position: relative;
}

.VideosItemContainer {
	position: relative;
	width: 100%;
	height: 100%;
}

.VideosItemContainer > img, .VideosItemContainer > picture img {object-fit: cover; object-position: center; width: 100%; height: 100%;}

.VideosItemContainer .VideoHost {display: flex; gap: 5px; align-items: center; padding: 0 5px 5px 0;}
.VideosItemContainer .HostImage {width: 30px; height: 30px; border-radius: 100%; overflow: hidden;}
.VideosItemContainer .HostImage img {width: 100%; height: 100%; object-fit: cover; object-position: center;}

#VideoDetail .VideoHost {display: flex; gap: 5px; align-items: center; padding: 10px 0;}
#VideoDetail .HostImage {width: 35px; height: 35px; border-radius: 100%; overflow: hidden;}
#VideoDetail .HostImage img {width: 100%; height: 100%; object-fit: cover; object-position: center;}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--gradient);
	mix-blend-mode: screen;
	z-index: 1;
}

.VideosItem span {
	display: block;
	margin-top: -30px;
	padding: 5px;
	background-color: rgba(0, 0, 0, 0.3);
	font-weight: 500;
	position: relative;
	color: var(--label-text-color);
	z-index: 2;
}

.ChangeQualityButtons,
.ChangeQualityButtons button {
	font-size: 12px;
}

.ChangeQualityButtons button {
	border-radius: 99999px;
	border: 1px solid var(--accent-color);
	padding: 2px 6px;
	cursor: pointer;
}

.ChangeQualityButtons button[data-selected="1"] {
	background: var(--pink);
	color: var(--main-color);
}

.Recommendations,
.UpgradeTier,
#PasswordChangeConfirmation {
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.8);
	justify-content: center;
	align-items: center;
	z-index: 1;
	padding: 15px;
	display: none;
	backdrop-filter: blur(10px);
	--webkig-backdrop-filter: blur(10px);
}

@media (prefers-color-scheme: dark) {

	.Recommendations,
	.UpgradeTier,
	#PasswordChangeConfirmation {
		background: rgba(0, 0, 0, 0.8);
	}
}

.DisplayedRecommendations .Recommendations,
.DisplayedUpgradeTier .UpgradeTier {
	display: flex;
}

.Recommendations h2 {
	margin-bottom: 35px;
	font-size: 28px;
}

.Recommendations .RecomVideo {
	display: flex;
	gap: 20px;
	text-align: left;
}

.Recommendations .RecomVideo + .RecomVideo {
	margin-top: 25px;
}

.Recommendations .RecomVideo .Image {
	width: 60px;
}

.Recommendations .RecomVideo .Image img {
	width: 100%;
}

.Recommendations .RecomVideo .Name {
	font-size: 18px;
}

.Recommendations .RecomVideo br {
	display: none;
}

.Recommendations .RecomVideo .Desc {
	margin-bottom: 10px;
}

#PasswordChangeConfirmation {
	display: flex;
}

#PasswordChangeConfirmation .PasswordConfirmationContent {
	background: var(--bg-color);
	padding: 20px;
	border-radius: 20px;
	text-align: center;
}

#PasswordChangeConfirmation h2 {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 20px;
}

#PasswordChangeConfirmation p {
	margin-bottom: 20px;
}

.UpgradeTierContent h2 {
	font-weight: bold;
	font-size: 20px;
	margin-bottom: 25px;
}

body:has(.DisplayedRecommendations) header {
	z-index: 12;
}

body:has(#VideoDetail) header {
	top: 40px;
}

body:has(.DisplayedRecommendations) :is(#Menu, #UserOverview) {
	z-index: 11;
}

.VideosItem .WatchVideoBtnLink {text-decoration: underline;}

.VideosList .VideosItem .VideoDescriptionInfo {position: absolute; background: rgba(0, 0, 0, 0.3); left: 0; bottom: 0; right: 0; height: var(--name-height, auto); transition-property: height, background; transition-duration: 150ms;}
.VideosList .VideosItem .VideoDescriptionInfo span {position: static; background: none; margin-top: 0; padding: 10px 5px 7px 5px;}
.VideosList .VideosItem .VideoDescriptionInfo .Text {height: 0; overflow: hidden; padding: 0 5px;}

.VideosItem {outline: none !important;   -webkit-tap-highlight-color: transparent !important;}

.VideosItem:is(.DescriptionShows, .InfoHeightSet:hover) .VideoDescriptionInfo {height: 75%; background: rgba(0,0,0,0.8);}
.VideosItem:is(.DescriptionShows, .InfoHeightSet:hover) .VideoDescriptionInfo .Text {height: auto;}

.VideosItem .CloseDescriptionBtn {display: block; padding: 10px 0;}
.VideosItem:not(.Touched) .CloseDescriptionBtn {display: none;}

.VideosItem .VideoDescriptionInfo .Text * {font-size: 16px;}

@media (max-width: 1024px) {
	.VideosCategoryItem {overflow: hidden;}
	.VideosCategoryItem h2 {text-align: center;}
	.VideosCategoryItem .VideosList {flex-wrap: wrap; justify-content: center;}
	.VideosList .VideosItem {height: 300px; flex-basis: 180px;}

	.MaxHeightShowMoreBtn {text-align: center; padding: 15px 15px 12px 15px; margin-bottom: 50px; font-weight: bold; display: flex; margin-left: auto; margin-right: auto; font-size: 20px; border-radius: 100px; background: var(--pink);}
}

@media (max-width: 560px) {
	.VideosCategoryItem .VideosList {display: grid; grid-template-columns: 1fr 1fr;}
}

@media (width >= 1024px) {
	#VideosTopCarousel {
		height: 75svh;
		display: flex;
	}

	#VideosTopCarousel > a {
		flex: 0 0 calc(100% / 3);
	}

	#VideoDetail {
		text-align: center;
	}

	#VideoDetail video {
		object-fit: contain;
		width: auto;
	}

	#VideoDetail .Data .Favorite {
		right: auto;
		left: 56px;
	}

	#VideoDetFail .Data .Tag {
		right: auto;
		left: 0;
	}

	#VideoDetail .Data {
		padding-left: 15px;
		padding-right: 15px;
		display: inline-block;
		right: auto;
		text-align: left;
	}

	#VideoDetail #Muted.Moved {
		left: 25px;
		top: 50%;
		padding: 5px;
		transform: none;
	}

	#VideoDetail #Muted.Moved svg {
		width: 40px;
	}

	#VideoDetail h1 {
		font-size: 32px;
	}

	#VideoDetail .Data .Text p {
		font-size: 22px;
		line-height: normal;
		font-weight: normal;
	}

	.VideosList {
		width: 100%;
	}

	.VideosList .VideosItem {
		height: 300px;
		flex-basis: 203px;
	}

	.VideosList .VideosItem span {
		margin-top: -30px;
	}

	#VideosTopCarousel .Data {
		padding: 15px;
	}
}#MyAccount {
	padding: 79px 22px;
}

#MyAccount h2 {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 20px;
}

#MyAccount h3 {
	font-size: 16px;
	margin-bottom: 20px;
}

#MyAccount .TabContent {
	overflow: hidden;
	height: 0;
	position: relative;
}

#MyAccount .TabContent .In {
	padding: 14.5px 35px;
}

#MyAccount .TabContent::after {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	content: '';
	background-color: var(--separator-color);
}

#MyAccount [data-tab="open"]+.TabContent {
	height: auto;
}

#MyAccount .Tab {
	padding: 10px 4px;
	display: flex;
	align-items: center;
	cursor: pointer;
}

#MyAccount .Tab .Icon {
	flex: 0 0 30px;
	display: flex;
	justify-content: center;
	align-items: center;
}

#MyAccount .Tab .Icon svg {
	height: 20px;
	width: auto;
}

#MyAccount .Tab .Label {
	flex: 1;
}

#MyAccount [data-tab="open"] .Opener svg {
	transform: rotate(90deg);
}

#MyAccount .NoVideos {
	text-align: center;
	font-size: 13px;
}

#MyAccount .NoVideos div:first-of-type {
	margin-bottom: 20px;
}

#MyAccount .NoVideos div:nth-of-type(2) {
	margin-bottom: 20px;
}

#MyAccount .InvoicesItem {
	display: flex;
	margin-bottom: 12px;
	justify-content: space-between;
}

#MyAccount .InvoicesItem a:first-of-type {
	font-size: 13px;
}

#MyAccount .InvoicesItem a:last-of-type {
	font-weight: 500;
	font-size: 11px;
}

#MyAccount .SubscriptionOptions .Note {
	font-size: 11px;
	padding-top: 15px;
}

#MyAccount .SubscriptionsPrice+.SubscriptionsPrice {
	margin-top: 18px;
}

#MyAccount .SubscriptionsPrice {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	align-items: center;
	font-size: 13px;
	text-align: right;
}

#MyAccount .SubscriptionsPrice .SmallButton {
	font-weight: normal;
}

#MyAccount .CancelBlock {
	padding-top: 25px;
	text-align: right;
}

#MyAccount .CancelSubscriptionButton {
	font-size: 12px;
}

#MyAccount form {
	margin-bottom: 50px;
}

#MyAccountSubscriptionDialog .ButtonsBox {
	display: flex;
	justify-content: center;
	gap: 25px;
	align-items: center;
	margin-top: 50px;
}

#MyAccountSubscriptionDialog .SmallButton {
	font-weight: bold;
}

#MyAccountSubscriptionDialog .ConfirmCancelSubscriptionButton {
	font-size: 12px;
}

#MyAccountTabs {
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

.TermsText {
	margin-top: 30px;
}

.TermsText a {
	text-decoration: underline;
}

.SubscriptionOptions h2 {
	padding-top: 45px;
}

.SubscriptionOptions h3 {
	padding-top: 35px;
}

.UserConfirmInfo {
	line-height: 120%;
	padding-top: 50px;
}

.UserConfirmInfo .Bigger {
	font-size: 20px;
	margin-bottom: 10px;
}

.UserDataChange .Note {
	font-size: 13px;
	padding-top: 15px;
	padding-bottom: 15px;
}

.EarningCodeTierOption {
	padding: 25px 5px;
}

.EarningCodeTierOption+.EarningCodeTierOption {
	border-top: 1px solid var(--accent-color);
}

#PaymentNeedAttentionBlock {
	max-width: 600px;
	margin: 60px auto 60px auto;
}

#PaymentNeedAttentionBlock h2 {
	font-size: 24px;
	display: flex;
	gap: 30px;
	align-items: flex-end;
}

#PaymentNeedAttentionBlock p {
	margin-bottom: 30px;
	font-size: 16px;
}

#PaymentNeedAttentionBlock svg {
	width: 40px;
	height: auto;
}

#PaymentNeedAttentionBlock path {
	fill: var(--accent-color);
}

#PaymentNeedAttentionBlock .Button {
	font-weight: bold;
}

.RecommendationCodeBox {
	margin: 30px auto;
	text-align: center;
}

.RecommendationCodeBox p {
	font-size: 16px;
}

.RecommendationCodeBox .RecommendationCode {
	font-weight: bold;
	font-size: 20px;
	line-height: 150%;
}

@media (width >=1024px) {
	#MyAccount .SubscriptionOptions h3 {
		font-size: 22px;
	}

	.SubscriptionsPrice div {
		font-size: 16px;
	}
}:root {
	--main-color: white;
	--accent-color: black;
	--label-text-color: white;
	--green: #76dd78;

	--font-color: var(--accent-color);
	--bg-color: var(--main-color);

	--separator-color: #282828;

	/*New Colors and Gradients*/
	--gradient: linear-gradient(to top right, #FBDA61, #FF5ACD);
	--pink: #FF5ACD;
}

@media (prefers-color-scheme: dark) {
	:root {
		--accent-color: white;
		--main-color: black;
		--separator-color: #CCCCCC;
	}

	header .Logo svg {}
}

html,
body {
	scroll-behavior: smooth;
}

body {
	background: var(--bg-color);
}

main {
	min-height: calc(100svh - 102px);
}

body,
body a,
body input,
body select,
body textarea,
body button {
	font-family: PP;
	color: var(--font-color);
}

body p,
body li {
	font-weight: 200;
	font-size: 14px;
	line-height: 130%;
}

a {
	text-decoration: none;
}

.Button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 25px;
	background-color: var(--pink);
	color: var(--accent-color);
	height: 40px;
	border-radius: 999999px;
	border: 1px solid var(--accent-color);
	width: 100%;
	text-align: center;
	font-size: 16px;
	font-weight: 200;
}

.SmallButton {
	background-color: var(--pink);
	color: var(--main-color);
	height: 28px;
	border-radius: 999999px;
	border: 1px solid var(--accent-color);
	padding: 0 12px;
	text-align: center;
	font-size: 14px;
	font-weight: 200;
	display: inline-flex;
	justify-content: center;
	align-items: center;
}

.Minibutton {
	color: var(--accent-color);
	height: 25px;
	border-radius: 999999px;
	border: 1px solid var(--accent-color);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	font-weight: 200;
	padding: 0 10px;
	cursor: pointer;
}

.Logo svg {
	margin-left: 10px;
}

footer {
	margin: auto;
	width: 90%;
	padding: 0 15px 15px 15px;
	text-align: center;
	font-weight: 200;
	font-size: 11px;
}

header {
	position: absolute;
	left: 0;
	top: 12px;
	right: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 2;
}

header .Logo svg {
	height: 25px;
	width: auto;
}

header .UserOpener,
header .MenuOpener {
	padding: 17px;
}

.LogoC {
	fill: url(#LogoCGradient);
}

#Menu {
	position: fixed;
	right: 12px;
	top: 12px;
	transform: translateX(120%) translateY(-120%);
	width: 243px;
	background-color: var(--bg-color);
	border-radius: 10px;
	padding: 34px 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 23px;
}

#Menu a {
	display: block;
	width: 100%;
	font-size: 24px;
	color: var(--font-color);
}

#UserOverview,
#Menu {
	--bg-color: #ECECEC;
	--font-color: #282828;
}

@media (prefers-color-scheme: dark) {

	#UserOverview,
	#Menu {
		--bg-color: #282828;
		--font-color: #ECECEC;
	}
}

#UserOverview {
	position: fixed;
	width: 90%;
	max-width: 300px;
	left: 5%;
	top: 40px;
	transform: translateX(-120%) translateY(-120%);
	background-color: var(--bg-color);
	border-radius: 10px;
	padding: 49px 12px 21px 12px;
}

#UserOverview nav {
	margin: 0 12px 57px 12px;
}

#UserOverview nav a {
	display: flex;
	align-items: center;
}

#UserOverview nav a+a {
	margin-top: 10px;
}

#UserOverview nav .Icon {
	flex: 0 0 28px;
	text-align: center;
	display: flex;
	justify-content: center;
}

#UserOverview nav .Icon svg {
	width: auto;
	height: 16px;
}

#UserOverview .UserName {
	padding-left: 45px;
	padding-bottom: 45px;
	font-size: 18px;
}

#UserOverview .LogoutBox {
	text-align: right;
}

#UserOverview .LogoutBox button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

#UserOverview .LogoutBox .Icon {
	display: flex;
}

#UserOverview .LogoutBox svg {
	height: auto;
	width: 20px;
}

[data-menu="opened"] #Menu {
	transform: translate(0);
}

@media (max-width: 1024px) {
	[data-menu="opened"] #Menu {z-index: 2;}
	[data-menu="user"] #UserOverview {z-index: 2;}
	:is([data-menu="opened"], [data-menu="user"]) header {z-index: 3; pointer-events: none;}
	:is([data-menu="opened"], [data-menu="user"]) header .Logo {opacity: 0; pointer-events: none;}
	:is([data-menu="opened"], [data-menu="user"]) :is(.MenuOpener, .UserOpener) {pointer-events: auto;}
}

[data-menu="user"] #UserOverview {
	transform: translate(0);
}

.ColorIcon [fill] {
	fill: var(--accent-color);
}

.ColorIcon [stroke] {
	stroke: var(--accent-color);
}

.ColorIcon [stroke]:not([fill]) {
	fill: transparent;
}

.MainHeading {
	text-align: center;
	margin-bottom: 40px;
	font-weight: 500;
	font-size: 32px;
}

.Socials {
	display: flex;
	gap: 15px;
	align-items: center;
	justify-content: center;
}

footer .LinkSign {
	padding-top: 10px;
}

footer .LinkSign a {
	display: inline-flex;
	align-items: center;
	gap: 15px;
}

footer .Socials {
	margin-bottom: 5px;
	padding-bottom: 15px;
	border-bottom: 1px solid var(--separator-color);
}

@media (width >=1024px) {

	body p,
	body li {
		font-size: 22px;
	}

	.Button {
		font-weight: normal;
	}

	header .Logo svg {
		height: 40px;
	}

	.UserOpener svg,
	.MenuOpener svg {
		width: auto;
		height: 25px;
	}

	footer {
		font-size: 14px;
	}
}@font-face {
	font-family: PP;
	src: url("/Preview/Projects/MyHairCloud/Design/Fonts/PPTelegraf-Regular.ttf") format("truetype");
}
@font-face {
	font-family: PP;
	src: url("/Preview/Projects/MyHairCloud/Design/Fonts/PPTelegraf-Ultralight.ttf") format("truetype");
	font-weight: 200;
}
@font-face {
	font-family: PP;
	src: url("/Preview/Projects/MyHairCloud/Design/Fonts/PPTelegraf-Semibold.ttf") format("truetype");
	font-weight: 500;
}.FormItem {
    width: 100%;
}

.FormItem+.FormItem {
    margin-top: 13px;
}

input:is([type="text"], [type="password"], [type="email"], [type="tel"]),
select {
    height: 40px;
    border-radius: 99999px;
    border: 1px solid var(--accent-color);
    padding: 0 22px;
    font-size: 16px;
    font-weight: 200;
    width: 100%;
}

.LogInForms {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    gap: 78px;
    justify-content: center;
    padding: 30px 50px;
}

.LogInForms .Logo {
    text-align: center;
}

.AppendToLogin,
.AppendToReg,
.AppendToPwd {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.LogInForms form,
.AppendToLogin,
.AppendToPwd,
.AppendToReg {
    display: none;
}

.LogInForms[data-form="login"] .LoginForm {
    display: block;
}

.LogInForms[data-form="login"] .AppendToLogin {
    display: block;
}

.LogInForms[data-form="pwd"] .PwdForm {
    display: block;
}

.LogInForms[data-form="pwd"] .AppendToPwd {
    display: block;
}

.LogInForms[data-form="reg"] .RegForm {
    display: block;
}

.LogInForms[data-form="reg"] .AppendToReg {
    display: block;
}:root {
	--window-height: 100svh;
	--nav-text-color: #282828;
}

@media (prefers-color-scheme: dark) {
	:root {
		--nav-text-color: #AAAAAA;
	}
}

#HPMain {
	height: 100svh;
	overflow: auto;
	scroll-snap-type: y mandatory;
	scroll-behavior: smooth;
}

.Screen {
	height: 100svh;
	display: flex;
	flex-direction: column;
	position: relative;
	scroll-snap-align: start;
}

.Screen .TopPart {
	flex: 0 0 68%;
	position: relative;
	overflow: hidden;
}

.Screen .BottomPart {
	flex: 0 0 32%;
	position: relative;
	overflow: hidden;
}

.Screen .BottomPart[data-image-type] {
	background: no-repeat center center;
	background-size: cover;
}

.Screen .VideoPart video {
	object-fit: cover;
	object-position: center center;
	width: 100%;
	height: 100%;
}

.Screen h2 {
	text-align: center;
	margin-bottom: 35px;
	font-size: 24px;
	font-weight: 500;
	padding-top: 69px;
}

#HPMain [data-image-type="bg"] {
	opacity: 0.5;
}

#HPScreen1 header .Logo svg {
	height: 40px;
	animation: hplogorotate 2s infinite;
}

@keyframes hplogorotate {
	0% {
		transform: rotate(0);
	}

	90% {
		transform: rotate(360deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

#HPScreen1 h1 {
	font-size: 78px;
	line-height: 85px;
	padding-top: 25px;
}

#HPScreen1 h1 svg {
	width: auto;
	max-height: 250px;
}

/*Position relative*/
#HPScreen1 .Text {
	padding-top: 15%;
	padding-right: 15px;
	padding-left: 22%;
	position: relative;
}

#HPScreen1 .Text .Image {
	position: absolute;
	left: -5px;
	width: 30%;
	height: 110%;
	background: no-repeat right center;
	background-size: cover;
	opacity: 0.7;
}


/*Position relative, z-index*/
#HPScreen1 .Text h1,
#HPScreen1 .Text p {
	position: relative;
	z-index: 2;
}

#HPScreen1 nav {
	display: flex;
	justify-content: center;
	gap: 25px;
	position: absolute;
	bottom: 67px;
	left: 0;
	right: 0;
}

#HPScreen1 nav a {
	font-size: 15px;
	text-decoration: none;
	color: var(--nav-text-color);
}

#HPScreen1 nav a:hover {
	color: var(--accent-color);
}

#HPScreen2 .BottomPart {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	flex: 1;
}

#HPScreen2 .TopPart {
	flex-basis: 40%;
}

#HPScreen2 .Text {
	text-align: center;
	width: 100%;
}

#HPScreen2 .Text p + p {
	margin-top: 15px;
}

#HPScreen3 .PriceItem {
	display: flex;
	flex-wrap: wrap;
	padding: 0 15px;
	max-width: 390px;
	margin: auto;
}

#HPScreen3 .PriceItem + .PriceItem {
	margin-top: 30px;
}

#HPScreen3 .Name {
	flex: 1;
	font-weight: normal;
	font-size: 16px;
}

#HPScreen3 .Price {
	font-weight: 500;
	font-size: 18px;
}

#HPScreen3 .Price div {
	font-weight: normal;
	font-size: 14px;
}

#HPScreen3 p {
	flex: 0 0 100%;
	padding-top: 5px;
}

#HPScreen3 .TopPart {
	display: flex;
	flex-direction: column;
}

#HPScreen3 .Pricelist {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 40px;
}

#HPScreen3 .Pricelist .Button {
	max-width: 250px;
}

#HPScreen4 .BottomPart {
	background: no-repeat center center;
	background-size: cover;
	display: flex;
	flex-direction: column;
}

#HPScreen4 .BottomPart .Socials {
	flex: 1;
}


#HPScreen5 .TopPart {
	display: flex;
	flex-direction: column;
}

#HPScreen5 .ContactsList {
	margin: auto;
	max-width: 216px;
	flex: 1;
	display: flex;
	align-items: center;
}

#HPScreen5 .ContactsList a {
	display: flex;
	align-items: center;
}

#HPScreen5 .ContactsList a + a {
	margin-top: 30px;
}

#HPScreen5 .ContactsList .Icon {
	flex: 0 0 35px;
}

#HPScreen5 .ContactsList svg {
	width: 80%;
	height: auto;
}

#HPScreen5 .ContactsList [fill] {
	fill: var(--accent-color);
}

#HPScreen5 .ContactsList [stroke] {
	stroke: var(--accent-color);
}

#LoggedViewInstead {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 20px;
}

#HPTopVideos {
	margin-bottom: 30px;
}

.HostsScreen {display: flex; flex-direction: column; justify-content: center; height: 100%; width: 100%;}
.HostsPresentation {display: flex; flex-wrap: wrap; gap: 25px; justify-content: center; align-items: center; align-content: center; width: 100%; max-width: 100%; text-align: center; font-size: 18px; margin-left: auto; margin-right: auto; max-width: 1600px;}
.HostsPresentation .Host {flex: 0 0 150px;}
.HostsPresentation .Image {width: 125px; height: 125px; margin-bottom: 15px; margin-left: auto; margin-right: auto; border-radius: 9999999px; overflow: hidden;}
.HostsPresentation img {width: 100%; height: 100%; object-position: center; object-fit: cover;}

@media (max-width: 1220px) {
	.HostsPresentation .Host {flex-basis: 125px;}
	.HostsPresentation .Image {width: 100px; height: 100px;}
	.Screen .HostsScreen h2 {padding-top: 40px;}
}

@media (max-width: 1024px) {
	.HostsPresentation {display: grid; grid-template-rows: max-content max-content; grid-auto-flow: column; overflow: auto; padding-left: 15px; padding-right: 15px; padding-bottom: 15px; max-width: 100%; justify-content: left;}
	.HostsScreen h2 {}

	#HPScreen4 .TopPart {
		flex-basis: 80%;
	}

	#HPScreen4 .BottomPart {
		flex-basis: 20%;
	}

	#HPScreen3 .TopPart {flex: 0 0 100%;}
	#HPScreen3 .BottomPart {display: none;}
}

@media (min-width: 1024px) {
	.Screen {
		flex-direction: row;
	}

	.Screen h2 {
		font-size: 32px;
		padding-top: 109px;
	}

	#HPScreen1 h1 {
		font-size: 120px;
		line-height: normal;
	}

	#HPScreen1 nav a {
		font-size: 22px;
		font-weight: normal;
	}

	#HPScreen3 .Name {
		font-size: 22px;
	}

	#HPScreen3 p {
		padding-top: 15px;
		font-size: 16px;
	}

	#HPScreen5 .ContactsList {
		font-size: 22px;
		max-width: 500px;
		white-space: nowrap;
	}

	#HPScreen5 .ContactsList .Icon {
		flex-basis: 60px;
	}

	#HPScreen5 .ContactsList .Icon svg {
		height: auto;
		width: 40px;
	}

	#HPScreen3 .PriceItem {
		max-width: 600px;
	}

	#LoggedViewInstead {
		align-items: center;
	}

	#LoggedViewInstead .Button {
		width: auto;
	}

	#HPTopVideos {
		width: 100%;
	}
}* {
	transition-duration: 300ms;
}

/*Color changed on hover*/
.Button:hover {
	background-image: var(--gradient);
	color: var(--accent-color);
}

.Dialog {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.3);
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px 10px;
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
}

.DialogContent {
	max-width: 500px;
	background-color: var(--bg-color);
	border-radius: 10px;
	padding: 20px;
}

.DialogContent h2 {
	font-size: 25px;
	margin-bottom: 20px;
}

.DialogContent p {
	margin-bottom: 15px;
}

.DialogContent .SmallerText {
	font-size: 13px;
	display: block;
	padding-top: 10px;
	line-height: normal;
}

.DialogContent strong {
	font-weight: bold;
}

[data-loading="1"] {
	position: relative;
	pointer-events: none;
}

[data-loading="1"]::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(255, 255, 255, 0.75);
}

[data-loading="1"]::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border: 5px solid var(--accent-color);
	border-top: 5px solid var(--main-color);
	border-radius: 50%;
	width: 20px;
	height: 20px;
	animation: ButtonLoading 2s linear infinite;
}

@keyframes ButtonLoading {
	0% {
		transform: translate(-50%, -50%) rotate(0deg);
	}

	100% {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}:root {
	--gradient: linear-gradient(to top right, #FBDA61, #FF5ACD);
	--pink: #FF5ACD;
}

#VideosTopCarousel {
	overflow: auto;
	overflow-y: hidden;
	height: calc(var(--window-height) * 0.5);
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	display: flex;
}

#VideosTopCarousel a {
	display: block;
	height: 100%;
	position: relative;
	scroll-snap-align: start;
	flex: 0 0 50%;
}

#VideosTopCarousel img {
	object-position: center;
	object-fit: cover;
	width: 100%;
	height: 100%;
}

#VideosTopCarousel .Data {
	position: absolute;
	bottom: 21px;
	left: 21px;
	right: 53px;
	padding: 5px;
	border-radius: 6px;
	background: rgba(0, 0, 0, 0.2);
}

#VideosTopCarousel .Data br {
	display: none;
}

#VideosTopCarousel .Name {
	font-size: 32px;
	color: var(--label-text-color);
}

#VideosTopCarousel .Text {
	font-size: 16px;
	font-weight: 200;
	color: var(--label-text-color);
}

.ContentSelectionPage {
	padding: 23px 20px;
}

.ContentSelectionPage .ContentCategories {
	margin-bottom: 12px;
}

.ContentCategories {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}

.ContentCategories a {
	padding: 0 6px;
	display: inline-flex;
	align-items: center;
	height: 24px;
	border: 1px solid #767676;
	color: #767676;
	font-size: 13px;
	border-radius: 3px;
}

.VideosCategoryItem {
	margin-bottom: 40px;
}

.VideosCategoryItem h2 {
	font-size: 22px;
	margin-bottom: 15px;
	text-transform: uppercase;
}

#VideoDetail {
	--data-high: 0px;
	--data-from-bottom: 40px;
}

#VideoDetail {
	height: calc(var(--window-height) - env(safe-area-inset-bottom));
	overflow: hidden;
	width: 100%;
	position: relative;
	transition: none !important;
}

#VideoDetail video {
	object-fit: cover;
	object-position: center;
	width: 100%;
	height: 100%;
	transition: none !important;
}

#VideoDetail .Data {
	position: fixed;
	bottom: var(--data-from-bottom);
	right: 25px;
	left: 25px;
	z-index: 10;
	padding: 12px 22px;
	border-radius: 10px;
}

#VideoDetail .Data .Text {
	opacity: 0.7;
}

#VideoDetail .Data .Text h1 {
	font-size: 20px;
}

#VideoDetail .Data .Text p {
	font-size: 15px;
	font-weight: 200;
	line-height: 18px;
}

#VideoDetail :is(.Data, .Tag, .Favorite) {
	background: rgba(255, 255, 255, 0.3);
}

@media (prefers-color-scheme: dark) {
	#VideoDetail :is(.Data, .Tag, .Favorite) {
		background: rgba(0, 0, 0, 0.3);
	}
}

#VideoDetail .Data :is(.Tag, .Favorite) {
	position: absolute;
	bottom: calc(100% + 40px);
	width: 42px;
	height: 42px;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

#VideoDetail .Data svg {
	width: auto;
	height: 20px;
}

/*#VideoDetail .Data svg path {fill: white; fill-opacity: 1;}*/
#VideoDetail .Data .Tag {
	right: 0;
}

#VideoDetail .Data .Favorite {
	right: 56px;
}

#VideoDetail .Data .Favorite.Active {
	background-color: #FF5050;
}

#VideoDetail .Data .Tag.Active {
	background-color: #97E518;
}

#VideoDetail .HeadsheetsDownloads {
	position: relative;
	z-index: 2;
	margin-top: 5px;
	margin-bottom: 20px;
	display: flex;
	justify-content: left;
	gap: 15px;
}

#VideoDetail .HeadsheetsDownloads button {
	display: inline-flex;
	gap: 6px;
	align-items: center;
}

#VideoDetail .HeadsheetsDownloads span {
	display: flex;
}

#VideoDetail #Muted {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	padding: 20px;
	border-radius: 12px;
	background-color: rgba(255, 255, 255, 0.9);
	box-shadow: 0 0 10px black;
}

@media (prefers-color-scheme: dark) {
	#VideoDetail #Muted {
		background: rgba(0, 0, 0, 0.9);
	}
}

#VideoDetail #Muted svg {
	height: auto;
	width: 80px;
}

#VideoDetail #Muted.Moved {
	left: 90%;
	top: 70%;
	padding: 5px;
}

#VideoDetail #Muted.Moved svg {
	width: 40px;
}

#VideoDetail.HideInfo .Data {
	transform: translateY(calc(var(--data-high) + var(--data-from-bottom)));
}

.VideosList {
	display: flex;
	gap: 10px;
	max-width: 100%;
	overflow: auto;
}

.VideosList .VideosItem {
	flex: 0 0 93px;
	height: 150px;
	position: relative;
	overflow: hidden;
	width: 100%;
}

.VideosList .VideosItem span {
	display: block;
	margin-top: -30px;
	padding: 5px;
	background-color: rgba(0, 0, 0, 0.3);
	font-weight: 500;
	position: relative;
	color: var(--label-text-color);
}

.VideosList .VideosItem .TopInfo {position: absolute; left: 0; top: 0; width: 100%; padding: 6px; font-weight: bold; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;}

.VideosList .VideosItem .PremiumInfo {display: flex; padding: 2px 5px; background: #ffffff33; max-width: max-content; margin-bottom: 3px; border-radius: 6px;}

.VideosList .VideosItem .Lock {display: flex; padding: 2px 5px; background: #ffffff33; max-width: max-content; margin-bottom: 3px; border-radius: 6px;}

.VideosList .VideosItem .Lock svg {width: 15px; height: auto;}

.VideosList .VideosItem .Lock path {fill: var(--pink);}

.VideosList {
	display: flex;
	gap: 10px;
	max-width: 100%;
	overflow: auto;
}

.VideosList .VideosItem {
	flex: 0 0 93px;
	height: 150px;
	position: relative;
	overflow: hidden;
	width: 100%;
	position: relative;
}

.VideosItemContainer {
	position: relative;
	width: 100%;
	height: 100%;
}

.VideosItemContainer > img, .VideosItemContainer > picture img {object-fit: cover; object-position: center; width: 100%; height: 100%;}

.VideosItemContainer .VideoHost {display: flex; gap: 5px; align-items: center; padding: 0 5px 5px 0;}
.VideosItemContainer .HostImage {width: 30px; height: 30px; border-radius: 100%; overflow: hidden;}
.VideosItemContainer .HostImage img {width: 100%; height: 100%; object-fit: cover; object-position: center;}

#VideoDetail .VideoHost {display: flex; gap: 5px; align-items: center; padding: 10px 0;}
#VideoDetail .HostImage {width: 35px; height: 35px; border-radius: 100%; overflow: hidden;}
#VideoDetail .HostImage img {width: 100%; height: 100%; object-fit: cover; object-position: center;}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--gradient);
	mix-blend-mode: screen;
	z-index: 1;
}

.VideosItem span {
	display: block;
	margin-top: -30px;
	padding: 5px;
	background-color: rgba(0, 0, 0, 0.3);
	font-weight: 500;
	position: relative;
	color: var(--label-text-color);
	z-index: 2;
}

.ChangeQualityButtons,
.ChangeQualityButtons button {
	font-size: 12px;
}

.ChangeQualityButtons button {
	border-radius: 99999px;
	border: 1px solid var(--accent-color);
	padding: 2px 6px;
	cursor: pointer;
}

.ChangeQualityButtons button[data-selected="1"] {
	background: var(--pink);
	color: var(--main-color);
}

.Recommendations,
.UpgradeTier,
#PasswordChangeConfirmation {
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.8);
	justify-content: center;
	align-items: center;
	z-index: 1;
	padding: 15px;
	display: none;
	backdrop-filter: blur(10px);
	--webkig-backdrop-filter: blur(10px);
}

@media (prefers-color-scheme: dark) {

	.Recommendations,
	.UpgradeTier,
	#PasswordChangeConfirmation {
		background: rgba(0, 0, 0, 0.8);
	}
}

.DisplayedRecommendations .Recommendations,
.DisplayedUpgradeTier .UpgradeTier {
	display: flex;
}

.Recommendations h2 {
	margin-bottom: 35px;
	font-size: 28px;
}

.Recommendations .RecomVideo {
	display: flex;
	gap: 20px;
	text-align: left;
}

.Recommendations .RecomVideo + .RecomVideo {
	margin-top: 25px;
}

.Recommendations .RecomVideo .Image {
	width: 60px;
}

.Recommendations .RecomVideo .Image img {
	width: 100%;
}

.Recommendations .RecomVideo .Name {
	font-size: 18px;
}

.Recommendations .RecomVideo br {
	display: none;
}

.Recommendations .RecomVideo .Desc {
	margin-bottom: 10px;
}

#PasswordChangeConfirmation {
	display: flex;
}

#PasswordChangeConfirmation .PasswordConfirmationContent {
	background: var(--bg-color);
	padding: 20px;
	border-radius: 20px;
	text-align: center;
}

#PasswordChangeConfirmation h2 {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 20px;
}

#PasswordChangeConfirmation p {
	margin-bottom: 20px;
}

.UpgradeTierContent h2 {
	font-weight: bold;
	font-size: 20px;
	margin-bottom: 25px;
}

body:has(.DisplayedRecommendations) header {
	z-index: 12;
}

body:has(#VideoDetail) header {
	top: 40px;
}

body:has(.DisplayedRecommendations) :is(#Menu, #UserOverview) {
	z-index: 11;
}

.VideosItem .WatchVideoBtnLink {text-decoration: underline;}

.VideosList .VideosItem .VideoDescriptionInfo {position: absolute; background: rgba(0, 0, 0, 0.3); left: 0; bottom: 0; right: 0; height: var(--name-height, auto); transition-property: height, background; transition-duration: 150ms;}
.VideosList .VideosItem .VideoDescriptionInfo span {position: static; background: none; margin-top: 0; padding: 10px 5px 7px 5px;}
.VideosList .VideosItem .VideoDescriptionInfo .Text {height: 0; overflow: hidden; padding: 0 5px;}

.VideosItem {outline: none !important;   -webkit-tap-highlight-color: transparent !important;}

.VideosItem:is(.DescriptionShows, .InfoHeightSet:hover) .VideoDescriptionInfo {height: 75%; background: rgba(0,0,0,0.8);}
.VideosItem:is(.DescriptionShows, .InfoHeightSet:hover) .VideoDescriptionInfo .Text {height: auto;}

.VideosItem .CloseDescriptionBtn {display: block; padding: 10px 0;}
.VideosItem:not(.Touched) .CloseDescriptionBtn {display: none;}

.VideosItem .VideoDescriptionInfo .Text * {font-size: 16px;}

@media (max-width: 1024px) {
	.VideosCategoryItem {overflow: hidden;}
	.VideosCategoryItem h2 {text-align: center;}
	.VideosCategoryItem .VideosList {flex-wrap: wrap; justify-content: center;}
	.VideosList .VideosItem {height: 300px; flex-basis: 180px;}

	.MaxHeightShowMoreBtn {text-align: center; padding: 15px 15px 12px 15px; margin-bottom: 50px; font-weight: bold; display: flex; margin-left: auto; margin-right: auto; font-size: 20px; border-radius: 100px; background: var(--pink);}
}

@media (max-width: 560px) {
	.VideosCategoryItem .VideosList {display: grid; grid-template-columns: 1fr 1fr;}
}

@media (width >= 1024px) {
	#VideosTopCarousel {
		height: 75svh;
		display: flex;
	}

	#VideosTopCarousel > a {
		flex: 0 0 calc(100% / 3);
	}

	#VideoDetail {
		text-align: center;
	}

	#VideoDetail video {
		object-fit: contain;
		width: auto;
	}

	#VideoDetail .Data .Favorite {
		right: auto;
		left: 56px;
	}

	#VideoDetFail .Data .Tag {
		right: auto;
		left: 0;
	}

	#VideoDetail .Data {
		padding-left: 15px;
		padding-right: 15px;
		display: inline-block;
		right: auto;
		text-align: left;
	}

	#VideoDetail #Muted.Moved {
		left: 25px;
		top: 50%;
		padding: 5px;
		transform: none;
	}

	#VideoDetail #Muted.Moved svg {
		width: 40px;
	}

	#VideoDetail h1 {
		font-size: 32px;
	}

	#VideoDetail .Data .Text p {
		font-size: 22px;
		line-height: normal;
		font-weight: normal;
	}

	.VideosList {
		width: 100%;
	}

	.VideosList .VideosItem {
		height: 300px;
		flex-basis: 203px;
	}

	.VideosList .VideosItem span {
		margin-top: -30px;
	}

	#VideosTopCarousel .Data {
		padding: 15px;
	}
}