/***** Copyright 2025 - Herber eDevelopment - Jaroslav Herber *****/

:root {
	--theme-light: #66d8ff;
	--theme-moderate: #118599;
	--theme-dark: #0d3949;
	--theme-highlight: var(--theme-moderate);

	--bg-light: #313338;
	--bg-moderate: #2b2d31;
	--bg-dark: #1e1f22;

	--gradient-headline: linear-gradient(45deg, var(--theme-dark), var(--theme-moderate) 200px, var(--theme-light) 500px);
	--button: #444;
	--field-border: #1f0202;
	--radio-checked: #385aff;
	--checkbox-checked: #385aff;
	--checkbox-checked-bg: #0428d7;
	--font-size: 18px;
}

* {
	outline: none;
	box-sizing: border-box;
}

html {
	display: block;
	background: #151516;
	height: 100%;
	width: 100%;
	min-height: 100%;
	min-width: 260px;
	margin: 0;
	padding: 0;
}

body {
	display: block;
	text-align: center;
	min-width: 320px;
	margin: 0;
	color: #fff;
	font-family: Segoe UI,Segoe UI Variable Text,-apple-system,BlinkMacSystemFont,Helvetica Neue,Helvetica,Arial,sans-serif;
	line-height: 1.5;
	font-size: 15px;
}

h1 {
	margin: 12px 0 24px;
	font-size: 160%;
}

a {
	color: #fff;
}

h2, h3 {
	margin-top: 36px;
}

div {
	box-sizing: border-box;
}

input[readonly] {
	color: #ccc;
}

input::placeholder {
	color: #bbb;
	font-style: italic;
}

input[type="text"], input[type="url"], .input,
button, .button, select, textarea {
	border: 0;
	padding: 18px 24px;
	margin: 0 0 16px 0;
	font-size: var(--font-size);
	width: 100%;
	line-height: 1.5;
	background-color: var(--button);
	color: #fff;
	cursor: pointer;
	display: block;
	scroll-margin: 60px;
}

.layer input[type="text"] {
	padding: 8px 14px;
}


input:focus, input:hover, input.select,
select:focus, select:hover, select.select,
button:focus, button:hover, button.select {
	box-shadow: 0 0 12px #111;
	background-color: var(--theme-highlight);
	transform: scale(1.03);
}

textarea:focus, textarea.select {
	box-shadow: 0 0 12px #111;
	background-color: #eee;
	color: #333;
	transform: scale(1.03);
}

input[type="text"], input[type="url"], .input, select {
	background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23118599" viewBox="0 0 50 100" width="50" height="100"><polygon points="0,0 30,50 0,100" /></svg>');
	background-repeat: no-repeat;
	background-position: -50px center;
}

input[type="text"]:focus, input[type="url"]:focus, .input:focus, select:focus {
	background-position: -16px center;
	background-color: #eee;
	color: #333;
}

input[type="range"]:focus {
	background: orange;
}

input[readonly] {
	color: #aaa !important;
}

