/* initial */

@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap");
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	line-height: 1;
}
ul {
	list-style: none;
}
a {
	text-decoration: none;
}
:root {
	--black-color: black;
	--light-black-color: #0f0f0f;
	--white-color: white;
	--yellow-color: #ffc900;
	--red-color: #d80000;
	--green-color: #32f958;
	--dark-red-color: #630000;
	--light-grey-color: #bababa;
	/*--muted-color: #777777;*/
	--muted-color: #646464;
	--grey-color: #202020;
	--dark-grey-color: #0d0d0d;
	--backdrop-strong-color: rgba(0, 0, 0, 0.95);
	--backdrop-medium-color: rgba(0, 0, 0, 0.8);
	--backdrop-light-color: rgba(0, 0, 0, 0.5);
	--thumb-gradient: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
	--section-gradient: linear-gradient(to top, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0));
}
/* typography */

body {
	color: var(--white-color);
	background-color: var(--black-color);
	font-family: "Roboto", sans-serif;
	font-size: 16px;
	font-weight: 700;
}
section,
aside {
	padding: 24px 8px 8px;
}
h2 {
	margin-bottom: 12px;
	font-size: 16px;
	font-weight: 900;
}
.text_yellow {
	color: var(--yellow-color)!important;
}
.text_red {
	color: var(--red-color)!important;
}
.text_muted {
	color: var(--grey-color)!important;
}
.text_center {
	text-align: center;
}
.margin_top {
	margin-top: 12px;
}
/* UI buttons */

.btn {
	min-width: 80px;
	display: inline-flex;
	align-content: center;
	justify-content: center;
	align-items: center;
	border: none;
	outline: none;
	border-radius: 16px;
	padding: 14px 12px 12px;
	text-decoration: none;
	text-transform: uppercase;
	color: var(--black-color);
	background-color: var(--white-color);
	white-space: nowrap;
	font-family: "Roboto";
	font-size: 16px;
	font-weight: 900;
	cursor: pointer;
}
.btn_primary,
.btn:hover {
	color: var(--black-color)!important;
	background-color: var(--yellow-color);
}
.btn_secondary {
	color: var(--white-color)!important;
	background-color: var(--yellow-color);
}
.btn_transparent {
	color: var(--light-grey-color);
	background: transparent;
}
.btn_action,
.btn.active,
.btn.btn_page:hover,
.btn.btn_secondary:hover,
.btn.btn_primary:hover {
	color: var(--white-color)!important;
	background-color: var(--red-color);
}
.btn_muted,
.btn_page {
	color: var(--light-grey-color);
	background-color: var(--grey-color);
}
.btn_small {
	min-width: auto!important;
	padding-right: 16px!important;
	padding-left: 16px!important;
}
.btn_big {
	padding: 20px 28px 18px!important;
}
.btn_wide {
	width: 100%;
}
.btn_continue {
	padding: 16px 8px 14px;
	justify-content: space-between!important;
	border-radius: 8px;
}
.btn_continue_top {
	padding: 12px 8px 11px 33px;
	justify-content: space-between!important;
	gap: 8px;
	border-radius: 8px;
	font-weight: 500;
}
.btn_medium,
.btn_page {
	min-width: 64px!important;
	padding-right: 16px!important;
	padding-left: 16px!important;
}
/* UI icons */

.icon {
	display: inline-block;
	height: 1em;
	width: 1em;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 1em;
}
.icon_svg {
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center center;
	mask-position: center center;
	-webkit-mask-size: 1em;
	mask-size: 1em;
}
.icon_burger {
	width: 1.5em;
	background-image: url("./menu.svg");
}
.icon_burger_grey {
	width: 1.5em;
	background-image: url("./menu_grey.svg");
}
.icon_close {
	width: 1.5em;
	background-image: url("./menu_close.svg");
}
.icon_likes {
	background-image: url("./like.svg");
}
.icon_comments {
	width: 1.125em;
	background-image: url("./comments.svg");
}
.icon_arrow_left {
	width: 1.125em;
	/*background-image: url("./previous_page.svg");*/
	-webkit-mask-image: url(./previous_page.svg);
	mask-image: url(./previous_page.svg);
}
.icon_arrow_right {
	width: 1.125em;
	/*background-image: url("./next_page.svg");*/
	-webkit-mask-image: url(./next_page.svg);
	mask-image: url(./next_page.svg);
}
.icon_arrow_continue {
	width: 1.5em;
	/*background-image: url("./arrow_continue_big.svg");*/
	-webkit-mask-image: url(./arrow_continue_big.svg);
	mask-image: url(./arrow_continue_big.svg);
}
.btn .icon_svg {
	background-color: currentcolor;
}
.btn_secondary:hover .icon_svg {
	background-color: var(--black-color);
}
.btn_action:hover .icon_svg {
	background-color: var(--white-color);
}
/* main header */

