

/*
==========================
	Base Style
==========================
*/

html, * {
    box-sizing: border-box;
	scroll-behavior: smooth;
}

body {
	font-family: "Roboto", sans-serif;
	line-height: 1.5;
	color: #333333;
	font-size: 14px;
	margin: 0;
}

p {
	margin: 0;
}

a {
	transition: 0.5s;
	text-decoration: none;
	cursor: pointer;
	color: #999;
}
a:hover {
	color: #f90;
}

h1, h2, h3, h4 {
	font-weight: 900;
	margin: 0;
    line-height: 1.1;
}

h1 {
	display: flex;
	align-items: center;
    margin: 40px auto;
    font-size: 30px;
    font-weight: 400;
    white-space: nowrap;
}

h1:before,
h1:after {
	content: "";
	height: 2px;
    background: #d6d6d6;
    width: 50%;
}
h1:before {
	margin-right: 3%;
}
h1:after {
	margin-left: 3%;
}

h2 {
	font-weight: 900;
	font-size: 30px;
	display: flex;
    flex-direction: column;
}

h2:before {
	content: "";
	height: .1em;
	background: #fff;
	margin-bottom: .1em;
}

h2:after {
	content: "";
	height: .1em;
	background: #fff;
}

h3 {
	font-size: 35px;
	font-weight: 300;
	margin: 10px 0;
}

h4 {
	font-size: 24px;
	font-weight: 300;
}

h5 {
	font-size: 16px;
	font-weight: 400;
	color: #333;
	margin: 0 0 13px 0;
}

ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

button, input, select, textarea {
	font-size: 1rem;
	font-family: inherit;
	outline: 0;
}

input,
select,
textarea {
	border: 1px solid #ececec;
	border-radius: 0.25rem;
    line-height: 1.25;
	padding: 8px 12px;
}
input:focus,
select:focus {
	color: #455;
    background: whitesmoke;
}

input::placeholder,
textarea::placeholder {
	color: #aaa;
}

select {
    appearance: none;
    background: url(down.png) 99% 50% no-repeat;
	padding-right: 35px;
}

img {
	object-fit: contain;
}

iframe {
	border: 0;
}

table {
	border-collapse: collapse;
}

hr {
	border: 1px solid #ccc;
    border-width: 1px 0 0 0;
    margin: 20px 0;
}

progress {
	height: 6px;
	border: 0;
	border-radius: 1em;
	margin: 0.6em auto;
    vertical-align: middle;
}

progress[value]::-webkit-progress-bar {
	background: #eee;
	border-radius: 1em;
}

progress::-webkit-progress-value {
	background: #383;
	border-radius: 1em;
}

progress::-moz-progress-bar {
	background: #383;
	border-radius: 1em;
}


/*
==========================
	Global Theme
==========================
*/

.page {
	width: 90%;
	max-width: 1600px;
	margin: 40px auto;
}

section.gray {
	background: #f5f5f5;
	overflow: hidden;
}

.btn {
    display: inline-block;
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    border: 1px solid transparent;
    padding: 8px 12px;
    line-height: 1.25;
    border-radius: 0.25rem;
	text-decoration: none;
    transition: all .15s ease-in-out;
    cursor: pointer;
}

.btn.primary {
    background: #f90;
    color: #fff;
    font-weight: 700;
    border: 1px solid #f90;
}
.btn.primary:hover {
	background: #fff;
	color: #f90;
}

.btn.secondary {
	color: #fff;
	background: #6b7;
	font-weight: 700;
	border: 1px solid transparent;
}
.btn.secondary:hover {
    background: #fff;
    color: #f90;
	box-shadow: 0 0 10px #0003;
}

.btn.gray {
	color: #fff;
	background: #ddd;
	font-weight: 700;
	border: 1px solid transparent;
}
.btn.gray:hover {
    background: #fff;
    color: #f90;
	box-shadow: 0 0 10px #0003;
}

.btn.arrow {
	border: 0;
	padding: 10px 15px;
}
.btn.arrow:after {
	content: "\f061";
	font: 15px FontAwesome;
	margin-left: 5px;
}

.btn.round {
	background: #f90;
    color: #fff;
	border: 1px solid #f90;
	font-size: 12px;
    font-weight: 400;
	padding: 6px 10px;
    border-radius: 20px;
}
.btn.round:hover {
	background: #fff;
	color: #f90;
}


.input-group {
	display: flex;
}
.input-group input {
	border-right: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.input-group button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}


