@font-face {
	font-family: open sans;
	font-style: normal;
	font-weight: 300;
	src: local('Open Sans Light'),local('OpenSans-Light'),url(https://fonts.gstatic.com/s/opensans/v17/mem5YaGs126MiZpBA-UN_r8OUuhpKKSTjw.woff2) format('woff2');
	unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
	font-display: swap;
}

@font-face {
	font-family: open sans;
	font-style: normal;
	font-weight: 400;
	src: local('Open Sans Regular'),local('OpenSans-Regular'),url(https://fonts.gstatic.com/s/opensans/v17/mem8YaGs126MiZpBA-UFVZ0bf8pkAg.woff2) format('woff2');
	unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
	font-display: swap;
}

@font-face {
	font-family: open sans;
	font-style: normal;
	font-weight: 600;
	src: local('Open Sans SemiBold'),local('OpenSans-SemiBold'),url(https://fonts.gstatic.com/s/opensans/v17/mem5YaGs126MiZpBA-UNirkOUuhpKKSTjw.woff2) format('woff2');
	unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
	font-display: swap;
}

html {
	overflow-y: scroll;
	line-height: 1.15;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: transparent;
	min-width: 320px;
	height: 100%;
}

body {
	margin: 0;
	font-family: open sans,sans-serif;
	font-size: 14px;
	font-weight: 400;
	position: relative;
	min-height: 100%;
	background-color: #272A2B;
	color: #E3E3E3;
}

body.on_menu,
body.on_search {
	position: fixed;
	overflow: hidden;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

a {
	color: #CAF476;
	text-decoration: none;
	outline: none;
}

a:hover {
	color: #5BBDBD;
}

b {
	font-weight: 600;
}

ul,li {
	list-style: none;
	padding: 0;
	margin: 0;
}

.wrap {
	padding-left: env(safe-area-inset-left);
	padding-right: env(safe-area-inset-right);
}

.box {
	max-width: 1232px;
	margin: 0 auto;
}

.top {
	padding: 7px 0;
	background-color: #272A2B;
	border-bottom: 1px solid #272A2B;
}

.top .box {
	box-sizing: border-box;
	width: 100%;
	height: 60px;
	padding: 10px;
	position: relative;
	display: flex;
}

.logo {
	flex: none;
	width: 200px;
}

.logo a {
	display: block;
	white-space: nowrap;
	margin: 4px;
}

.logo a:before {
	content: '';
	background: url(logo.svg) center no-repeat;
	width: 32px;
	height: 32px;
	position: absolute;
}

.logo h1 {
	display: inline-block;
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	line-height: 30px;
	margin: 0;
	padding: 1px 10px;
	margin-left: 32px;
}

.search {
	flex: none;
	width: 320px;
}

.search form {
	display: flex;
	position: relative;
}

.search form input,
.search form button {
	height: 40px;
	vertical-align: top;
	-webkit-appearance: none;
	outline: none;
	border: none;
	box-sizing: border-box;
}

.search form input {
	width: 100%;
	font-size: 14px;
	color: #272A2B;
	background-color: #FFFFFF;
	border: 1px solid #FFFFFF;
	position: relative;
	right: 40px;
	left: 0;
	margin-right: 20px;
	border-radius: 20px 0 0 20px;
	padding-left: 17px;
	padding-right: 25px;
}

.search form button {
	background: #F05858 url(search.svg) center no-repeat;
	cursor: pointer;
	border-radius: 20px;
	width: 40px;
	position: absolute;
	top: 0;
	right: 0;
}

.search form button:hover {
	background: #5BBDBD url(search.svg) center no-repeat;;
}

.menu {
	flex: 1;
}

.menu ul {
	display: block;
}

.menu li {
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	margin: 11px 17px;
	line-height: 19px;
}

.menu a {
	color: #5BBDBD;
}

.menu a:hover {
	color: #fff;
}


.toggle>span {
	display: none;
	position: relative;
	z-index: 2;
	background-position: center;
	background-repeat: no-repeat;
	padding: 10px;
}
.toggle>span>input[type=checkbox] {
	width: 24px;
	height: 20px;
	cursor: pointer;
	opacity: 0;
	-webkit-touch-callout: none;
	z-index: 3;
	margin: 0;
	padding: 0;
	display: block;
}

.menu .toggle>span {
	background-image: url(menu.svg);
}
.search .toggle>span {
	background-image: url(search_icon.svg);
}

.on_menu .menu .toggle>span,
.on_search .search .toggle>span {
	background-image: url(close_menu.svg)!important;
}

.on_menu .toggle>ul {
	display: block;
}
.on_search .toggle>form {
	display: flex;
}


.menu_collapse{
	position: relative;
}

.menu_collapse ul {
	text-align: left;
	position: relative;
	overflow: hidden;
}

.menu_collapse ul:after{
	display: block;
	content: '';
	clear: both;
}

.menu_collapse li {
	float: left;
	display: block;
	padding: 11px;
	margin: 0;
	font-size: 14px;
}

.menu_collapse .more {
	display: none;
	position: absolute;
	top: 40px;
	right: 0;
	text-align: right;
	z-index: 4;
}

.menu_collapse .more>span {
	display: block;
	font-size: 20px;
	margin: 0 20px;
	cursor: pointer;
	text-decoration: none;
	color: #5BBDBD;
	position: absolute;
	top: -27px;
	right: 0;
	overflow: hidden;
	width: 16px;
	height: 16px;
}
.menu_collapse .more>span:after {
	content: '\2026';
	position: absolute;
	top: -8px;
	left: 0;
}

.menu_collapse .more ul {
	border-radius: 10px;
	box-shadow: 0 0 4px 1px rgb(0 0 0 / 20%);
	box-shadow: 0 4px 12px 0 rgba(0,0,0 / 16%);
}

.menu_collapse .more li {
	float: none;
	padding: 0;
}

.menu_collapse .more a {
	color: #5BBDBD;
	background-color: #272A2B;
	padding: 10px 16px;
	display: block;
}

.menu_collapse .more a:hover {
	color: #FFFFFF;
	background-color: #272A2B;
}

@media screen and (max-width: 600px) {
	.search {
		flex: 1;
		width: auto;
	}
	.search .toggle>span {
		display: inline-block;
	}
	.search form {
		display: none;
		position: absolute;
		z-index: 10;
		top: 79px;
		left: 10px;
		right: 10px;
	};
}

@media screen and (min-width: 601px) and (max-width: 854px) {
	.menu  {
		padding-left: 10px;
	};
}

@media screen and (max-width: 854px) {
	.logo {
		flex: 1;
	}
	.menu {
		flex: none;
		order: +1;
	}
	.menu .toggle>span {
		display: inline-block;
	}
	.menu  .menu_collapse {
		position: static;
	}
	.menu ul {
		display: none;
		position: absolute;
		z-index: 10;
		top: 79px;
		left: 0;
		right: 0;
	}
	.menu_collapse li {
		display: block;
		float: none;
		padding: 0px;
	}
	.menu a {
		display: block;
		padding: 11px 16px;
		color: #5BBDBD;
	}
	.menu a:hover,
	.menu a:focus {
		color: #FFFFFF;
		background-color: #272A2B;
	}
	.menu .more {
		display: none;
	}
	.search {
		flex: none;
	}
	.search form input {
		background-color: #fff;
	};
}
@media screen and (max-width: 600px) {
.search form input {
		background-color: #fff;
		color: #272A2B;
	};
}
@media screen and (min-width: 855px){
	.top .box>div+div {
		margin-left: 50px;
	};
}

@media screen and (min-width: 855px) and (max-width: 1439px) {
	.search {
			width: 200px;
	};
}

#bgblur {
	display: none;
	position: absolute;
	top: 79px;
	left: 0;
	right: 0;
	background-color: #272A2B;
	background-color: rgb(39,42,43,.85);
	z-index: 9;
	height: 100%;
	height: calc(100% - 60px);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}

.bottom {
	font-size: 14px;
	padding: 20px;
	background-color: #272A2B;
	border-top: 1px solid #272A2B;
	text-align: left;
}

.bottom h3 {
	color: #fff;
	font-size: 18px;
}

.bottom div~div {
	margin-top: 15px;
	color: #E3E3E3;
}

.a {
	width: 300px;
	height: 250px;
	position: relative;
}

.a>.b {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	overflow: hidden;
	z-index: 2;
	border: 1px solid red;
}

.a>.b>iframe {
	display: block;
}

@media screen and (max-width: 1231px) {
	.a {
		width:100%;
		height: auto;
		padding-top: 83%
	};
}

.thumbs {
	font-size: 0;
	position: relative;
	margin: 8px;
}

.thumbs p {
	margin: 20px 10px;
}

.thumbs>* {
	font-size: 14px;
}

.thumbs>div {
	display: inline-block;
	padding: 2px;
	line-height: 1em;
	font-weight: 300;
	vertical-align: top;
	overflow: hidden;
	box-sizing: border-box;
	position: relative;
}

.thumbs>div:not(.first):before {
	content: "Loading...";
	position: absolute;
	top: calc(50% - 15px);
	left: 0;
	right: 0;
	font-size: 24px;
	color: #888;
	z-index: 1;
	text-align: center;
}

.thumbs>div>a {
	position: relative;
	display: block;
	background-color: #E1E1E1;
}

.thumbs>div>a>img {
	display: block;
	box-sizing: border-box;
	position: relative;
	z-index: 2;
}

.thumbs>div>a>img,.thumbs>div>a>img.lazy,.thumbs>div>a>img.lazy.loaded {
	border: 1px solid #828282;
	color: #828282;
}

.thumbs>div>a>span {
	position: absolute;
	top: 1px;
	right: 1px;
	display: block;
	background-color: #979797;
	background-color: rgba(151,151,151,.4);
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	line-height: 1em;
	white-space: nowrap;
	padding: 6px 8px;
	z-index: 3;
	border-radius: 0 0 0 5px;
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
}

.thumbs>div>a:hover>span {
	background-color: #979797;
	background-color: rgba(151,151,151,.65);
}

.thumbs>div>a>span.online:before {
	content: '';
	z-index: 3;
	background: url(online.svg) center no-repeat;
	width: 57px;
	height: 18px;
	position: relative;
	display: inline-block;
	vertical-align: text-bottom;
	margin-right: 5px;
}

.thumbs>.first {
	width: 304px;
}

.thumbs>.first>h2 {
	font-size: 16px;
	line-height: 16px;
	padding: 5px;
	margin: 0;
	color: #fff;
	font-weight: 600;
}

.thumbs>.first>h2~div {
	line-height: 16px;
	padding: 0 5px 5px;
	color: #E3E3E3;
}

.thumbs>.first>span>a {
	font-size: 10px;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 23px;
	padding: 2px 5px;
	border-radius: 4px;
	white-space: nowrap;
	color: #CAF476;
	background-color: transparent;
	border: 1px solid #CAF476;
}

.thumbs>.first>span>a:hover {
	color: #fff;
	background-color: #5BBDBD;
	border: 1px solid #5BBDBD;
}

@media screen and (max-width: 460px) {
	.thumbs>.first>span>a {
    font-size: 11px;
    line-height: 36px;
    padding: 8px 10px;
}
}

@media screen and (min-width: 1536px) {
	.box {
		max-width:1536px
	};
}

@media screen and (max-width: 1231px) {
	.box {
		width:100%
	}

	.thumbs>div {
		width: 25%!important
	}

	.thumbs>div>a>img {
		width: 100%;
		height: auto!important
	};
}

@media screen and (max-width: 960px) {
	.thumbs>div {
		width: 33.33333%!important
	};
}

@media screen and (max-width: 734px) {
	.thumbs>div {
		width: 50%!important
	};
}

@media screen and (max-width: 460px) {
	.thumbs>div {
		width: 100%!important
	};
}

#loading {
	display: none;
	color: #5f6060;
	font-size: 90px;
	text-indent: -9999em;
	overflow: hidden;
	width: 1em;
	height: 1em;
	border-radius: 50%;
	margin: 72px auto;
	position: relative;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-animation: load6 1.7s infinite ease,round 1.7s infinite ease;
	animation: load6 1.7s infinite ease,round 1.7s infinite ease;
}

@-webkit-keyframes load6 {
	0%,100%,5%,95% {
		box-shadow: 0 -.83em 0 -.4em,0 -.83em 0 -.42em,0 -.83em 0 -.44em,0 -.83em 0 -.46em,0 -.83em 0 -.477em
	}

	10%,59% {
		box-shadow: 0 -.83em 0 -.4em,-.087em -.825em 0 -.42em,-.173em -.812em 0 -.44em,-.256em -.789em 0 -.46em,-.297em -.775em 0 -.477em
	}

	20% {
		box-shadow: 0 -.83em 0 -.4em,-.338em -.758em 0 -.42em,-.555em -.617em 0 -.44em,-.671em -.488em 0 -.46em,-.749em -.34em 0 -.477em
	}

	38% {
		box-shadow: 0 -.83em 0 -.4em,-.377em -.74em 0 -.42em,-.645em -.522em 0 -.44em,-.775em -.297em 0 -.46em,-.82em -.09em 0 -.477em
	};
}

@keyframes load6 {
	0%,100%,5%,95% {
		box-shadow: 0 -.83em 0 -.4em,0 -.83em 0 -.42em,0 -.83em 0 -.44em,0 -.83em 0 -.46em,0 -.83em 0 -.477em
	}

	10%,59% {
		box-shadow: 0 -.83em 0 -.4em,-.087em -.825em 0 -.42em,-.173em -.812em 0 -.44em,-.256em -.789em 0 -.46em,-.297em -.775em 0 -.477em
	}

	20% {
		box-shadow: 0 -.83em 0 -.4em,-.338em -.758em 0 -.42em,-.555em -.617em 0 -.44em,-.671em -.488em 0 -.46em,-.749em -.34em 0 -.477em
	}

	38% {
		box-shadow: 0 -.83em 0 -.4em,-.377em -.74em 0 -.42em,-.645em -.522em 0 -.44em,-.775em -.297em 0 -.46em,-.82em -.09em 0 -.477em
	};
}

@-webkit-keyframes round {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg)
	};
}