.main_header {
	position: relative;
	display: flex;
	justify-content: space-between;
	min-height: 160px;
	padding: 8px;
	background-color: black;
	background-image: url("./top_big_image.jpg");
	background-repeat: no-repeat;
	background-position: top right;
	background-size: cover;
}
.header_logo {
	position: absolute;
	width: 240px;
	height: auto;
	top: 62%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.main_header .burger_button {
	padding: 10px!important;
	width: auto;
	border-radius: 14px;
}
.main_header .icon_burger {
	font-size: 20px;
}
/* join and tube headers */

.join_header,
.tube_header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 14px;
}
.join_header_logo,
.tube_header_logo {
	width: 120px;
	height: auto;
}
.tube_header {
	background-color: var(--light-black-color);
	padding: 10px 8px;
}
.tube_header .tube_menu {
	display: none;
}
.tube_header .btn {
	font-size: 14px;
}
.tube_logo {
	display: flex;
	align-items: center;
	gap: 12px;
}
.sale_marquee {
	display: flex;
	justify-content: space-between;
	overflow: hidden;
	padding: 8px;
	color: var(--black-color);
	background-color: var(--green-color);
}
.sale_countdown {
	width: 50%;
	text-align: center;
}
.sale_countdown h3 {
	text-transform: uppercase;
	font-size: 10px;
	font-weight: 600;
}
.sale_countdown ul {
	width: 100%;
	padding-left: 16px;
	list-style: none;
	display: flex;
	justify-content: center;
}
.sale_countdown li {
	display: flex;
	flex-direction: column;
	position: relative;
	padding-right: 8px;
	text-align: center;
}
.sale_countdown li:not(:first-child):before {
	content: ":";
	position: absolute;
	left: -0.4em;
	top: .1em;
	font-size: 1em;
}
.sale_offer {
	width: 50%;
	border: 2px solid var(--black-color);
	display: flex;
	justify-content: center;
	align-items: center;
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 900;
}
.sale_offer:hover {
	background-color: var(--black-color);
	color: var(--green-color);
}
.cd_digits {
	width: 1.3em;
	font-size: 18px;
}
.cd_title {
	text-transform: uppercase;
	font-size: 6px;
}
/* main menu */

.main_menu {
	display: none;
}
.main_menu.active {
	display: block;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 25;
	background-color: var(--backdrop-strong-color);
}
.menu_items {
	width: 290px;
	height: 100%;
	background-color: var(--dark-grey-color);
}
.menu_items li {
	padding: 16px;
}
.menu_items a {
	color: var(--light-grey-color);
	text-decoration: none;
	text-transform: uppercase;
}
.menu_items a:hover {
	color: var(--yellow-color);
}
.buttons_menu {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: flex-start;
	justify-content: flex-end;
	overflow: hidden;
}
/* breadcrumbs */

.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	text-transform: uppercase;
	background: var(--red-color);
	font-size: 11px;
	font-weight: 700;
}
.breadcrumbs li {
	padding: 5px 4px 3px;
}
.breadcrumbs li:not(:first-child):before {
	content: "";
	display: inline-block;
	width: 9px;
	height: 9px;
	background-image: url("./arrow_right.svg");
	margin-right: 8px;
}
/* thumbs general */

.thumb {
	display: inline-block;
	position: relative;
	text-decoration: none;
	font-size: 13px;
}
.thumb>img,
.redeem>img,
.thumb>video {
	display: block;
	width: 100%;
	height: auto;
}
/*.thumb>video {
	aspect-ratio: 371 / 323;
	width: 100%;
	object-fit: cover;
}*/