.copy-field {
	background-image: url(https://m3u-ip.com/checkout/media/copy.svg);
	background-position: 95% center;
	background-size: 30px;
	padding-right: 60px;
}

.copy-field.copied {
	background-image: url(https://m3u-ip.com/checkout/media/success.svg);
}

.RESPONSIVE_IMG {
	width: 100%;
	max-width: 400px;
	height: auto;
}

.LINK {
	text-decoration: underline;
	cursor: pointer;
}

.NOBR {
	white-space: nowrap;
}

.WORDBR {
	word-break: break-word;
}

.HR {
	clear: both;
	margin: 16px 6px;
	height: 1px;
	background: linear-gradient(to right, rgba(0, 0, 0, 0), var(--theme-light), rgba(0, 0, 0, 0));
}

.CLEAR {
	clear: both;
}

.ALIGNLEFT {
	text-align: left;
}

.ALIGNCENTER {
	text-align: center;
}

.CENTER {
	margin-left: auto;
	margin-right: auto;
	display: block;
	text-align: center;
}

.SMALL {
	font-size: 0.8em !important;
}

.BLOCK {
	display: block;
}

.highlight {
	color: var(--theme-light);
	font-weight: bold;
}

.success {
	color: #5f5;
}

.error {
	color: #f55;
}

.old-price {
	color: #fff;
	font-weight: 100;
	position: relative;
	text-decoration: none;
	padding: 0 10px;
	overflow: hidden;
	white-space: nowrap;
}

.old-price::before {
	/*content: '';
    width: 100%;
    position: absolute;
    height: 3px;
    background: white;
    transform: rotate(-10deg);
    top: 50%;*/
    content: '------------';
    position: absolute;
    transform: rotate(20deg);
    text-overflow: clip;
    z-index: 2;
    overflow: hidden;
    white-space: nowrap;
    color: #ff4b4b;
    top: 2px;
	left: 0;
    right: 0;
    font-weight: bold;
	line-height: 100%;
	height: 100%;
}

.discount {
	display: inline-block;
	padding: 2px 6px;
	background: #8d0a38;
	color: #fff;
	font-weight: bold;
}

.standard-table {
	margin: 24px 0;
	border-spacing: 0;
	width: 100%;
}

	.standard-table th {
		padding: 6px 4px;
		border-bottom: 2px solid var(--theme-light);
	}

	.standard-table td {
		padding: 6px 4px;
		border-bottom: 1px solid var(--theme-moderate);
	}

	.standard-table td.no-line {
		padding: 6px 4px 0;
		border-bottom: 0;
	}


#menu {
	display: flex;
	border-bottom: 1px solid var(--theme-light);
	padding: 8px 24px;
	justify-content: space-between;
	align-items: center;
	height: 56px;
	width: 100%;
	background: #1e1f22;
	position: fixed;
	z-index: 10;
	top: 0;
}

#menu h1 {
	font-size: 120%;
	line-height: 100%;
	margin: 0;
}

#logo {
	max-height: 40px;
	max-width: 120px;
	min-width: 82px;
	height: 100%;
	width: 30%;
	padding: 0 12px;
	margin: 0;
	align-content: center;
}

	#logo img {
		display: block;
		width: auto;
		height: auto;
		max-height: 100%;
		max-width: 100%;
		margin: auto;
	}

#lang_selector {
	padding: 0 0 0 12px;
	max-width: 40%;
}

	#lang_selector select {
		margin: 0;
		padding: 8px 14px;
		width: 100%;
	}


#burger_nav {
	display: none;
	min-width: 60px;
	height: 100%;
	padding: 0 12px;
	cursor: pointer;
	flex-shrink: 0;
	background: url('data:image/svg+xml;charset=UTF-8,<svg viewBox="0 0 24 24" fill="white" xmlns="http://www.w3.org/2000/svg"><rect x="3" y="6" width="18" height="2" rx="1"/><rect x="3" y="11" width="18" height="2" rx="1"/><rect x="3" y="16" width="18" height="2" rx="1"/></svg>') no-repeat 0 center;
	background-size: 40px;
}

#user_nav {
	display: block;
	min-width: 60px;
	height: 100%;
	margin: 0;
	flex-shrink: 0;
	padding: 0 12px;
	align-content: center;
	text-decoration: none;
}

	#user_nav svg {
		fill: white;
		vertical-align: middle;
		margin-right: 10px;
	}

#header_username {
	max-width: 220px;
	overflow: hidden;
	text-overflow: ellipsis;
}

#nav_container {
	float: left;
	width: 260px;
	padding: 12px 0;
	overflow: hidden;
	transition: all 0.3s;
	background: var(--bg-moderate);
	position: fixed;
	z-index: 8;
	top: 56px; bottom: 0; left: 0;
}

#nav {
	margin: 0;
	padding: 0;
	text-align: left;
}

#nav li {
	list-style: none;
}

#nav a {
	display: block;
	text-overflow: ellipsis;
	text-decoration: none;
	overflow: hidden;
	white-space: nowrap;
	padding: 18px 16px 18px 26px;
	cursor: pointer;
	transition: all 0.5s;
	box-sizing: content-box;
}