@keyframes round {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg)
	};
}
.all_models {
    margin: 5px;
}
.all_models h2 {
    margin: 10px;
}
.all_models span {
    display: flex;
    flex-wrap: wrap;
}
.all_models span a {
    display: inline-block;
    margin: 5px;
	font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    padding: 5px 10px;
    border-radius: 4px;
    color: #E3E3E3;
    background-color: transparent;
    border: 1px solid #E3E3E3;
}
.all_models span a:hover {
    color: #272A2B;
    background-color: #fff;
    border: 1px solid #fff;
}
.all_models h4 {
    font-size: 26px;
    font-weight: 600;
    border-bottom: 1px solid #fff;
    margin: 10px 0;
    padding: 10px;
}
.all_models ul {
    -webkit-column-count: 6;
    -moz-column-count: 6;
    column-count: 6;
    margin: 10px 0;   
}
@media screen and (max-width: 960px) {
    .all_models ul {
        -webkit-column-count: 4;
        -moz-column-count: 4;
        column-count: 4;
    }   
}
@media screen and (max-width:640px) {
    .all_models ul {
        -webkit-column-count:2;
        -moz-column-count:2;
        column-count:2
    }
}
@media screen and (max-width:320px) {
    .all_models ul {
        -webkit-column-count:1;
        -moz-column-count:1;
        column-count:1
    }
}
.all_models ul li {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 8px 0;
    font-size: 17px;   
}
.all_models ul li a {
    padding: 6px;
    color: #fff;
}
.all_models ul li a:hover {
    text-decoration: none;
    color: #5BBDBD;
}
.all_models small {
    color: #E3E3E3;
    font-size: 10px;
    font-weight: 600;
}