.thumb.loading:before,
.thumb.loading:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 50px;
	height: 50px;
	background-repeat: no-repeat;
	background-position: center center;
	pointer-events: none;
}
.thumb.loading:before {
	background-image: url(loading_logo.svg);
	transform: translate(-50%, -50%);
}
.thumb.loading:after {
	background-image: url(loading_center.svg);
	animation: rotation 1s infinite ease-in-out;
}
@keyframes rotation {
	from {
		transform: translate(-50%, -50%) rotate(0deg);
	}
	to {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}
.thumb_header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	padding: 12px;
}
.thumb_duration {
	display: inline-block;
	float: right;
	padding: 12px;
	border-radius: 5px;
	color: var(--light-grey-color);
	background-color: var(--backdrop-medium-color);
}
.thumb_footer {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 8px;
	background-image: var(--thumb-gradient);
}
.thumb_description {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.thumb_title {
	color: var(--white-color);
	font-size: 16px;
	font-weight: 500;
}
.thumb_model {
	color: var(--yellow-color);
	text-transform: uppercase;
	font-weight: 400;
}
.thumb_info {
	color: var(--light-grey-color);
	font-weight: 400;
}
.thumb_info span {
	margin-left: 12px;
	white-space: nowrap;
}
.thumbs_tube {
	display: flex;
	gap: 8px;
	padding-top: 10px;
}
.thumbs_tube ul {
	width: 100%;
}
.thumbs_tube li {
	padding-bottom: 8px;
}
.thumb_desktop,
.thumb_tablet {
	display: none;
}
.thumb_mobile {
	display: block;
}
/* video preview */

#thumb_preview {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-color: var(--black-color);
}
/* framed thumbs */

.thumb_red,
.thumb_yellow {
	position: relative;
	max-width: 100%;
}
.thumb_red:after,
.thumb_yellow:after {
	/*border: 2px solid var(--red-color);*/
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.thumb_red:after {
	box-shadow: inset 0 0 0 2px var(--red-color);
}
.thumb_yellow:after {
	box-shadow: inset 0 0 0 2px var(--yellow-color);
}
.thumb_red .thumb_footer,
.thumb_yellow .thumb_footer {
	/*position: static;*/
	display: flex;
	justify-content: center;
	gap: 4px;
	background-image: none;
	text-transform: uppercase;
	z-index: 15;
}
.thumb_red .thumb_footer {
	background-color: var(--red-color);
	color: var(--white-color);
}
.thumb_yellow .thumb_footer {
	background-color: var(--yellow-color);
	color: var(--black-color);
}
.thumb_vertical .thumb_footer {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: unset;
	padding: 0 16px 0 10px!important;
	align-items: center;
}
.thumb_red.thumb_vertical .thumb_footer>span,
.thumb_yellow.thumb_vertical .thumb_footer>span {
	transform: scale(1.0, 0.9);
	writing-mode: vertical-rl;
	text-orientation: mixed;
	font-weight: 700;
}
.thumb_red .thumb_footer>span,
.thumb_yellow .thumb_footer>span {
	/*transform: scale(0.9, 1.0);*/
	letter-spacing: -1.2px;
	font-size: 4.3vw;
	font-weight: 900;
}
.thumb_red .thumb_footer>span.small,
.thumb_yellow .thumb_footer>span.small {
	font-size: 3.6vw;
}
/* most viewed thumbs */

.most_viewed {
	position: relative;
	max-height: 200vw;
	overflow: hidden;
}
.most_viewed:after {
	content: "";
	position: absolute;
	display: block;
	width: 100%;
	height: 100px;
	bottom: 0;
	left: 0;
	right: 0;
	background-image: var(--section-gradient);
	z-index: 20;
}
.most_viewed .thumb:hover:after,
.thumbs_tube .thumb:hover:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 2px solid var(--red-color);
	background-image: url("./play.svg");
	background-color: var(--backdrop-light-color);
	background-position: center center;
	background-repeat: no-repeat;
	z-index: 10;
}
.thumb_red.thumb:hover:after,
.thumb_yellow.thumb:hover:after {
	border: none;
}
/* top rated and latest updates thumbs */

.top_rated .thumbs,
.latest_updates .thumbs,
.top_rated_models .thumbs {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 8px;
}
.top_rated .thumb,
.latest_updates .thumb {
	width: 100%;
}
/* top rated models thumbs */

