:root {
	--font-family-fallback: Arial;
	--font-family-regular: 'tipograf-regular', var(--font-family-fallback);
	--font-family-bold: 'tipograf-bold', var(--font-family-fallback);
	--font-family-black: 'tipograf-black', var(--font-family-fallback);
	--color-black: #000;
	--color-white: #fff;
	--color-bordo: #A50034;
	--coloe-grey: #D9DADB;
	--color-gold: #BE8E1A;
	--color-red: red;
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0);
	}
	40% {
		-webkit-transform: translateY(-20%);
		-moz-transform: translateY(-20%);
		-ms-transform: translateY(-20%);
		-o-transform: translateY(-20%);
		transform: translateY(-20%);
	}
	60% {
		-webkit-transform: translateY(-40%);
		-moz-transform: translateY(-40%);
		-ms-transform: translateY(-40%);
		-o-transform: translateY(-40%);
		transform: translateY(-40%);
	}
}

@font-face {
	font-family: 'tipograf-black';
	src: url('../fonts/fbtipografen-black-webfont.eot');
	src: url('../fonts/fbtipografen-black-webfont.eot?#iefix') format('embedded-opentype'),
	url('../fonts/fbtipografen-black-webfont.svg') format('svg'),
	url('../fonts/fbtipografen-black-webfont.woff') format('woff'),
	url('../fonts/fbtipografen-black-webfont.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'tipograf-bold';
	src: url('../fonts/fbtipografen-bold-webfont.eot');
	src: url('../fonts/fbtipografen-bold-webfont.eot?#iefix') format('embedded-opentype'),
	url('../fonts/fbtipografen-bold-webfont.svg') format('svg'),
	url('../fonts/fbtipografen-bold-webfont.woff') format('woff'),
	url('../fonts/fbtipografen-bold-webfont.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'tipograf-regular';
	src: url('../fonts/fbtipografen-regular-webfont.eot');
	src: url('../fonts/fbtipografen-regular-webfont.eot?#iefix') format('embedded-opentype'),
	url('../fonts/fbtipografen-regular-webfont.svg') format('svg'),
	url('../fonts/fbtipografen-regular-webfont.woff') format('woff'),
	url('../fonts/fbtipografen-regular-webfont.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

*,
body,
form,
div,
p {
	margin: 0;
	padding: 0;
	border: 0;
}

*:focus {
	outline: 0;
}

html,
body {
	width: 100%;
	height: 100%;
	direction: rtl;
	-webkit-text-size-adjust: 100%;
	font-size: 0;
	font-family: var(--font-family-regular);
	color: var(--color-black);
	background-color: var(--coloe-grey);
}

h1,
h2,
h3 {
	font-weight: normal;
}

button {
	cursor: pointer;
	background: transparent;
	font-family: var(--font-family-bold);
}

a {
	text-decoration: none;
	color: var(--color-black);
}

ul {
	list-style: none;
}

.eng {
	font-family: Helvetica, sans-serif !important;
}

.bold {
	font-family: var(--font-family-bold);
}

.bold .eng {
	font-weight: 600;
}

.extra-bold {
	font-family: var(--font-family-black);
}

.extra-bold .eng {
	font-weight: 900;
}

.bordo {
	color: var(--color-bordo);
}

.red {
	color: var(--color-red);
}

.white {
	color: var(--color-white);
}

.slick-slide {
	float: right;
}

.slick-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 0;
	z-index: 2;
}

.slick-arrow::before {
	font-size: 3vw;
	color: var(--color-white);
}

.slick-prev {
	right: 3vw;
}

.slick-next {
	left: 3vw;
}

.slick-prev::before {
	content: "<";
}

.slick-next::before {
	content: ">";
}

.custom-select {
	position: relative;
	width: 100%;
	max-width: 19.740vw;
}

.custom-select > button {
	width: 100%;
	padding: 0.677vw 1.302vw;
	font-size: 1.927vw;
	line-height: 1.927vw;
	border-radius: 0.781vw;
	color: var(--color-bordo);
	text-align: right;
	background: var(--color-white) url('../images/select-arrow-down.png') left 1.198vw center no-repeat;
	background-size: 1.198vw 1.042vw;
	box-shadow: 0 0.260vw 0.781vw #d9d7d7;
	direction: ltr;
}

.custom-select.custom-select--dropup > button {
	box-shadow: 0 -0.260vw 0.781vw #d9d7d7;
}

.custom-select.custom-select--active > button {
	position: relative;
	background-image: url('../images/select-arrow-up.png');
	z-index: 2;
}

.custom-select__dropdown {
	width: 100%;
	position: absolute;
	top: calc(100% - 1px);
	left: 0;
	background: var(--color-white);
	margin-top: -0.781vw;
	padding: 1.563vw 0 0.521vw;
	border-bottom-left-radius: 2.083vw;
	border-bottom-right-radius: 2.083vw;
	z-index: 1;
	box-shadow: 0 0.26vw 0.781vw #d9d7d7;
	max-height: 14vw;
	overflow-y: auto;
}

.custom-select--dropup .custom-select__dropdown {
	top: auto;
	bottom: calc(100% - 1px);
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	border-top-left-radius: 2.083vw;
	border-top-right-radius: 2.083vw;
	margin-top: 0;
	padding-top: 0;
	margin-bottom: -0.781vw;
	padding: 0.521vw 0 1.563vw;
}

.custom-select__dropdown > button {
	width: 100%;
	font-size: 1.927vw;
	line-height: 1.927vw;
	padding: 0.2vw 0;
	color: var(--color-black);
	direction: ltr;
}

.upgrade {
	display: none;
}

#wrapper {
	position: relative;
}

#header {
	position: relative;
	box-shadow: 0 0 0.781vw #000;
	z-index: 1;
	background: var(--color-black);
}

#header > #menu {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.885vw;
	height: 7vw;
}