#nav svg {
	margin: -10px 12px -10px 0;
	fill: white;
}

#nav a:hover, #nav a:focus {
	color: var(--theme-light);
	text-shadow: 0px 0px 14px #fff;
}

#nav a:hover svg, #nav a:focus svg {
	fill: var(--theme-light);
}

#nav li.selected {
	color: #fff !important;
	background: var(--theme-highlight);
	text-shadow: 0 0 2px #000;
	box-shadow: 0 0 10px #000;
}

#nav li.selected a {
	color: #fff;
}

#main {
	padding: 10px 5%;
	margin: 80px 0 0 260px;
	max-width: 1200px;
}

.no-nav #main {
	margin-left: 0;
	max-width: unset;
}

.no-nav #nav_container {
	display: none;
}

#footer, #content, #header {
	margin: 0 auto;
	max-width: 960px;
	width: 100%;
}

#payment_buttons {
	max-width: 300px !important;
	margin: 0 auto;
}

.loader_container {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	height: 100%;
	width: 100%;
	background: rgba(76, 175, 80, 0.3);
}

	.loading .loader_container {
		display: block;
	}

	.loader {
		width: 76px;
		height: 76px;
		position: absolute;
		top: 50%;
		left: 50%;
		z-index: 3;
		transform: translate(-40px, -40px);
	}

	.loader:after {
		content: " ";
		display: block;
		width: 64px;
		height: 64px;
		border-radius: 50%;
		border: 6px solid #fff;
		border-color: #fff transparent #fff transparent;
		animation: lds-dual-ring 1.2s linear infinite;
	}
	@keyframes lds-dual-ring {
		0% {
			transform: rotate(0deg);
		}
		100% {
			transform: rotate(360deg);
		}
	}

.standard-form {
	margin: 24px auto 12px;
	max-width: 720px;
}


.radio-row input,
.radio-row label {
	cursor: pointer;
}

.checkbox-row {
	padding: 6px 0;
}

.form-row label {
	text-align: left;
	padding: 0;
	display: block;
}

.submit-row {
	margin-top: 24px;
	padding: 6px 0;
}

#newsletter_unsubscription,
.unsubscribe-form #newsletter_subscription {
	display: none;
}

.unsubscribe-form #newsletter_unsubscription {
	display: block;
}

.button {
	font-size: inherit;
	padding: 8px 12px;
	margin: 0 18px 20px 0;
	background: #e2e2ff url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 50 100" width="50" height="100"><polygon points="0,0 30,50 0,100" /></svg>') no-repeat -50px center;
	fill: var(--field-border);
	border: 2px solid #e2e2ff;
	border-radius: 10px;
	box-sizing: border-box;
	color: #333;
	transition: all 0.4s;
	transform: scale(1);
	cursor: pointer;
	text-decoration: none;
}

.button:focus, .button:hover, .button:active, .button.selected {
	border-color: #fff !important;
	box-shadow: 0 0 14px 0 var(--theme-highlight);
	background-position: -20px center;
	background-color: var(--theme-highlight);
	color: #fff;
	transform: scale(1.05);
}

.standard-table .button {
	margin: 0;
}

button.half {
	width: 44%;
	margin: 8px 3%;
	float: left;
}

.button.white {
	background: #ededed;
	color: #333;
	text-decoration: none;
	min-height: 45px;
	line-height: 30px;
}

	#pp_button img {
		vertical-align: middle;
	}

.big-button {
	padding: 24px 12px;
	margin: 32px auto;
	max-width: 540px;
	font-size: 120%;
}

.icon::before {
	content: '';
	width: 32px; height: 32px;
	vertical-align: middle;
	display: inline-block;
	margin: 0 12px 0 0;
	background: transparent no-repeat 50% 50%;
}