.top_rated_models .thumb {
	width: calc(50% - 4px)
}
.top_rated_models .thumb_footer {
	padding: 30px 0 12px;
	justify-content: center;
}
.top_rated_models .thumb_model {
	color: var(--white-color);
	font-weight: 600;
}
/* hovered thumbs yellow text */

.thumb:hover .thumb_title,
.top_rated_models .thumb:hover .thumb_model {
	color: var(--yellow-color);
}
/* paging */

.paging {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 4px;
	padding: 0 12px;
	color: var(--light-grey-color);
	font-size: 18px;
}
.btn_page,
.paging_ellipsis {
	display: none;
}
.btn_page.page_navigation {
	display: inline-flex;
}
.paging_position,
.paging_ellipsis {
	padding-left: 12px;
	padding-right: 12px;
}
/* join form */

.join_form {
	padding: 8px 8px;
}
.join_form fieldset {
	position: relative;
	background-color: var(--light-black-color);
	border: none;
	border-radius: 8px;
	padding: 12px 12px 16px;
	margin: 12px 0;
}
.join_form legend {
	position: absolute;
	top: 0;
	left: 0;
	padding: 8px 12px 6px;
	border-radius: 8px 0;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 400;
	color: var(--light-grey-color);
	background-color: var(--muted-color);
}
.join_form h3 {
	display: block;
	margin: 8px 0 16px;
	text-align: center;
	font-size: 16px;
}
.join_form input {
	padding: 16px;
	width: 100%;
	border: 1px solid var(--light-grey-color);
	border-radius: 6px;
	color: var(--white-color);
	background: transparent;
	font-size: 14px;
}
.join_form input:focus,
.join_form input:active,
.join_form input:not(:placeholder-shown):valid {
	outline: none;
	border: 1px solid var(--yellow-color);
}
.join_form input:not(:focus):invalid {
	border: 1px solid var(--red-color);
}
.join_form input+span.error {
	padding-top: 1em;
	color: var(--red-color);
	font-size: 14px;
	display: none;
}
.join_form input:not(:focus):invalid+span.error {
	display: block;
}
.form_radio_btn input[type=radio] {
	display: none;
}
.form_radio_btn input[type=radio]:checked+label {
	color: var(--black-color);
	background: var(--yellow-color);
}
.form_radio_btn input[type=radio]:disabled+label {
	background: var(--grey-color);
	color: var(--dark-grey-color);
}
.form_radio_btn label {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 8px;
	margin: 8px 0;
	padding: 14px;
	cursor: pointer;
	border: 1px solid var(--grey-color);
	border-radius: 6px;
	user-select: none;
}
.form_radio_btn label:hover {
	background-color: var(--grey-color);
}
.form_radio_btn .label_plan {
	text-align: left;
}
.form_radio_btn .label_title {
	display: block;
	margin-bottom: 8px;
	font-size: 14px;
}
.form_radio_btn .label_price {
	text-align: center;
}
.form_radio_btn .label_price .label_title {
	margin-bottom: 6px;
	font-size: 16px;
}
.form_radio_btn .label_subtitle {
	display: block;
	font-size: 12px;
	font-weight: 400;
	color: var(--muted-color);
}
.label_subtitle>span {
	display: none;
}
.form_radio_btn .label_offer {
	min-width: 50px;
	padding: 8px 8px 6px;
	border-radius: 6px 6px 6px 0;
	font-size: 12px;
	font-weight: 400;
	text-transform: uppercase;
	color: var(--white-color);
	background-color: var(--red-color);
}
.form_radio_group {
	margin-top: 18px;
}
.form_radio_group h4 {
	width: 100%;
	font-size: 14px;
	font-weight: 400;
}
.form_radio_group .form_radio {
	display: inline-block;
	margin: 18px 18px 0 0;
}
.form_radio_group label,
.form_radio_group input {
	width: auto;
	display: inline;
	font-size: 16px;
	font-weight: 400;
}
.form_radio input[type=radio] {
	display: none;
}
.form_radio label {
	display: inline-block;
	cursor: pointer;
	position: relative;
	padding-left: 25px;
	margin-right: 0;
	line-height: 18px;
	user-select: none;
}
.form_radio label:before {
	content: "";
	display: inline-block;
	width: 18px;
	height: 18px;
	position: absolute;
	left: 0;
	bottom: 1px;
	background: url(./radiobutton.svg) 0 0 no-repeat;
}
.join_thumbs {
	margin: 20px 0 0;
	display: flex;
	justify-content: space-between;
}
.join_thumbs .thumb {
	width: calc(50% - 4px);
	gap: 8px;
}
.thumb .thumb_overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 12px;
	background-color: var(--backdrop-light-color);
	text-transform: uppercase;
	text-align: center;
	font-size: 13px;
}
.left_column {
	display: none;
}
.join_benefits {
	padding-top: 18px;
}
.join_benefits h2 {
	color: var(--light-grey-color);
	text-align: center;
	text-transform: uppercase;
	line-height: 1.3;
	font-size: 18px;
}
.join_benefits ul {
	color: var(--muted-color);
	padding-right: 1em;
	text-align: center;
	text-transform: uppercase;
	font-size: 14px;
}
.join_benefits li {
	margin-bottom: 10px;
	padding-left: 1em;
	break-inside: avoid-column;
	text-indent: -.7em;
}
.join_benefits li::before {
	content: "• ";
	color: var(--dark-red-color);
	vertical-align: middle;
	font-size: 1.2em;
}
/* Checked */