#header > #menu > li > a,
#header > #menu > li > div {
	color: var(--color-white);
	font-size: 1.458vw;
	line-height: 1.198vw;
	display: inline-block;
}

#header > #menu > li > div {
	font-weight: bold;
	cursor: default;
}

#header > img {
	position: absolute;
	z-index: 1;
}

#hi-logo {
	width: 12.760vw;
	top: 1.458vw;
	right: 1.458vw;
}

#lg-logo {
	width: 7.948vw;
	top: 1.458vw;
	left: 1.458vw;
}

#credit-logo {
	width: 0.573vw;
	top: 13.021vw;
	left: 0.729vw;
}

#banners-wrapper .banners {
	width: 100%;
	height: 25.052vw;
	display: flex;
	align-items: center;
	position: relative;
}

.banners img {
	display: inline-block;
}

.banner-1 {
	background: transparent url('../images/banner-1-background.jpg') center center no-repeat;
	background-size: cover;
}

.banner-1 > .banner-content {
	display: inline-block;
	text-align: center;
	margin: 3vw 7vw 0 0;
}

.banner-1 > .banner-content > h1 > img {
	width: 21.458vw;
}

.banner-1 > .banner-content > h2 > span {
	color: var(--color-white);
	font-size: 3.594vw;
}

.banner-1 > .banner-content > h2 > span > img {
	width: 7.76vw;
	vertical-align: middle;
}

.banner-1 > .banner-content > img {
	width: 35.156vw;
	margin: 0.5vw 0 1.5vw;
}

.banner-1 > .banner-content > p {
	font-size: 1.667vw;
}

.banner-1 > .banner-content > p > span {
	display: inline-block;
	direction: ltr;
}

.banner-1 > .banner-content > p .eng {
	font-size: 1.3vw;
}

.banner-2 {
	background: transparent url('../images/banner-2-background.jpg') center center no-repeat;
	background-size: cover;
}

.banner-2 > .banner-content > h1 {
	text-align: center;
}

.banner-2 > .banner-content > h1 > img {
	width: 21.667vw;
}

.banner-2 > .banner-content > h2 > img {
	width: 24.531vw;
	display: block;
}

.banner-2 > .banner-content > h2 > img:last-child {
	margin-top: 1vw;
}

.banner-2 > .banner-content {
	margin-right: 19.792vw;
}

.banner-2 > .banner-content > img {
	width: 7.135vw;
	position: absolute;
	top: 28%;
	left: 49%;
	transform: translate(-50%, -50%);
}

.banner-2 > .banner-content > p {
	font-size: 1.8vw;
	line-height: 1.8vw;
	background-image: linear-gradient(70deg, #FDED42, #FB702D);
	border-radius: 3vw;
	margin-top: 2vw;
	padding: 0.35vw 0;
	text-align: center;
}

#content-wrapper {
	position: relative;
	background-color: var(--coloe-grey);
	text-align: center;
	display: block;
}

#content-wrapper > h2 {
	padding-top: 3vw;
	font-size: 2.604vw;
	line-height: 2.5vw;
}

#content-wrapper > h2 > span:first-child {
	font-size: 3.125vw;
	display: block;
	font-family: var(--font-family-bold);
	margin-bottom: 1vw;
}