.btn.fa-search {
    border-color: #eee;
    background: whitesmoke;
    color: #aaa;
    padding: 14px;
}

.btn.fa-search:hover {
    color: #fff;
    background: #f90;
	border-color: #f90;
}

.btn.center {
	display: block;
    width: fit-content;
	padding: 8px 20px;
	margin: auto;
}

input:required {
	background-image: url("req.gif");
	background-repeat: no-repeat;
	background-position: right top;
}

.mobile {
	display: none;
}

:target {
	scroll-margin-top: 250px; 
}



/*
==========================
	Popups
==========================
*/

.blur {
	display: none;
	align-items: center;
    justify-content: center;
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100000;
    background: #0003;
    backdrop-filter: blur( 3px );
	animation: fadein .5s 1s both;
}
.blur.ager {
    background: #3008;
    backdrop-filter: blur( 10px );
	animation: none;
}
.blur.login {
	animation: slide .5s;
}
.blur.show {
	backdrop-filter: blur( 2px );
	display: flex;
}

.popup {
	width: 90vw;
	min-width: 300px;
	max-width: 1000px;
	padding: 40px;
	margin: 40px;	
	background: #fff;
}
.popup h4 {
	margin-bottom: 15px;
}

.popup .btn {
	margin: 15px 5px 0 0;
}

.popup p {
	padding: 10px 0;
}

.popup li {
	display: block;
	list-style: none;
	padding: 10px 0;
}
.popup li:before {
	content: "\f00c";
	font: 15px FontAwesome;
}

.popup label {
	display: block;
	padding: 10px 0 0 0;
}

.popup.login {
	display: flex;
	padding: 0;
}
.popup aside {
	background: url('login.jpg') no-repeat center/cover;
    max-width: 50%;
	color: #fff;
	padding: 30px;
}
.popup section {
	padding: 30px;
	overflow: hidden;
}


@keyframes fadein {
	from { opacity:0; }
}

@keyframes slide {
	from { height:120%; }
}




/*
==========================
	Header & Menu
==========================
*/

#header-msg {
	padding: 13px 0;
    background: whitesmoke;
	text-align: center;
	font-size: 16px;
    font-weight: 500;
    color: #dc4b3e;
	text-transform: uppercase;
}


#header {
	position: sticky;
    top: -8px;
	z-index: 5000;
	padding: 20px 0;
	background: #fff;
	height: 95px;
}

#header form {
	max-width: 1600px;
	margin: 5px auto 0 auto;
	display: flex;
	justify-content: space-around;
    align-items: center;
    line-height: 0;
}

#header .logo {
	display: block;
	background: url("logo.svg") 0 50% no-repeat;
	height: 50px;
	margin: 0 10px;
	flex: 0 200px;
}

#header .input-group {
	width: 55%;
}
#header input {
	font-size: 14px;
    padding: 14px;
	width: 100%;
    background: whitesmoke;
    color: #a5a5a5;
}

#menu-btn {
	font-size: 27px;
	color: #03a9f4;
    padding: 10px;
	text-align: center;
	flex: 0 45px;
}
#menu-btn.open:before {
	content: "\f00d" ;
}
#menu-btn:hover {
	color: #f90;
}

.user a {
	color: #333;
	padding: 5px;
	white-space: nowrap;
	font-size: 1rem;
}
.user a:before {
	font: 20px FontAwesome;
}
.user a:hover {
	color: #f43;
}
.user .name:before {
	content: "\f007";
}
.user .login:before {
	content: "\f090";
}
.user .setup:before {
	content: "\f013";
}
.user .logout:before {
	content: "\f090";
}

#header-line {
    position: sticky;
    top: 86.5px;
	border-bottom: 2px solid #fa1;
	z-index: 1000;
}



#menu {
	position: relative;
	max-width: 1600px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
    flex-wrap: wrap;
    height: 53px;
	background: #fff;
}

#menu li {
	position: relative;
}

#menu li.hide {
	height: 0;
    overflow: hidden;
}

#menu a {
	display: block;
	font-size: 15px;
	padding: 15px;
	text-transform: uppercase;
	color: #333;
	white-space: nowrap;
	text-align: left;
}
#menu a:hover {
	color: #f90;
}

#menu li.sub > a:after {
	font: 15px FontAwesome;
	content: "\f107";
}