.form_radio input[type=radio]:checked+label:before {
	background: url(./radiobutton_active.svg) 0 0 no-repeat;
}
/* Hover */

.form_radio label:hover:before {
	filter: brightness(120%);
}
/* Disabled */

.form_radio input[type=radio]:disabled+label:before {
	filter: grayscale(100%);
}
/* footer */

/* Tube styles */

.thumbs_columns ul {
	list-style: none;
	column-count: 2;
	column-gap: 8px;
}
.thumbs_columns li {
	padding-bottom: 8px;
	break-inside: avoid-column;
	list-style-type: none;
}
.thumbs_columns img,
.thumbs_columns .thumb,
.thumbs_tube img,
.thumbs_tube .thumb {
	display: block;
}
footer {
	border-top: 2px solid var(--grey-color);
	margin: 50px 12px 0;
	padding-top: 35px;
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 12px;
	font-weight: 400;
}
footer p {
	margin-bottom: 16px;
	color: var(--muted-color)!important;
	text-align: center;
	line-height: 1.4;
}
.footer_text {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.footer_menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px 30px;
	margin-bottom: 35px;
	font-size: 16px;
	font-weight: 600;
}
.footer_main .footer_menu {
	width: 300px;
}
.footer_links {
	text-align: center;
	line-height: 1.4;
	max-height: 999999px;
}
.footer_menu a,
.footer_links a {
	color: var(--light-grey-color);
	text-decoration: none;
}
.footer_menu a {
	text-transform: uppercase;
}
.footer_links a {
	margin-right: 4px;
}
.footer_links a:not(:first-child):before {
	content: "|";
	margin-right: 5px;
	color: var(--light-grey-color);
}
.footer_menu a:hover,
.footer_links a:hover {
	color: var(--yellow-color)!important;
}
.footer_logo {
	margin-bottom: 10px;
}
.footer_logo img {
	width: 200px;
	height: auto;
}
.c_info {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
	pointer-events: none;
}
/* big mobile */