#content-wrapper > h2 > .eng {
	font-size: 2vw;
}

#select-wrapper {
	position: relative;
	display: flex;
	justify-content: center;
	gap: 1vw;
	padding-top: 3vw;
}

#upgrade-btn {
	position: absolute;
	top: 3vw;
	bottom: 0;
	right: 0;
	margin: auto;
	width: 14.323vw;
	height: 4.323vw;
	background: var(--color-bordo);
	color: var(--color-white);
	font-size: 2.604vw;
	border-radius: 1.042vw 0 0 1.042vw;
	box-shadow: 0 0.156vw 0.313vw #00000029;
}

#upgrade-btn > img {
	vertical-align: middle;
	margin-right: 1vw;
	width: 1.875vw;
	-webkit-animation: bounce 2s infinite;
	-moz-animation: bounce 2s infinite;
	-ms-animation: bounce 2s infinite;
	-o-animation: bounce 2s infinite;
	animation: bounce 2s infinite;
}

#content {
	margin-bottom: 3vw;
}

.results {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 2vw 0 3vw;
	column-gap: 1vw;
	row-gap: 4vw;
}

.result-wrapper > * {
	padding-right: 2vw;
	padding-left: 2vw;
}

.tv {
	position: relative;
	background: var(--color-white);
	display: inline-block;
	border-radius: 0.938vw;
	padding-bottom: 2vw;
	width: calc((100% / 4) - 3vw / 4);
	opacity: 0;
}

.tv > .content-wrapper {
	padding: 1vw 2vw;
}

.tv > .content-wrapper > h2 {
	font-size: 1.354vw;
	direction: ltr;
	font-family: var(--font-family-bold);
}

.tv > .content-wrapper > h2 > .eng {
	font-size: 0.95vw;
	font-weight: bold;
}

.tv > .content-wrapper > .image-wrapper {
	position: relative;
	display: inline-block;
	margin: 0.5vw 0 1.5vw;
}

.tv > .content-wrapper > .image-wrapper > .tv-image {
	max-width: 100%;
	max-height: 10.885vw;
}

.tv > .content-wrapper > .image-wrapper > .warranty-badge {
	position: absolute;
	width: 4.948vw;
	bottom: 1.3vw;
	right: -1vw;
}

.tv > .content-wrapper > p {
	font-size: 1.146vw;
}

.tv > .content-wrapper > p .eng {
	font-size: 0.95vw;
}

.tv > .buttons-wrapper {
	position: absolute;
	width: 100%;
	left: 0;
	bottom: -1.302vw;
	display: flex;
	justify-content: center;
	gap: 1vw;
}

.tv > .buttons-wrapper > button,
.tv > .buttons-wrapper > a {
	box-sizing: border-box;
	font-size: 1.250vw;
	border-radius: 0.521vw;
	border: 0.156vw solid var(--color-bordo);
	padding: 0.521vw 1.146vw;
	display: block;
}

.tv > .buttons-wrapper > button {
	background: var(--color-white);
	color: var(--color-bordo);
}

.tv > .buttons-wrapper > a {
	background: var(--color-bordo);
	color: var(--color-white);
}

.results-text > h2 {
	font-size: 2.083vw;
	color: var(--color-bordo);
	margin-top: 2vw;
}

.results-text > h2 > span {
	display: block;
}

.results-text > h2 > span > span {
	display: inline-block;
}

.selected-size,
.selected-price {
	direction: ltr;
	display: inline-block;
}

.size-wrapper + .price-wrapper:before {
	content: "| ";
}

#upgrade-wrapper > h2 {
	font-size: 3.385vw;
	color: var(--color-bordo);
	padding: 1vw 0;
	background: transparent url('../images/upgrade-title-wrapper.png') center top no-repeat;
	background-size: cover;
	color: var(--color-white);
	line-height: 4vw;
}

#upgrade-wrapper > h2 > span {
	display: block;
	font-size: 5vw;
}

#upgrade-wrapper > .results-text > h2 {
	margin: 0;
	padding-top: 2vw;
	color: var(--color-white);
}

#upgrade-wrapper .tv > .buttons-wrapper > button {
	color: var(--color-black);
	border-color: var(--color-black);
}

#upgrade-wrapper .tv > .buttons-wrapper > a {
	background-color: var(--color-black);
	border-color: var(--color-black);
	color: var(--color-white);
}

#upgrade-wrapper {
	margin-top: 1vw;
	background-color: var(--color-bordo);
	border-radius: 1vw 1vw 0 0;
	overflow: hidden;
}