.premium-icon::before {
	background-image: url('data:image/svg+xml;charset=UTF-8,<svg viewBox="0 0 128 100" xmlns="http://www.w3.org/2000/svg"><path d="M59.07,96.03L1.15,29.77h38.01L59.07,96.03L59.07,96.03L59.07,96.03z M61.18,0.11L45.89,25.24H77.6L61.18,0.11 L61.18,0.11z M82.18,25.07L65.17,0h31.45L82.18,25.07L82.18,25.07z M41.65,25.31L56.55,0H24.61L41.65,25.31L41.65,25.31z M101.71,2.98L86.67,25.24h36.21L101.71,2.98L101.71,2.98z M22.26,2.98l15.81,22.26H0L22.26,2.98L22.26,2.98L22.26,2.98z M44.73,29.57h33.63L62.04,95.04L44.73,29.57L44.73,29.57L44.73,29.57z M64.91,96.04l57.23-66.27l-38.01,0L64.91,96.04L64.91,96.04 L64.91,96.04z"/></svg>') !important;
}

.account-icon::before {
	background-image: url('data:image/svg+xml;charset=UTF-8,<svg viewBox="0 0 24 24" fill="white" xmlns="http://www.w3.org/2000/svg"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 14.2c-2.5 0-4.71-1.28-6-3.22.03-1.99 4-3.08 6-3.08 1.99 0 5.97 1.09 6 3.08-1.29 1.94-3.5 3.22-6 3.22z"/></svg>') !important;
}

/*#navitem_discord a::before {
	background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" image-rendering="optimizeQuality" fill-rule="evenodd" clip-rule="evenodd" viewBox="0 0 512 365.467"><path fill="#fff" d="M378.186 365.028s-15.794-18.865-28.956-35.099c57.473-16.232 79.41-51.77 79.41-51.77-17.989 11.846-35.099 20.182-50.454 25.885-21.938 9.213-42.997 14.917-63.617 18.866-42.118 7.898-80.726 5.703-113.631-.438-25.008-4.827-46.506-11.407-64.494-18.867-10.091-3.947-21.059-8.774-32.027-14.917-1.316-.877-2.633-1.316-3.948-2.193-.877-.438-1.316-.878-1.755-.878-7.898-4.388-12.285-7.458-12.285-7.458s21.06 34.659 76.779 51.331c-13.163 16.673-29.395 35.977-29.395 35.977C36.854 362.395 0 299.218 0 299.218 0 159.263 63.177 45.633 63.177 45.633 126.354-1.311 186.022.005 186.022.005l4.388 5.264C111.439 27.645 75.461 62.305 75.461 62.305s9.653-5.265 25.886-12.285c46.945-20.621 84.236-25.885 99.592-27.64 2.633-.439 4.827-.878 7.458-.878 26.763-3.51 57.036-4.387 88.624-.878 41.68 4.826 86.43 17.111 132.058 41.68 0 0-34.66-32.906-109.244-55.281l6.143-7.019s60.105-1.317 122.844 45.628c0 0 63.178 113.631 63.178 253.585 0-.438-36.854 62.739-133.813 65.81l-.001.001zm-43.874-203.133c-25.006 0-44.75 21.498-44.75 48.262 0 26.763 20.182 48.26 44.75 48.26 25.008 0 44.752-21.497 44.752-48.26 0-26.764-20.182-48.262-44.752-48.262zm-160.135 0c-25.008 0-44.751 21.498-44.751 48.262 0 26.763 20.182 48.26 44.751 48.26 25.007 0 44.75-21.497 44.75-48.26.439-26.763-19.742-48.262-44.75-48.262z"/></svg>') no-repeat 50% 50%;
	background-size: 80%;
	margin: -10px 12px -10px 0;
}*/

/*button:hover, .button:hover {
	border-color: #ff4a14 !important;
	box-shadow: 0 0 14px 0 #ff6e19;
	animation: inputFocusHighlight 500ms ease-out infinite alternate;
	outline: none;
}*/

.faq-answers {
	max-width: 800px;
	text-align: left;
	margin: 0 auto;
	padding: 0 20px;
}

	.faq-answers li {
		padding: 4px 0;
	}