@media (min-width: 480px) {
	.header_logo {
		width: 360px;
	}
	.main_header .burger_button {
		padding: 10px 10px!important;
		width: auto;
		border-radius: 14px;
	}
	.main_header .icon_burger {
		font-size: 24px;
	}
	.breadcrumbs li {
		padding: 5px 6px 3px;
	}
	.breadcrumbs li:not(:first-child):before {
		margin-right: 12px;
	}
	section h2 {
		margin-bottom: 14px;
		font-size: 19px;
	}
	.btn {
		min-width: 104px;
		padding: 14px 17px 12px;
		font-size: 18px;
		font-weight: 900;
	}
	.icon_burger,
	.icon_burger_grey {
		font-size: 18px;
	}
	.join_header_logo,
	.tube_header_logo {
		width: 160px;
	}
	.tube_header .btn {
		padding: 16px 24px 14px;
	}
	.sale_countdown li:not(:first-child):before {
		content: ":";
		position: absolute;
		left: -0.5em;
		top: .1em;
		font-size: 1.4em;
	}
	.sale_offer {
		width: 50%;
		border: 3px solid var(--black-color);
		display: flex;
		justify-content: center;
		align-items: center;
		text-transform: uppercase;
		font-size: 18px;
		font-weight: 900;
	}
	.cd_digits {
		width: 1.3em;
		font-size: 26px;
	}
	.cd_title {
		text-transform: uppercase;
		font-size: 8px;
	}
	.thumb_red .thumb_footer,
	.thumb_yellow .thumb_footer {
		padding-top: 11px;
		padding-bottom: 9px;
	}
	.thumb_red .thumb_footer>span,
	.thumb_yellow .thumb_footer>span {
		transform: scale(0.9, 1.0);
	}
	.thumb {
		font-size: 16px;
	}
	.thumb_title {
		font-size: 20px;
	}
	.thumb_model {
		font-size: 14px;
	}
	.thumbs_tube {
		padding-top: 12px;
	}
	.join_form legend {
		padding: 10px 18px 8px;
		font-size: 18px;
	}
	.join_form h3 {
		display: block;
		margin: 8px 0 16px;
		text-align: center;
		font-size: 20px;
	}
	.form_radio_btn .label_title {
		font-size: 18px;
	}
	.form_radio_btn .label_price .label_title {
		font-size: 20px;
	}
	.form_radio_btn .label_subtitle {
		font-size: 12px;
	}
	.label_subtitle>span {
		display: inline;
	}
	.form_radio_btn .label_offer {
		min-width: 80px;
		padding: 8px 16px;
		font-size: 12px;
	}
	.join_benefits ul {
		column-count: 2;
		-webkit-column-count: 2;
		padding-right: initial;
		text-align: left;
		font-size: 13px;
	}
}
/* tablet */