#menu li ul {
	max-height: 0;
	position: absolute;
	right: 0;
	z-index: 1024;
	overflow: hidden scroll;
	background: #fff;
	border-top: 2px solid #fa1;
	padding: 0 20px;
	box-shadow: 0 10px 20px 0 #89c3;
}
#menu li:nth-child(1) ul,
#menu li:nth-child(2) ul {
	right: auto;
}
#menu li.open ul {
	display: block;
	max-height: 500px;
	transition: .5s;
	visibility: visible;
}

#menu li li a {
	padding: 1em 0;
	color: #777;
	text-transform: none;
}
#menu li li a:hover {
	transform: translateX( 6px );
}

#menu li li {
	border-bottom: 1px solid #f7f7f7;
}
#menu li li:last-child {
	border-bottom: 0;
}


#menu ul {
	scrollbar-width: thin;
	scrollbar-color: #fa1 #d9d7d7;
}
#menu ul::-webkit-scrollbar {
	width: 5px;
}
#menu ul::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 16px #d9d7d7;
	border-radius: 0px;
}
#menu ul::-webkit-scrollbar-thumb {
	background: #fa1;
	border-radius: 0;
}



/*
==========================
	Subscribe & Footer
==========================
*/

#subscribe {
	background: url("hr.png") center repeat-x;
	margin: 60px 0;
	display: flex;
	justify-content: center;
}
#subscribe * {
	margin: 8px;
}

#subscribe form {
	display: flex;
	flex: 1;
	max-width: 1100px;
	align-items: center;
	flex-wrap: wrap;
	padding: 15px 20px;
	background: #fff;
	margin: 0 5%;
	box-shadow: 0 0 30px 0 #89c3;
	line-height: 4;
}
#subscribe div {
	flex: 1;
	margin: 0;
	display: flex;
	justify-content: space-evenly;
}

#subscribe input {
	flex: 0 1 500px;
	width: 120px;
}


#footer {
	display: flex;
	justify-content: space-between;
    flex-wrap: wrap;
	max-width: 1140px;
	margin: 40px auto;
	padding: 0 30px;
}
#footer div {
	flex: 1;
	margin-bottom: 30px;
}

#footer div.about {
	flex: 0 1 270px;
	color: #999;
	padding: 0 10px;
}

#footer div.about p {
	width: 230px;
}

#footer h4 {
	padding: 10px 0;
}

#footer a {
	display: block;
	padding: 7px 0;
	white-space: nowrap;
	color: #999;
}
#footer a:hover {
	color: #f90;
	text-decoration: underline;
}


#copyright {
	background: #282828;
}
#copyright div {
	padding: 25px 30px;
	max-width: 1140px;
	margin: 0 auto;

}
#copyright * {
    color: #f3f7f8;
	font-size: 16px;
}


a.scrollUp {
	display: none;
	position: fixed;
	z-index: 999;
	bottom: 50px;
	right: 20px;
	font-size: 25px;
	background: #555;
	color: #fff;
	border-radius: 100%;
	padding: 12px 16px;
}

a.scrollUp:hover {
	background: #f90;
}





/*
=============================
	Responsive Main Theme
=============================
*/

@media( max-width: 900px ) {
	
	.mobile {
		display: block;
	}
	.deskt {
		display: none;
	}
	
	h1, h2, h3, h4 {
		font-size: 20px;
	}
	
	.btn {
		font-size: 14px;
	}	
	
	#header .logo {
		flex: 0 45px;
	}
    
	#menu {
		display: block;
		height: auto;
		max-height: 0;
		overflow: hidden;
		direction: rtl;
		transition: 0.5s;
	}
	
	#menu a:after {
		float: right;
		scale: 1.7;
	}
	
	#menu.open {
		max-height: 1500px;
	}

	#menu li.open ul {
		max-height: 300px;
	}

	#menu li.open a:after {
		transform: rotate( 180deg );
		transition: 0.5s;
	}
	
	#menu li {
		border-bottom: 1px solid #f7f7f7;
		height: auto !important;
	}
	
	#menu li:last-child {
		border-bottom: 0;
	}

	#menu li ul {
		position: relative;
		border: 0;
		background: whitesmoke;
		box-shadow: none;
		padding: 0 15px;
		transition: .5s;
	}
	
	#menu li li {
		border-bottom: 1px solid #e7e7e7;
	}
	
	#menu li.sub > a {
		pointer-events: none;
	}

	#footer div {
		flex: 0 0 50%;
		text-align: center;
	}
	#footer div.about {
		flex: 1 100%;
	}
	#footer div.about p {
		width: 70%;
		margin: auto;
	}	
	
	#copyright {
		text-align: center;
	}
	
}