.arrow {
	border: solid black;
	border-width: 0 3px 3px 0;
	display: inline-block;
	padding: 3px;
}

.right {
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}

.left {
	transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
}

.up {
	transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
}

.down {
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}


/* Dropdown */
.dropdown-container, .centered-container {
	margin: 0 auto 16px;
	max-width: 960px;
	width: 100%;
	border-radius: 6px;
	scroll-margin: 90px;
}

	.dropdown-item {
		position: relative;
		z-index: 2;
		margin: 0;
		font-size: 130%;
		background: #2e2e2f;
		border-radius: 6px;
		cursor: pointer;
		color: #eee;
		padding: 12px 60px 12px 4%;
		text-align: left;
		transition: background 0.3s ease-in-out 0s;
	}

		.dropdown-item:before {
			content: '';
			position: absolute;
			right: 6%;
			top: 14px;
			border: solid #eee;
			border-width: 0 5px 5px 0;
			padding: 6px;
			transform: rotate(45deg);
			-webkit-transform: rotate(45deg);
			transition: all 0.3s ease-in-out 0s;
		}

		.dropdown-active .dropdown-item:before {
			transform: rotate(-135deg);
			-webkit-transform: rotate(225deg);
			top: 20px;
		}

	.dropdown-active .dropdown-item {
		background: var(--theme-moderate);
	}

	.dropdown-box {
		margin-top: -4px;
		border-radius: 0 0 12px 12px;
		padding: 5px 4% 12px;
		overflow: hidden;
		background: rgba(64, 64, 64, 0.6);
	}

	.dropdown-box.dropable {
		display: block !important;
		position: absolute;
		top: -1000000px;
		opacity: 0;
		transition: opacity 0.4s ease-in-out 0s;
	}

	.dropdown-active .dropdown-box {
		position: static;
		top: 0;
		opacity: 1;
		border: 1px solid var(--theme-highlight);
	}

	.can-open .dropdown-item:hover a {
		text-decoration: none;
	}

		.dropdown-container.can-open .dropdown-box {
			display: none;
		}

.layer-container {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 11;
	opacity: 0;
	transition: opacity 0.4s ease-in-out 0s;
}

.layer-container.active {
	display: block;
	opacity: 1;
}

	.layer-background {
		position: absolute;
		z-index: 1;
		background: #000;
		opacity: 0.6;
		height: 100%;
		width: 100%;
	}

	.blur-background {
		backdrop-filter: blur(6px);
	}

	.close-button {
		background: url(/images/close.png) no-repeat 0 0;
		background-size: cover;
		cursor: pointer;
		position: absolute;
		z-index: 11;
		top: -16px;
		right: -16px;
		height: 40px;
		width: 40px;
	}

	.layer {
		position: absolute;
		z-index: 10;
		left: 50%; top: 50%;
		transform: translate(-50%, -50%);
		min-height: 100px;
		max-height: 80%;
		width: 80%;
		max-width: 720px;
		padding: 20px;
		border-radius: 6px;
		box-shadow: 0 0 24px #ccc;
		background: var(--bg-moderate);

	}

	#layer_content {
		overflow: auto;
	}

#devices_list {
	overflow: auto;
}

.highlight-container, #payment_form {
	background: #001831;
	border-radius: 20px;
	padding: 22px 5%;
	border: 2px solid #fff;
}

#cookie_consent {
	display: none;
	opacity: 1;
}

#payment_form {
	margin-top: 32px;
	margin-bottom: 64px;
	position: relative;
}

/* Sponsors */
.gold-spon {
	font-size: 20px;
}

.spon-link {
	display: inline-block;
	text-decoration: none;
}

	.spon-link img, .spon-link svg {
		vertical-align: middle;
		margin: 0 6px 0 0;
	}

		.spon-link span {
			text-decoration: underline;
		}

.spon-benefits {
	margin: 0 0 0 20px;
	color: var(--theme-moderate);
}


body.rtl {
	direction: rtl;
	text-align: right;
}

body.rtl .ALIGNLEFT {
	text-align: right;
}