@media (min-width: 1025px) {
	.main_header {
		min-height: 346px;
		padding: 12px 8px;
	}
	.header_logo {
		width: 650px;
		top: 58%;
	}
	.join_header {
		padding: 8px 24px 24px;
	}
	.join_header_logo {
		width: 205px;
	}
	.tube_header_logo {
		width: 220px;
	}
	.tube_header {
		padding: 12px 20px;
	}
	.tube_header .btn {
		padding: 16px 36px 14px;
		font-size: 17px;
		font-weight: 600;
	}
	.tube_header .burger_button {
		display: none;
	}
	.tube_header .tube_menu {
		display: block;
		margin-left: 36px;
	}
	.sale_marquee {
		padding: 4px;
		justify-content: center;
		gap: 50px;
	}
	.sale_countdown {
		display: flex;
		align-items: center;
		width: auto;
		gap: 50px;
	}
	.sale_countdown h3 {
		white-space: nowrap;
		font-size: 24px;
	}
	.sale_countdown li:not(:first-child):before {
		font-size: 1.8em;
	}
	.sale_offer {
		width: auto;
		padding: 12px 36px 10px;
		border: 4px solid var(--black-color);
		font-size: 24px;
	}
	.cd_digits {
		width: 1.5em;
		font-size: 36px;
		font-weight: 900;
	}
	.cd_title {
		font-size: 11px;
	}
	section h2 {
		margin-bottom: 14px;
		font-size: 19px;
	}
	.btn {
		min-width: 120px;
		border-radius: 20px;
		padding: 18px 35px 16px;
		font-size: 16px;
	}
	.btn_continue {
		justify-content: space-between!important;
		border-radius: 8px!important;
		font-size: 21px!important;
	}
	.btn_continue_top {
		padding: 14px 8px 12px 33px!important;
		justify-content: space-between!important;
		gap: 8px;
		border-radius: 8px!important;
		font-size: 17px;
		font-weight: 500;
	}
	.main_header .burger_button {
		padding: 12px 6px!important;
		width: auto;
		border-radius: 16px;
	}
	.main_header .icon_burger {
		font-size: 24px;
	}
	.margin_top {
		margin-top: 24px;
	}
	.breadcrumbs {
		font-size: 12px;
		font-weight: 900;
	}
	.breadcrumbs li {
		padding: 7px 10px 5px;
	}
	.breadcrumbs li:not(:first-child):before {
		margin-right: 18px;
	}
	.thumb_red:after {
		box-shadow: inset 0 0 0 3px var(--red-color);
	}
	.thumb_yellow:after {
		box-shadow: inset 0 0 0 3px var(--yellow-color);
	}
	.thumb_red .thumb_footer,
	.thumb_yellow .thumb_footer {
		padding-top: 14px;
		padding-bottom: 12px;
	}
	.thumb_red .thumb_footer>span,
	.thumb_yellow .thumb_footer>span {
		letter-spacing: -1.2px;
		font-size: 2.2vw;
	}
	.thumb_red .thumb_footer>span.small,
	.thumb_yellow .thumb_footer>span.small {
		font-size: 1.9vw;
	}
	.most_viewed {
		position: relative;
		max-height: 53vw;
		overflow: hidden;
	}
	.most_viewed .thumb:hover:after,
	.thumbs_tube .thumb:hover:after {
		border-width: 3px;
	}
	.thumbs_columns ul {
		column-count: 4;
	}
	.top_rated .thumb,
	.latest_updates .thumb {
		width: calc(33% - 2px);
	}
	.thumb_duration {
		padding: 10px 8px;
		font-size: 14px;
	}
	.thumb_title {
		font-size: 18px;
	}
	.thumb_model {
		font-size: 12px;
	}
	.thumb_info {
		font-size: 14px;
	}
	.thumb_info span {
		margin-left: 8px;
	}
	.thumbs_tube {
		padding-top: 12px;
	}
	.thumb_desktop,
	.thumb_mobile {
		display: none;
	}
	.thumb_tablet {
		display: block;
	}
	.btn_page {
		font-size: 15px;
		padding: 16px 24px 14px;
		border-radius: 16px;
	}
	.btn_page,
	.paging_ellipsis {
		display: inline-flex;
	}
	.paging_position {
		display: none;
	}
	.top_rated_models .thumb {
		width: calc(25% - 6px)
	}
	.top_rated_models .thumb_footer {
		padding: 40px 0 16px;
	}
	.top_rated_models .thumb_model {
		font-weight: 600;
		font-size: 16px;
	}
	.join_container {
		display: flex;
		justify-content: center;
	}
	.join_form {
		width: 100%;
		max-width: 580px;
	}
	.join_form fieldset {
		padding: 12px 18px;
	}
	.join_form legend {
		padding: 10px 28px 8px;
	}
	.form_radio_btn label {
		padding: 14px 18px;
	}
	.form_radio_btn .label_title {
		margin-bottom: 11px;
		font-size: 20px;
	}
	.form_radio_btn .label_price .label_title {
		font-size: 22px;
	}
	.form_radio_btn .label_subtitle {
		font-size: 14px;
	}
	.form_radio_btn .label_offer {
		font-size: 15px;
	}
	.form_radio_group {
		display: flex;
		padding: 12px 0;
	}
	.form_radio_group h4 {
		display: inline-block;
		width: auto;
		margin-right: 16px;
		font-size: 16px;
		font-weight: 600;
	}
	.form_radio_group .form_radio {
		margin: 0 18px 0 0;
	}
	.join_container aside {
		width: 50%;
	}
	.join_thumbs {
		gap: 20px;
	}
	.left_column {
		display: block;
	}
	.thumb .thumb_overlay {
		font-size: 17px;
	}
	.thumb .thumb_overlay>img {
		height: 48px;
		width: auto;
	}
	.join_benefits h2 {
		text-align: left;
		line-height: 2;
		padding-left: 8px;
	}
	.join_benefits ul {
		column-count: 1;
		font-size: 18px;
		font-weight: 500;
	}
	.join_benefits li {
		margin-bottom: 12px;
	}
	.join_benefits li::before {
		font-size: 1em;
	}
	footer {
		font-size: 14px;
		font-weight: 200;
	}
	.footer_main {
		margin: 50px 0 0;
		padding: 45px 24px 0;
		flex-direction: row;
		gap: 24px;
		align-items: flex-start;
		justify-content: space-between;
	}
	.footer_menu {
		width: 100%!important;
	}
	.footer_main p,
	.footer_main .footer_links {
		text-align: left;
	}
	.footer_main .footer_text {
		align-items: flex-start;
		max-width: 850px;
	}
	.footer_main .footer_menu {
		flex-wrap: nowrap;
		justify-content: flex-start;
		gap: 30px;
		font-size: 16px;
		font-weight: 600;
	}
	.footer_logo img {
		width: 220px;
	}
}
/* desktop */