@media( max-width: 400px ) {
	
	#footer div {
		flex: 0 0 100%;
	}
	
}





/*
=========================
	Owl Carousel Theme
=========================
*/

.owl-nav {
	margin-top: -45px;
    position: absolute;
    top: 50%;
	left: 0;
    width: 100%;
	font: 40px FontAwesome;
}
.owl-nav div {
	position: absolute;
	padding: 30px;
	transition: .5s;
}

.owl-prev {
	left: 0;
}
.owl-prev:before {
	content: "\f104";
}

.owl-next {
	right: 0;
}
.owl-next:before {
	content: "\f105";
}


.slider .owl-nav div {
	text-shadow: 0 0 5px #0003;
	color: #fff;
}

.trending .owl-nav div {
	margin: 0 -4%;
    padding: 12px 20px;
	background: #fff;
	border-radius: 50%;
	font-size: 26px;
}

.trending .owl-nav div:hover {
	background: #f90;
	color: #fff;
}

.trending .owl-stage-outer {
    margin: -30px -20px;
    padding: 30px  20px;
}

.best .owl-nav {
	top: 41%;
}

.best .owl-nav div {
	font-size: 25px;
	padding: 10px 16px;
	background: #fff;
	opacity: .5;
}

.best .owl-nav div:hover {
	opacity: 1;
}


.active .fadeInDown {
	animation: fadeInDown 1s .2s both;
}
.active .fadeInUp {
	animation: fadeInUp 1s .2s both;
}

@keyframes fadeInDown {
	from {
	  opacity: 0;
	  transform: translateY( -100% );
	}
	to {
	  opacity: 1;
	  transform: none;
	}
}

@keyframes fadeInUp {
	from {
	  opacity: 0;
	  transform: translateY( 100% );
	}
	to {
	  opacity: 1;
	  transform: none;
	}
}



/*
=========================
	#1 Slider
=========================
*/