#footer-link {
	width: 33.906vw;
	height: 7.708vw;
	background: transparent url('../images/bottom-banner.png') center center no-repeat;
	background-size: cover;
	margin: 0 auto;
	display: flex;
	align-items: center;
}

#footer-link > span {
	font-size: 2.292vw;
	line-height: 2vw;
	color: var(--color-white);
	display: block;
	padding: 2vw 3vw 0 0;
	text-shadow: 0 0.156vw 0.313vw #00000040;
	text-align: center;
	-webkit-transition: transform .5s ease;
	-moz-transition: transform .5s ease;
	-ms-transition: transform .5s ease;
	-o-transition: transform .5s ease;
	transition: transform .5s ease;
}

#disclaimer {
	font-size: 1.667vw;
	background: var(--color-white);
	text-align: center;
	padding: 1vw 5vw;
}

#disclaimer .eng {
	font-size: 1.2vw;
}

#disclaimer:not(.eng) > span {
	display: inline-block;
	direction: ltr;
}

#popup {
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 100%;
	z-index: 1;
	display: none;
}

#popup-content {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

#features-wrapper {
	width: 100%;
	max-width: 55vw;
	background: var(--color-white);
	border-radius: 1.5vw;
	overflow: hidden;
}

#features-wrapper > h2 {
	font-size: 2.396vw;
	color: var(--color-white);
	background: #B8274E;
	font-family: var(--font-family-black);
	text-align: right;
	display: flex;
	align-items: center;
	padding: 0.365vw 4.688vw 0.365vw 0.990vw;
}

#features-wrapper > h2 > button {
	width: 1.823vw;
	height: 1.823vw;
	margin-right: auto;
}

#features-wrapper > h2 > button > img {
	width: 100%;
	height: 100%;
}

#popup-features .model {
	font-weight: 900;
	direction: ltr;
	display: inline-block;
}

#popup-features .eng {
	font-size: 1.1vw;
}

#popup-features > h3,
#popup-features > ul > li {
	font-size: 1.458vw;
	line-height: 1.6vw;
	text-align: right;
	padding: 0.5vw 0;
	margin: 0 4.688vw;
}

#popup-features > h3 {
	margin-top: 1vw;
	padding-bottom: 1vw;
}

#popup-features > h3,
#popup-features > ul > li:not(:last-child) {
	border-bottom: 0.104vw solid var(--color-black);
}

#popup-features > ul > li:last-child {
	margin-bottom: 1vw;
}

#mobile-menu-btn {
	position: absolute;
	top: 2.8vw;
	right: 2.458vw;
	display: none;
	z-index: 5;
}

#mobile-menu-btn > img {
	width: 4.106vw;
}

#mobile-close-menu-btn {
	display: none;
}

#mic-init-access-tool .mic-access-tool-general-button {
	bottom: 20% !important;
	background-color: #9b0d3b !important;
}

#mic-init-access-tool .mic-access-tool-general-button:focus,
#mic-init-access-tool .mic-access-tool-general-button:hover {
	color: #8b0000 !important;
	border-color: #8b0000 !important;
	background-color: #ffc !important;
}

#mic-init-access-tool .mic-access-tool-box {
	background-color: #9b0d3b !important;
}

#mic-init-access-tool > #mic-access-tool-box > .mic-toolbox-all-credits {
	background-color: #9b0d3b !important;
}

@media (min-width: 1024px) {
	.custom-select__dropdown > button:hover {
		color: var(--color-bordo);
	}

	#footer-link:hover > span {
		-webkit-transform: scale(1.05);
		-moz-transform: scale(1.05);
		-ms-transform: scale(1.05);
		-o-transform: scale(1.05);
		transform: scale(1.05);
	}

	#header > #menu > li:not(:last-child)::after {
		content: "|";
		padding-right: 0.885vw;
		color: var(--color-white);
		font-size: 1.458vw;
	}

	#header > #menu > li > div > span {
		border-bottom: 2px solid var(--color-white);
		padding: 0 0 0.3vw;
	}
}