@media (min-width: 1410px) {
	.btn {
		padding: 21px 32px;
		min-width: 140px;
		border-radius: 20px;
		font-size: 18px;
	}
	.btn_big {
		font-size: 26px;
		padding: 28px 38px 26px!important;
		border-radius: 32px;
	}
	.main_header {
		min-height: 590px;
		padding: 25px;
	}
	.main_header .btn {
		border-radius: 25px;
	}
	.header_logo {
		width: 970px;
		top: 50%;
	}
	.sale_marquee {
		padding: 12px;
		justify-content: center;
		gap: 50px;
	}
	.tube_header {
		padding: 18px 32px;
	}
	.tube_header .btn {
		padding: 20px 36px 18px;
		font-size: 18px;
		font-weight: 600;
	}
	.tube_header_logo {
		width: 260px;
	}
	.burger_button {
		display: none;
	}
	.breadcrumbs {
		font-size: 15px;
		font-weight: 900;
	}
	.breadcrumbs li {
		padding: 8px 10px 6px;
	}
	.thumb_red:after {
		box-shadow: inset 0 0 0 4px var(--red-color);
	}
	.thumb_yellow:after {
		box-shadow: inset 0 0 0 4px var(--yellow-color);
	}
	.thumb_red .thumb_footer,
	.thumb_yellow .thumb_footer {
		padding-top: 16px;
		padding-bottom: 14px;
	}
	.thumb_red .thumb_footer>span,
	.thumb_yellow .thumb_footer>span {
		letter-spacing: -1.2px;
		font-size: 1.9vw;
	}
	.thumb_red .thumb_footer>span.small,
	.thumb_yellow .thumb_footer>span.small {
		font-size: 1.5vw;
	}
	.most_viewed {
		position: relative;
		max-height: initial;
		overflow: initial;
	}
	.most_viewed:after {
		display: none;
	}
	.most_viewed .thumb:hover:after,
	.thumbs_tube .thumb:hover:after {
		border-width: 4px;
	}
	section {
		padding: 45px 8px 8px;
	}
	section h2 {
		margin-bottom: 20px;
		font-size: 24px;
		font-weight: 970;
	}
	.thumbs_columns ul {
		column-count: 5;
		column-gap: 12px;
	}
	.thumbs_columns li {
		padding-bottom: 12px;
	}
	.top_rated,
	.latest_updates,
	.top_rated_models {
		max-width: 60%;
		margin: 0 auto;
	}
	.top_rated .thumbs,
	.latest_updates .thumbs,
	.top_rated_models .thumbs {
		gap: 12px;
	}
	.top_rated .thumb,
	.latest_updates .thumb {
		width: calc(50% - 6px);
	}
	.top_rated_models .thumb {
		width: calc(25% - 9px);
	}
	.top_rated_models .thumb_model {
		font-size: 18px;
	}
	.thumb_duration {
		padding: 12px 10px;
		font-size: 16px;
	}
	.thumb_model {
		font-size: 15px;
	}
	.thumb_title {
		font-size: 24px;
	}
	.thumb_info {
		font-size: 16px;
	}
	.thumbs_tube {
		padding-top: 18px;
		gap: 12px;
	}
	.thumbs_tube li {
		padding-bottom: 12px;
	}
	.paging {
		padding: 0 12px 12px;
		color: var(--light-grey-color);
		font-size: 18px;
	}
	.paging_ellipsis {
		padding-left: 36px;
		padding-right: 36px;
	}
	.margin_top {
		margin-top: 36px;
	}
	.btn_page {
		min-width: 88px!important;
	}
	.thumb_tablet,
	.thumb_mobile {
		display: none;
	}
	.thumb_desktop {
		display: block;
	}
	.join_header {
		max-width: 60%;
		margin: 0 auto;
	}
	footer,
	.footer_main {
		max-width: 60%;
		margin: 50px auto 0;
		padding: 45px 0 0;
	}
	.footer_main .footer_menu {
		font-size: 15px;
	}
	.c_info {
		font-size: 12px;
	}
}