body.rtl .dropdown-item {
	padding-right: 80px;
}

.copy-button {
	width: 40px;
	margin: 0 auto;
	position: relative;
	cursor: pointer;
}

.copy-button:before {
	content: '\2705';
	display: inline-block;
	position: absolute;
	left: -30px;
	font-size: 24px;
	line-height: 30px;
	opacity: 0;
	transition: opacity 0.3s ease-in-out 0s;
}

.copied:before {
	opacity: 1 !important;
}

#koalaChatWrapper {
	position: fixed;
	z-index: 100;
	width: 80px;
	height: 80px;
	bottom: 20px;
	right: 20px;
	overflow: hidden;
}

#koalaChatWrapper.opened {
	width: 80%;
	min-width: 302px;
	max-width: 600px;
	height: 90%;
	min-height: 300px;
	max-height: 620px;
}

#widget-icon {
	padding: 5px;
	border-radius: 50%;
	box-shadow: 0 0 5px 0 #000000;
	background: var(--theme-light);
	cursor: pointer;
	width: 70px;
	height: 70px;
	position: absolute;
	right: 4px;
	bottom: 4px;
}

	#widget-icon img {
		margin: 5px;
	}


.nav-opened #nav_container {
	width: 260px;
	border-right: 6px solid var(--theme-dark);
}


/*
#product_title {
	position: fixed;
	z-index: 10;
	top: 80px; left: 0; right: 0;
	background: var(--theme-moderate);
}
*/

#product_title h1 {
	margin-bottom: 0;
}

.payment-form {
	border-top: 1px solid var(--theme-highlight);
	display: none;
	margin-top: 16px;
	padding-top: 16px;
}

	.payment-form h2 {
		text-align: center;
	}

#payment_accept_form, #crypto_select, #eth-tokens, #sol-tokens {
	display: none;
}

#crypto_payment {
	background-color: #fff;
	color: #333;
}

#payment_form.creditcard #creditcard_select,
#payment_form.mollie #mollie_select,
#payment_form.crypto #crypto_select,
#payment_form.paypal #paypal_select,
.payment-selected #payment_accept_form {
	display: block;
}

#payment_form.paypal #payment_accept_form {
	display: none;
}

#payment_form .radio-row label {
	padding: 12px 8px;
	margin: 8px 0;
	display: block;
	background: var(--theme-dark);
}

#payment_form .radio-row label:has(input[type="radio"]:checked) {
	background: var(--theme-moderate);
	transform: scale(1.03);
}

.crypto-icon {
	margin: 0 12px 0 0;
}

.flex-row {
	margin: 12px 0 24px;
}

.button-label {
	font-size: 2em;
}

.button-group {
	display: flex;
	gap: 12px;
	overflow: auto;
	scrollbar-width: none;
}

.flex-button {
	display: flex;
	padding: 12px;
	text-align: center;
	justify-content: center;
	align-items: center;
	flex: 1 1 0%;
	border-radius: 12px;
	border: 1px solid var(--theme-moderate);
	background: var(--theme-dark);
	color: #fff;
	cursor: pointer;
}

.flex-button.active {
	background: var(--theme-highlight);
}

#buy_now_button_addition {
	font-weight: bold;
	white-space: nowrap;
}


.icon-crypto::after {
	content: '';
	display: inline-block;
	width: 30px;
	height: 30px;
	vertical-align: middle;
	margin: -15px 0 -10px 10px;
}

.icon-usdt-erc::after,
.icon-usdt-sol::after {
	background: url(/checkout/media/usdt.svg) no-repeat 0 50%;
	background-size: 30px;
}

.icon-usdc-erc::after,
.icon-usdc-sol::after {
	background: url(/checkout/media/usdc.svg) no-repeat 0 50%;
	background-size: 30px;
}

.icon-eth-erc::after {
	background: url(/checkout/media/eth.svg) no-repeat 0 50%;
	background-size: 30px;
}

.icon-sol-sol::after {
	background: url(/checkout/media/sol.svg) no-repeat 0 50%;
	background-size: 30px;
}