@media (max-width: 1023px) {
	#mobile-menu-btn {
		display: block;
		top: 2vw;
	}

	#mobile-menu-btn > img {
		width: 6vw;
	}

	#mobile-close-menu-btn {
		position: absolute;
		top: 3vw;
		right: 4vw;
		font-size: 4vw;
		font-weight: bold;
		display: block;
		color: var(--color-black);
	}

	#header > #menu {
		position: fixed;
		top: 1vw;
		right: -100%;
		gap: 0.885vw;
		height: auto;
		background: var(--coloe-grey);
		flex-direction: column;
		width: 99%;
		padding: 10vw 0;
		z-index: 10;
		gap: 0;
		transition: right 1s;
	}

	#header {
		padding-top: 10vw;
	}

	#header > #menu.menu-active {
		right: 0;
	}

	#header > #menu > li {
		width: 35%;
		text-align: center;
		padding: 1.5vw 0;
	}

	#header > #menu > li > a,
	#header > #menu > li > div {
		color: var(--color-black);
		font-size: 5vw;
		line-height: normal;
	}

	#header > #menu > li:not(:last-child) {
		border-bottom: 2px solid var(--color-black);
	}

	#header > #menu > li > div {
		color: var(--color-bordo);
	}

	.slick-arrow {
		display: none !important;
	}

	#hi-logo {
		width: 17.76vw;
		top: 2.458vw;
		left: 16vw;
		right: auto;
	}

	#lg-logo {
		width: 9.948vw;
		top: 2.458vw;
		left: 2.458vw;
	}

	#credit-logo {
		width: 1vw;
		top: 22.021vw;
		left: 1vw;
	}

	#banners-wrapper .banners {
		height: 58.651vw;
	}

	#banners-wrapper .banner-1 {
		background-image: url('../images/banner-1-background-mobile.jpg');
		align-items: flex-start;
	}

	.banner-1 > .banner-content {
		margin: 4vw auto 0;
	}

	.banner-1 > .banner-content > h1 > img {
		width: 31.458vw;
		margin-bottom: 1vw;
	}

	.banner-1 > .banner-content > h2 > span {
		font-size: 4.594vw;
	}

	.banner-1 > .banner-content > h2 > span > img {
		width: 10vw;
	}

	.banner-1 > .banner-content > img {
		width: 41.156vw;
		margin: 0.5vw 0 1.5vw;
	}

	.banner-1 > .banner-content > p {
		font-size: 2vw;
	}

	.banner-1 > .banner-content > p .eng {
		font-size: 1.6vw;
	}

	.banner-2 {
		background-image: url('../images/banner-2-background-mobile.jpg');
	}

	.banner-2 > .banner-content > h1 > img {
		width: 27vw;
	}

	.banner-2 > .banner-content > h2 > img {
		width: 36vw;
	}

	.banner-2 > .banner-content > h2 > img:last-child {
		margin-top: 1vw;
	}

	.banner-2 > .banner-content {
		margin-right: 4vw;
		margin-top: 4vw;
	}

	.banner-2 > .banner-content > img {
		width: 9.135vw;
		top: 40%;
		left: 52%;
	}

	.banner-2 > .banner-content > p {
		font-size: 2.5vw;
		line-height: 2.5vw;
		border-radius: 3vw;
		margin-top: 3vw;
		padding: 0.35vw 0;
	}

	.tv {
		border-radius: 1.5vw;
		padding-bottom: 1.3vw;
		width: calc((100% / 3) - 4vw / 3);
	}

	#content-wrapper > h2 {
		padding-top: 5vw;
		font-size: 3.5vw;
		line-height: 3.5vw;
	}

	#content-wrapper > h2 > span:first-child {
		font-size: 4.5vw;
		margin-bottom: 1.5vw;
	}

	#content-wrapper > h2 > .eng {
		font-size: 2.7vw;
	}

	#select-wrapper {
		gap: 1vw;
		padding-top: 5vw;
	}

	#upgrade-btn {
		top: 5vw;
		width: 20vw;
		height: 7vw;
		font-size: 4vw;
		border-radius: 1.5vw 0 0 1.5vw;
	}

	#upgrade-btn > img {
		margin-right: 1.5vw;
		width: 2.5vw;
	}

	.custom-select {
		max-width: 24vw;
	}

	.custom-select > button {
		padding: 1.5vw 1.5vw;
		font-size: 2.5vw;
		line-height: 2.5vw;
		border-radius: 1.2vw;
		background-position: left 1.5vw center;
		background-size: 2.248vw 1.955vw;
	}

	.custom-select__dropdown {
		margin-top: -0.781vw;
		padding: 1.563vw 0 0.521vw;
		border-bottom-left-radius: 2.083vw;
		border-bottom-right-radius: 2.083vw;
		max-height: 21vw;
	}

	.custom-select--dropup .custom-select__dropdown {
		border-top-left-radius: 2.083vw;
		border-top-right-radius: 2.083vw;
		margin-bottom: -0.781vw;
		padding: 0.521vw 0 1.563vw;
	}

	.custom-select__dropdown > button {
		font-size: 2.5vw;
		line-height: 2.5vw;
		padding: 0.5vw 0;
	}

	.results-text > h2 {
		font-size: 3.5vw;
		margin-top: 3vw;
	}

	.results {
		padding: 3vw 0 5vw;
		column-gap: 2vw;
		row-gap: 6vw;
	}

	.tv > .content-wrapper > h2 {
		font-size: 3vw;
	}

	.tv > .content-wrapper > h2 > .eng {
		font-size: 2.2vw;
	}

	.tv > .content-wrapper > .image-wrapper {
		margin: 1vw 0 2.5vw;
	}

	.tv > .content-wrapper > .image-wrapper > .tv-image {
		max-height: 14.858vw;
	}

	.tv > .content-wrapper > .image-wrapper > .warranty-badge {
		width: 7vw;
		right: -1vw;
	}

	.tv > .content-wrapper > p {
		font-size: 2vw;
	}

	.tv > .content-wrapper > p > .eng {
		font-size: 1.6vw;
	}

	.tv > .buttons-wrapper {
		bottom: -2.2vw;
		gap: 1vw;
	}

	.tv > .buttons-wrapper > button, .tv > .buttons-wrapper > a {
		font-size: 1.8vw;
		border-radius: 0.9vw;
		border: 0.2vw solid var(--color-bordo);
		padding: 0.9vw 1.146vw;
	}

	.tv > .content-wrapper {
		padding: 2vw 2vw 3vw;
	}

	#features-wrapper {
		max-width: calc(100% - 4vw);
		border-radius: 2vw;
	}

	#upgrade-wrapper > h2 {
		font-size: 6vw;
		line-height: 7vw;
	}

	#footer-link {
		width: 63.636vw;
		height: 14.467vw;
	}

	#footer-link > span {
		font-size: 4vw;
		line-height: 4vw;
		padding: 4vw 7vw 0 0;
	}

	#features-wrapper > h2 {
		font-size: 4vw;
		padding: 2vw 6vw 2vw 3vw;
	}

	#features-wrapper > h2 > button {
		width: 4vw;
		height: 4vw;
	}

	#popup-features > h3,
	#popup-features > ul > li {
		font-size: 3vw;
		line-height: 3.5vw;
		padding: 1vw 0;
		margin: 0 5vw;
	}

	#popup-features > h3 {
		margin-top: 1vw;
		padding-bottom: 1vw;
	}

	#popup-features > h3,
	#popup-features > ul > li:not(:last-child) {
		border-bottom: 0.104vw solid var(--color-black);
	}

	#popup-features > ul > li:last-child {
		margin-bottom: 1vw;
	}

	.result-wrapper > * {
		padding-right: 2vw;
		padding-left: 2vw;
	}

	#disclaimer {
		font-size: 2.5vw;
		padding: 1.5vw 2vw;
	}

	#disclaimer .eng {
		font-size: 1.9vw;
	}

	#popup-features .eng {
		font-size: 2.2vw;
	}

	.tv > .content-wrapper > p .eng {
		font-size: 1.5vw;
	}

	#upgrade-wrapper {
		border-radius: 1.5vw 1.5vw 0 0;
	}

	#upgrade-wrapper > h2 > span {
		font-size: 8vw;
	}

	#upgrade-wrapper > .results-text > h2 {
		padding-top: 3vw;
	}
}