.slider {
	background: linear-gradient( 90deg, #51abff, #00f2ff );
	/* background: linear-gradient( 180deg, #b1a5d1, #b4a8d4 ); */
}

.card {
	max-width: 1140px;
	margin: auto;
    padding: 70px;
	display: flex;
}

.card div {
	color: #fff;
	padding: 0 10px;
}

.card p,
.card h3 {
	margin: 20px 0;
}

.card img {
	width: 40vw !important;
	max-width: 400px;
	align-self: center;
}


@media( max-width: 600px ) {
	
	.owl-nav {
		font-size: 20px;
	}
	
	.s1 .card {
		flex-direction: column-reverse;
		padding: 30px;
		text-align: center;
	}
	
	.s1 .card h3 {
		margin: 10px 0;
	}	
	
	.s1 .card p {
		display: none;
	}	
	
}









/*
=========================
	Sidebar
=========================
*/

.sidebar {
	display: flex;
    align-items: flex-start;
	grid-gap: 50px 30px;
}

.sidebar > * {
	width: 100%;
}

.sidebar > :first-child {
	flex: 0 0 280px;
}

.sidebar h5 {
	font-weight: 500;
}

.sidebar .block {
	position: relative;
	border: 1px solid #e5e5e5;
	padding: 25px;
	margin-bottom: 40px;
	color: #666;
    font-weight: 300;
    font-size: 14px;
}

.tree a {
	color: #666;
	display: list-item;
	margin-left: 10px;
    padding: 6px 0 6px 8px;
}
.tree a:hover {
    color: #f90;
	padding-left: 13px;
	margin-right: -5px;
}

.tree a.act {
	color: #f90;
}
.tree a.sub {
	margin-left: 20px;
}

.tree a::marker {
	font: 15px FontAwesome;
	content: "\f101";
}
.tree a.sub::marker {
	content: "\f105";
}


.tag input,
.brand input {
	position: absolute;
	left: 20px;
}

.tag label,
.brand label{
	display: block;
	padding: 5px 0 5px 20px;
	cursor: pointer;
	transition: .5s;
}

.tag label:hover,
.brand label:hover {
    color: #f90;
	margin: 0 -5px 0 5px;
}

.tag h5 {
	margin: 0 0 4px 0;
}
.tag div {
	margin-bottom: 17px;
}
.tag div:last-child {
	margin: 0;
}

.tag b {
	font-weight: 500;
}


@media( max-width: 750px ) {
	.s1.sidebar {
		flex-direction: column-reverse;
	}
}

@media( max-width: 1200px ) {
	.s2.sidebar {
		flex-direction: column-reverse;
	}
}






/*
=====================
	Categs Grid
=====================
*/

.categs {
	display: grid;
	grid-template-columns: repeat( 4, 1fr );
    grid-gap: 50px 30px;
}

.categs a {
	display: flex;
    flex-direction: column;
	color: #333;
    border: 1px solid #e5e5e5;
}
.categs a:hover {
	transform: translateY( 6px );
    scale: 1.06;
	box-shadow: 0 4px 6px #aaa1;
}
.categs a:hover img {
	padding: 5px;
}

.categs img {
    width: 100%;
	aspect-ratio: 4/3;
    padding: 15px;
	transition: .5s;
}

.categs label {
    display: flex;
    align-items: center;
	justify-content: center;
	text-align: center;
    height: 50%;
    padding: 10px;
    background: #eee;
	border-top: 1px solid #eee;
}
.categs a:hover label {
	background: #fff;
	color: #f90;
}

.categs.main { 
	grid-template-columns: repeat( 5, 1fr ); 
    margin-bottom: 70px;
}
.categs.list {
	grid-template-columns: repeat( 4, 1fr );
}

@media( max-width: 1300px ) {
	.categs.main { grid-template-columns: repeat( 4, 1fr ); }
	.categs.list { grid-template-columns: repeat( 3, 1fr ); }
}

@media( max-width: 1000px ) {
	.categs.main { grid-template-columns: repeat( 3, 1fr ); }
	.categs.list { grid-template-columns: repeat( 2, 1fr ); }
}

@media( max-width: 700px ) {
	.categs.main { grid-template-columns: repeat( 2, 1fr ); }
}

@media( max-width: 400px ) {
	.categs.main,
	.categs.list {
		grid-template-columns: 1fr;
		grid-gap: 40px;
	}
	.categs img {
		aspect-ratio: 2;
	}
}



/*
=========================
	Product List
=========================
*/


.products.list:after {
	content: '';
	display: block;
    background: url(loading.gif) no-repeat center / 50px;
	overflow: hidden;
	height: 0;
	transition: .5s;
}

.products.loading:after {
	height: 150px;
}

.btn.more {
	display: block;
	width: 170px;
	margin: auto;
}

.prow {
	display: grid;
	grid-template-columns: 275px 1fr;
	margin-bottom: 40px;
	min-width: 220px;
	transition: .5s;
}

.prow a.img {
	position: relative;
	display: flex;
	background: #fff;
    border: 1px solid #e5e5e5;
	border-width: 1px 0 1px 1px;
}

.prow img {
    width: 100%;
	max-height: 250px;
	aspect-ratio: 4/3;
    margin: auto;
    padding: 15px;
	transition: .5s;
}

.prow .desc {
	position: relative;
	display: flex;
	flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
	color: #333;
    border: 1px solid #e5e5e5;
	padding: 20px;
}

.prow label {
	font-weight: 500;
}

.prow p {
	color: #666;
	margin: 18px 0;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2; /* number of lines to show */
	-webkit-box-orient: vertical;
	line-clamp: 2; 
}

.prow u {
	display: block;
	font-size: 18px;
	font-weight: bolder;
	color: #f90;
}

.prow i.fa {
	position: absolute;
	top: 0;
	right: 0;
	margin: 25px 22px;
	color: #f90 ;
}

.prow:hover img {
	padding: 5px;
}

.prow:hover {
	background: #f5f2ed;
    box-shadow: 0 3px 10px #0001;
    transform: translateY( 8px );
}

@media( max-width: 700px ) {
	.prow {
		display: block; 
	}
	.prow a.img {
		border-width: 1px 1px 0 1px; 
	}
	.prow a.btn {
		margin: 0 auto; 
	} 
}

@media( max-width: 400px ) {
	.prow p {
		display: none; 
	}
	.prow img {
		max-height: 200px;
	}
	.prow label {
		margin: 5px 0 10px 0; 
	} 
}




/*
=========================
	Products Carousel
=========================
*/

.trending {
	margin-bottom: 70px;
}

.prod {
	position: relative;
	text-align: center;
	background: #fff;
	color: #333;
    border: 1px solid #e5e5e5;
	transition: .5s;
}

.prod:hover {
	transform: translateY( 7px );
    scale: 1.06;
    background: #fafafa;
    box-shadow: 0 4px 6px #aaa1;
}

.prod > * {
	margin: 10px;
}

.prod u {
	color: #f90;
	font-weight: 600;
}

.prod label {
	display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
	overflow: hidden;
	line-height: 1.2;
	height: 31px;
}

.prod img {
	aspect-ratio: 1;	
	background: #fff;
	padding: 15px;
	border-bottom: 1px solid #eee;
}

.prod .img {
	margin: 0 0 20px 0;
}

.prod i.fa {
	display: block;
	color: #ccc;
}

.prod a.btn {
	background: #f90;
    color: #fff;
	border: 1px solid #f90;
	font-size: 12px;
    font-weight: 400;
	padding: 6px 10px;
    border-radius: 20px;
	margin: 4px 0 20px 0;
}


i.new,
i.feat {
	position: absolute;
	top: 20px;
	left: 20px;
	color: #fff;
	border-radius: 5px;
	font-size: 12px;
	padding: 5px 10px;
}

i.new {
	background: #f44;
}
i.new:before {
	font: 12px Roboto;
	content: "ÚJ";
}

i.feat {
	background: #0ce;
}
i.feat:before {
	font: 12px Roboto;
	content: "KIEMELT";
}

i.wish {
	position: absolute;
	top: 20px;
	right: 20px;
	color: #fff;
}
i.wish.on {
	color: #f44;
}

i.wish:before {
	font: 30px FontAwesome;
	content: "\f004";
}


@media( max-width: 400px ) {
	.prod img {
		aspect-ratio: 2;
	}
}





/*
=========================
	Message Ad Block
=========================
*/

.message {
	position: relative;
	color: #fff;
	font-size: 16px;
	text-align: center;
}

.message img {
    display: block;
	width: 100%;
	min-height: 150px;
	max-height: 450px;
	object-fit: cover;
}

.message div {
	position: absolute;
	top: 15%;
	height: 70%;
	width: 50%;
    max-width: 900px;
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.message.left div {
	left: max( 5%, 50% - 800px );
}
.message.right div {
	right: max( 5%, 50% - 800px );
}

.message h2 {
	font-size: 50px;
}

.message p {
	flex: 0.5;
	margin: 10px 0;
}


@media( max-width: 1000px ) {
	.message div {
		width: 90%;
	}
	.message h2 {
		font-size: 25px;
	}
}
@media( max-width: 700px ) {
	.message p {
		display: none;
	}
	
}



/*
=====================
	Best Reviews
=====================
*/

.bestreview {
	display: flex;
	grid-gap: 30px;
}

.best {
    box-shadow: 0 0 42px 0 #0001;
	width: 100%;
    overflow: hidden;
}

.screen {
	margin: 20px;
}

.screen p {
	color: #889;
}

.screen label {
	display: flex;
    align-items: center;
	font-size: 16px;
	margin: 10px 0 7px 0;
}

.screen a {
    flex: 1;
}
.screen a:hover {
	color: #f90;
}
.screen a:before {
	font: 25px FontAwesome;
	content: "\f2bd";
	color: #779;
	margin-right: 5px;
}

.screen i {
	font: 16px FontAwesome;
	color: #f90;
	margin: 0 10px;
}

.screen b {
	color: #f90;
}

.video {
    position: relative;
	width: 100%;
	aspect-ratio: 16/9;
	overflow: hidden;
}

.video img {
	position: absolute;
	width: 100%;
	height: 100%;
    object-fit: cover;
}

#play {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('play.png') center no-repeat;
}
#play:hover {
	background-color: #0002;
}


@media( max-width: 1000px ) {
	.bestreview {
		flex-wrap: wrap;
	}
}



/*
=====================
	Regisztráció
=====================
*/

.reg {
	display: grid;
    grid-template-columns: 1fr 2fr 2fr 2fr;
    align-items: center;
    grid-gap: 20px;
}

.reg label {
	grid-column-start: 1;
	display: inline-block;
    width: 110px;
    font-weight: 500;
}

.reg div.cs {
	grid-column: 2 / span 3;
}

.reg button {
	grid-column: 1 / span 4;
	margin: auto;
}


div.toggle input {
	appearance: none;
	background: #fff;
	cursor: pointer;
}
div.toggle input:checked {
	background: #f92;
	color: #fff;
	border-color: transparent;
}
div.toggle input:before {
	content: attr( value );
}


@media( max-width: 900px ) {
	.reg {
		grid-template-columns: 1fr 2fr;
	}
	.reg input {
		grid-column-start: 2;
	}
	.reg div.cs {
		grid-column: 2;
	}
	.reg button {
		grid-column: 1 / span 2;
	}
}