.icon-btc-btc::after {
	background: url(/checkout/media/btc.svg) no-repeat 0 50%;
	background-size: 30px;
}

#special_event {
	padding: 16px 5%;
	border-radius: 16px;
	background: var(--theme-dark);
}

.google-play-icon::before {
	content: '';
	background-image: url('data:image/svg+xml;charset=UTF-8,<svg viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><title/><g data-name="Google Play" id="Google_Play"><path d="M10.09,8a1.94,1.94,0,0,1,1.28.28l13,7.39L21.08,19Zm-1,1A2.31,2.31,0,0,0,9,9.67V30.33a2.31,2.31,0,0,0,.09.67l11-11Zm12,12-11,11a1.88,1.88,0,0,0,1.28-.28l13-7.39Zm8.52-2.34-3.94-2.24L22.07,20l3.59,3.59,3.94-2.24C30.9,20.61,30.9,19.39,29.6,18.65Z"/></g></svg>');
	height: 40px;
	width: 40px;
	display: inline-block;
	vertical-align: middle;
}

#styles_area {
	width: 100%;
	min-height: 300px;
}

body .saved {
	background: green url(https://m3u-ip.com/checkout/media/success.svg) no-repeat;
	background-position: 95% center;
	background-size: 30px;
}


/* Products */
ul.advantages {
	margin: 12px auto;
	padding: 0;
	list-style: none;
	text-align: left;
}

.advantages li,
.checkmark {
	padding: 6px 0 6px 30px;
	background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 24 24"><path id="checkmark" class="cls-1" d="M1224,312a12,12,0,1,1,3.32-23.526l-1.08,1.788A10,10,0,1,0,1234,300a9.818,9.818,0,0,0-.59-3.353l1.27-2.108A11.992,11.992,0,0,1,1224,312Zm0.92-8.631a0.925,0.925,0,0,1-.22.355,0.889,0.889,0,0,1-.72.259,0.913,0.913,0,0,1-.94-0.655l-3.82-3.818a0.9,0.9,0,0,1,1.27-1.271l3.25,3.251,7.39-10.974a1,1,0,0,1,1.38-.385,1.051,1.051,0,0,1,.36,1.417Z" transform="translate(-1212 -288)"/></svg>') no-repeat 0 8px;
	background-size: 20px;
	text-align: left;
}

.standard-table td.checkmark {
	background-position: center center;
}

.centered-advantages {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.product-button {
	display: block;
	margin: 12px 0;
	padding: 18px 18px;
	background: var(--theme-highlight);
	text-shadow: 0 0 2px #000;
	text-align: center;
	text-decoration: none;
}

#device_selector {
	scroll-margin-top: 60px;
}

#products_list {
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

.no-device #products_list {
	display: none !important;
}

.product {
	display: flex;
	flex-direction: column;
	padding: 12px 20px;
	margin: 0 0 20px;
	width: 31%;
	max-width: 400px;
	background: var(--bg-moderate);
	border-radius: 8px;
	box-shadow: 0 0 12px #111;
	border: 1px solid var(--theme-highlight);
}

.top-products {
	justify-content: space-between !important;
}

.top-product {
	cursor: pointer;
	text-decoration: none;
	width: 48%;
	background: linear-gradient(var(--bg-moderate), var(--theme-moderate));
}

.top-product h3 {
	font-weight: normal;
	margin: 0;
	text-decoration: underline;
}

.top-product:hover {
	background: var(--theme-highlight);
}

.conditional {
	display: none;
}

.discount-product {

}

.discount-save {
	display: none;
	float: left;
	color: #fff;
	font-weight: bold;
	padding: 6px 8px;
	margin: 0 8px 8px 0;
	border-radius: 0 8px 0 8px;
	background: #8d0a38;
}

.discount-product .discount-save {
	display: block;
}

#main.android-apk .android-only,
#main.license .license-only {
	display: block;
}

#main.license .license-product,
.android-apk .android-product,
.play-store .play-store-product {
	display: flex;
}