@media (max-width: 768px) {
	.tv {
		border-radius: 2vw;
		padding-bottom: 6vw;
		width: calc((100% / 2) - 2vw / 2);
	}

	#content {
		margin-bottom: 3vw;
	}


	#content-wrapper > h2 {
		padding-top: 5vw;
		font-size: 4vw;
		line-height: 4vw;
	}

	#content-wrapper > h2 > span:first-child {
		font-size: 5.5vw;
		margin-bottom: 2vw;
	}

	#content-wrapper > h2 > .eng {
		font-size: 3vw;
	}

	#select-wrapper {
		gap: 2vw;
		padding-top: 5vw;
		flex-direction: column;
		align-items: center;
	}

	#upgrade-btn {
		width: 25vw;
		height: 9vw;
		font-size: 5vw;
		border-radius: 2.5vw 0 0 2.5vw;
	}

	#upgrade-btn > img {
		margin-right: 2.5vw;
		width: 3.5vw;
	}

	.custom-select {
		max-width: 40vw;
	}

	.custom-select > button {
		padding: 2vw 3vw;
		font-size: 4vw;
		line-height: 4vw;
		border-radius: 2vw;
		background-position: left 3vw center;
		background-size: 2.995vw 2.604vw;
	}

	.custom-select__dropdown {
		margin-top: -0.781vw;
		padding: 1.563vw 0 0.521vw;
		border-bottom-left-radius: 2.083vw;
		border-bottom-right-radius: 2.083vw;
		max-height: 36vw;
	}

	.custom-select--dropup .custom-select__dropdown {
		border-top-left-radius: 2.083vw;
		border-top-right-radius: 2.083vw;
		margin-bottom: -0.781vw;
		padding: 0.521vw 0 1.563vw;
	}

	.custom-select__dropdown > button {
		font-size: 4vw;
		line-height: 4vw;
		padding: 1vw 0;
	}

	.results-text > h2 {
		font-size: 5vw;
		margin-top: 5vw;
	}

	.results {
		padding: 5vw 0 9vw;
		row-gap: 10vw;
	}

	.tv > .content-wrapper > h2 {
		font-size: 5vw;
	}

	.tv > .content-wrapper > h2 > .eng {
		font-size: 3.5vw;
	}

	.tv > .content-wrapper > .image-wrapper {
		margin: 1vw 0 4vw;
	}

	.tv > .content-wrapper > .image-wrapper > .tv-image {
		max-height: 24.089vw;
	}

	.tv > .content-wrapper > .image-wrapper > .warranty-badge {
		width: 10vw;
		right: 0;
	}

	.tv > .content-wrapper > p {
		font-size: 3.5vw;
	}

	.tv > .content-wrapper > p > .eng {
		font-size: 2.8vw;
	}

	.tv > .buttons-wrapper {
		bottom: -3.5vw;
		gap: 2vw;
	}

	.tv > .buttons-wrapper > button, .tv > .buttons-wrapper > a {
		font-size: 3vw;
		border-radius: 1.3vw;
		border: 0.3vw solid var(--color-bordo);
		padding: 1.5vw 1.5vw;
	}

	.tv > .content-wrapper {
		padding: 3vw;
	}

	#upgrade-wrapper > h2 {
		font-size: 8vw;
		padding: 3vw;
		line-height: 9vw;
	}

	#footer-link {
		width: 84.766vw;
		height: 19.271vw;
	}

	#footer-link > span {
		font-size: 5.5vw;
		line-height: 5.5vw;
		padding: 5vw 8vw 0 0;
	}
	
	#popup-features > h3,
	#popup-features > ul > li {
		font-size: 4vw;
		line-height: 4.5vw;
		padding: 1.5vw 0;
		margin: 0 5vw;
	}

	#popup-features > h3 {
		margin-top: 2vw;
		padding-bottom: 2vw;
	}

	#popup-features > h3,
	#popup-features > ul > li:not(:last-child) {
		border-bottom: 0.104vw solid var(--color-black);
	}

	#popup-features > ul > li:last-child {
		margin-bottom: 1vw;
	}

	.result-wrapper > * {
		padding-right: 2vw;
		padding-left: 2vw;
	}

	#disclaimer {
		font-size: 3.5vw;
		padding: 2vw 2vw;
	}

	#disclaimer .eng {
		font-size: 2.7vw;
	}

	#popup-features .eng {
		font-size: 2.8vw;
	}

	.tv > .content-wrapper > p .eng {
		font-size: 2.6vw;
	}

	#upgrade-wrapper > h2 > span {
		font-size: 10vw;
	}

	#upgrade-wrapper > .results-text > h2 {
		padding-top: 5vw;
	}
}

@media (max-width: 480px) {
	#header {
		padding-top: 15vw;
	}

	#lg-logo {
		width: 20vw;
		top: 2.458vw;
		left: 2.458vw;
	}

	#hi-logo {
		width: 34vw;
		top: 3vw;
		left: 29vw;
	}

	#mobile-menu-btn > img {
		width: 10vw;
	}

	#mobile-menu-btn {
		top: 2.5vw;
	}

	.tv {
		border-radius: 4vw;
		padding-bottom: 10vw;
		width: 100%;
	}
	
	#content {
		margin-bottom: 10vw;
	}

	#content-wrapper > h2 {
		padding-top: 7vw;
		font-size: 7vw;
		line-height: 7vw;
		padding-left: 2vw;
		padding-right: 2vw;
	}

	#content-wrapper > h2 > span:first-child {
		font-size: 8vw;
		line-height: 7vw;
		margin-bottom: 4vw;
	}

	#content-wrapper > h2 > .eng {
		font-size: 5.2vw;
	}

	#select-wrapper {
		gap: 2vw;
		padding-top: 7vw;
		flex-direction: column;
		align-items: center;
	}

	#upgrade-btn {
		width: 75vw;
		height: auto;
		font-size: 7vw;
		line-height: 7vw;
		border-radius: 2.5vw;
		position: static;
		padding: 4vw;
	}

	#upgrade-btn > img {
		margin-right: 3vw;
		width: 5vw;
	}

	.custom-select {
		max-width: 75vw;
	}

	.custom-select > button {
		padding: 4vw 4vw;
		font-size: 7vw;
		line-height: 7vw;
		border-radius: 2vw;
		background-position: left 4vw center;
		background-size: 4.792vw 4.167vw;
	}

	.custom-select__dropdown {
		margin-top: -0.781vw;
		padding: 1.563vw 0 0.521vw;
		border-bottom-left-radius: 2.083vw;
		border-bottom-right-radius: 2.083vw;
		max-height: 66vw;
	}

	.custom-select--dropup .custom-select__dropdown {
		border-top-left-radius: 2.083vw;
		border-top-right-radius: 2.083vw;
		margin-bottom: -0.781vw;
		padding: 0.521vw 0 1.563vw;
	}

	.custom-select__dropdown > button {
		font-size: 7vw;
		line-height: 7vw;
		padding: 2vw 0;
	}

	.results-text > h2 {
		font-size: 8vw;
		margin-top: 6vw;
	}

	.results {
		grid-template-columns: repeat(1, 1fr);
		padding: 7vw 0 20vw;
		row-gap: 20vw;
	}

	.tv > .content-wrapper > h2 {
		font-size: 10vw;
	}

	.tv > .content-wrapper > h2 > .eng {
		font-size: 7.4vw;
	}

	.tv > .content-wrapper > .image-wrapper {
		margin-bottom: 7vw;
	}

	.tv > .content-wrapper > .image-wrapper > .tv-image {
		max-height: 60.938vw;
	}

	.tv > .content-wrapper > .image-wrapper > .warranty-badge {
		width: 22vw;
		right: 0;
	}

	.tv > .content-wrapper > p {
		font-size: 8.5vw;
	}

	.tv > .content-wrapper > p > .eng {
		font-size: 6.5vw;
	}

	.tv > .buttons-wrapper {
		bottom: -7.5vw;
		gap: 2vw;
	}

	.tv > .buttons-wrapper > button, .tv > .buttons-wrapper > a {
		font-size: 7vw;
		border-radius: 2.5vw;
		border: 0.6vw solid var(--color-bordo);
		padding: 2.5vw 2.5vw;
	}

	.tv > .content-wrapper {
		padding: 5vw;
	}

	#upgrade-wrapper > h2 {
		font-size: 9vw;
		padding: 5vw;
		line-height: 10vw;
	}

	#footer-link {
		width: 84.766vw;
		height: 19.271vw;
	}

	#footer-link > span {
		font-size: 5.5vw;
		line-height: 5.5vw;
		padding: 5.5vw 8vw 0 0;
	}

	.results-text > h2 > span:first-child {
		display: block;
	}

	.size-wrapper + .price-wrapper:before {
		display: none;
	}

	#popup-features > h3,
	#popup-features > ul > li {
		font-size: 6vw;
		line-height: 7vw;
		padding: 2.5vw 0;
		margin: 0 6vw;
	}

	#popup-features > h3 {
		margin-top: 2vw;
		padding-bottom: 2vw;
	}

	#popup-features > h3,
	#popup-features > ul > li:not(:last-child) {
		border-bottom: 0.104vw solid var(--color-black);
	}

	#popup-features > ul > li:last-child {
		margin-bottom: 1vw;
	}

	.result-wrapper > * {
		padding-right: 2vw;
		padding-left: 2vw;
	}

	#disclaimer {
		font-size: 5vw;
		padding: 3vw 2vw;
	}

	#disclaimer .eng {
		font-size: 4vw;
	}

	#popup-features .eng {
		font-size: 4.3vw;
	}

	.tv > .content-wrapper > p .eng {
		font-size: 6.2vw;
	}

	#features-wrapper > h2 {
		font-size: 9vw;
		padding: 2vw 6vw 2vw 3vw;
	}

	#features-wrapper > h2 > button {
		width: 7vw;
		height: 7vw;
	}

	#upgrade-wrapper {
		border-radius: 3vw 3vw 0 0;
	}

	#upgrade-wrapper > h2 > span {
		font-size: 12vw;
	}

	#upgrade-wrapper > .results-text > h2 {
		padding-top: 7vw;
	}

	.banner-1 > .banner-content > p .eng {
		font-size: 1.5vw;
	}
}