.product h2 {
	text-align: center;
}

.price {
	text-align: center;
	font-weight: bold;
	font-size: 180%;
}

	.product .product-button {
		margin-top: auto;
	}

	.product p {
		margin: 12px 0 0;
	}


.free-product {
	width: 100%;
	max-width: unset;
	float: none;
}

#crypto_layer p {
	margin-bottom: 4px;
}

#message_container {

}

#refund_form {
	position: relative;
	padding: 20px;
}

#refund_impossible {
	position: absolute;
	top: 0; bottom: 0;
	left: 0; right: 0;
	z-index: 2;
	background: rgba(0, 0, 0, 0.85);
	display: flex;
	justify-content: center;
	align-items: center;
}

	#refund_impossible .hint {
		padding: 20px;
		text-align: center;
	}

		#refund_impossible a {
			white-space: nowrap;
		}

#confirm_understading_buttons {
	margin: auto;
}

#confirm_understading_buttons .button {
	width: 200px;
	max-width: 80%;
	min-width: 160px;
	display: inline-block;
	margin: 10px;
}

#confirm_understading_buttons .confirm-button {
	background-color: var(--theme-highlight);
	color: #fff;
}

#device_list button {
	width: auto;
	margin: 10px auto;
}

/* Form elements from app */
li.radio::before {
	content: "";
	width: 26px;
	height: 26px;
	border: 3px solid #fff;
	border-radius: 50%;
	display: inline-block;
	vertical-align: middle;
	box-sizing: border-box;
	margin: -3px 16px 0 0;
}

li.radio.checked::before {
	background: radial-gradient(#fff 4px, var(--radio-checked) 5px);
	box-shadow: 0 0 12px var(--radio-checked);
	border: 4px solid #fff;
}

.checkbox {
	padding-right: 84px !important;
	position: relative;
}

.checkbox .switch {
	width: 46px;
	height: 20px;
	position: absolute;
	right: 20px;
	top: 22px;
	border-radius: 10px;
	background: #aaa;
	opacity: 0.6;
	transition: all 0.3s;
	box-shadow: 0 0 7px #333;
}

	.switch .slider {
		height: 30px;
		width: 30px;
		border-radius: 15px;
		background: #c3c3c3;
		cursor: pointer;
		position: absolute;
		top: -5px;
		left: -5px;
		transition: all 0.3s;
		box-shadow: 0px 0px 7px #333;
	}

.checked .switch {
	opacity: 0.8;
	background: var(--checkbox-checked-bg);
}

	.checked .slider {
		left: 20px;
		background: var(--checkbox-checked);

	}


#companion_form.pm_url #pm_url,
#companion_form.pm_xtream #pm_xtream {
	display: block;
}

#pairing_code {
	font-size: 200%;
	padding: 20px;
	margin: 0;
	border-radius: 6px;
	border: 2px solid var(--theme-highlight);
	background: var(--theme-dark);
}

/* Media queries */

@media screen and (min-width: 1000px) {

	#main {
		padding: 10px 50px;
	}

}

@media screen and (max-width: 999px) {

	.min-640 {
		display: none;
	}

	#burger_nav {
		display: block;
	}

	#nav_container {
		width: 0;
	}

	#main {
		margin-left: auto;
	}

}

@media screen and (max-width: 400px) {
	#nav_container {
		top: 56px;
	}

	#menu {
		height: 56px;
		padding: 4px 16px 4px 16px;
	}

	#lang_selector select {
		padding: 8px;
		width: 64px;
	}
}


@media screen and (max-width: 800px) {

	#token_buttons .button-group {
		flex-direction: column;
	}

	#header_username {
		display: none;
	}

}

@media only screen and (max-width: 1400px) {
	.product {
		width: 48%;
		margin: 0 0 20px;
	}

	#products_list {
		max-width: 840px;
	}
}

@media only screen and (max-width: 600px) {
	.product {
		width: 100%;
		margin: 0 auto 20px;
	}

	.free-product {
		max-width: 400px !important;
	}
}