@font-face {
	font-family: 'SFProDisplay';
	src: url('/fonts/SFProDisplayRegular.ttf');
}

* {
	-moz-box-sizing:border-box; 
	-webkit-box-sizing:border-box; 
	box-sizing:border-box; 
}

html {
  --scrollbarBG: #CFD8DC;
  --thumbBG: #90A4AE;
}
body::-webkit-scrollbar {
  width: 11px;
}
body {
  scrollbar-width: thin;
  scrollbar-color: var(--thumbBG) var(--scrollbarBG);
}
body::-webkit-scrollbar-track {
  background: var(--scrollbarBG);
}
body::-webkit-scrollbar-thumb {
  background-color: var(--thumbBG) ;
  border-radius: 6px;
  border: 3px solid var(--scrollbarBG);
}

html {
  background: #2e4367;
  overflow: hidden;
}
body {
  height: 100vh;
  background: #2e4367;
  color:#505050;
  overflow-y: auto;
  width:100%;
  margin: 0 auto;
  font-size: 16px;
  font-family: 'SFProDisplay', arial;
}

table {
	border-collapse:collapse;
	border-spacing:0;
}

.clearfix:before,
.clearfix:after {
	content:"";
	display: table;
}
.clearfix:after {
	clear:both;
}
.clearfix {
	zoom:1;
}

.wrapper {
	min-height:100vh;
	background: -moz-linear-gradient(top,  #2e4367 0px, #0d121b 150px);
	background: -webkit-linear-gradient(top,  #2e4367 0px,#0d121b 150px);
	background: linear-gradient(to bottom,  #2e4367 0px,#0d121b 150px);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2e4367', endColorstr='#0d121b',GradientType=0 );
}

.wrapper.withbg {
	//background:url(/image/bgworld.png) 50% 50% no-repeat;
	background-image:url(/image/bgworld.png);
	background-image:url(/image/bgworld.png), -moz-linear-gradient(top,  #2e4367 0px, #0d121b 150px);
	background-image:url(/image/bgworld.png), -webkit-linear-gradient(top,  #2e4367 0px,#0d121b 150px);
	background-image:url(/image/bgworld.png), linear-gradient(to bottom,  #2e4367 0px,#0d121b 150px);
	background-size:cover;
}

.content {
	max-width:1440px;
	width:94%;
	margin:0px auto;
	position:relative;
	padding-top:36px;
	color:#ffffff;
}

img {
	display:inline-block;
}

header {
	background:#ffffff;
	height:148px;
	background:url(/image/bghead.png);
	border-bottom:2px solid #fe9603;
	position:relative;
	margin-bottom:75px;
	z-index:2;
}

header .shadow {
	-webkit-box-shadow: 0px 10px 10px 5px rgba(0,0,0,0.28);
	-moz-box-shadow: 0px 10px 10px 5px rgba(0,0,0,0.28);
	box-shadow: 0px 10px 10px 5px rgba(0,0,0,0.28);
	background:rgba(0,0,0,0.28);
	width:100%;
	height:100%;
	position:absolute;
	top:10px;
	left:0px;
}

header .ttplogo {
	background:url(/image/ttplogo.png) 50% 50% no-repeat;
	display:inline-block;
	width:230px;
	height:143px;
	position:absolute;
	left:50%;
	top:77px;
	transform:translateX(-50%);
	z-index:4;
}

header .headCont {
	position:relative;
	z-index:3;
	transform:translateX(-50%);
	margin-left:50%;
	height:148px;
}

header .headCont.wide {
	width:98%;
}

header .headCont.narrow,
.mainpage.narrow {
	max-width:700px;
	width:95%;
}

header .headCont .mainMenu {
	position:absolute;
	bottom:15px;
	width:100%;
}

header .headCont .mobileMenu {
	display:none;
	position:relative;
	top:25px;
	left:20px;
	z-index:1;
	-webkit-user-select:none;
	user-select:none;
}

header .headCont .mobileMenu input {
	display:block;
	width:40px;
	height:32px;
	position:absolute;
	top:-7px;
	left:-5px;
	cursor:pointer;
	opacity:0;
	z-index:2;
	-webkit-touch-callout:none;
}

header .headCont .mobileMenu span {
	display:block;
	width:33px;
	height:4px;
	margin-bottom:5px;
	position:relative;
	background:#ffffff;
	border-radius:3px;
	z-index:1;
	transform-origin:4px 0px;
	transition:	transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
							background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
							opacity 0.55s ease;
}

header .headCont .mobileMenu span:first-child {
	transform-origin:0% 0%;
}

header .headCont .mobileMenu span:nth-last-child(1) {
	transform-origin:0% 100%;
}

header .headCont .mobileMenu input:checked ~ span {
	opacity:1;
	transform:rotate(45deg) translate(-2px, -1px);
}

header .headCont .mobileMenu input:checked ~ span:nth-last-child(2) {
	opacity:0;
	transform:rotate(0deg) scale(0.2, 0.2);
}

header .headCont .mobileMenu input:checked ~ span:nth-last-child(1) {
	transform:rotate(-45deg) translate(0, -1px);
}


header .headCont .mainMenu a {
	color:#ae7132;
	margin:0px 4px;
	font-weight:bold;
	text-decoration:none;
	padding-bottom:2px;
}

header .headCont .mainMenu a:hover,
header .headCont .mainMenu a.active {
	border-bottom:2px solid #fe9603;
	color:#fe9603;
}

header .headCont .mainMenu .mainMenuLeft {
	float:left;
	margin-left:10px;
}

header .headCont .mainMenu .mainMenuRight {
	float:right;
	margin-right:10px;
	text-transform:uppercase;
}

.mainpage.narrow {
	position:relative;
	top:-223px;
	margin-bottom:-223px;
	border-left:1px solid #fe9603;
	border-right:1px solid #fe9603;
	width:95%;
	transform:translateX(-50%);
	margin-left:50%;
	padding-top:265px;
	text-align:center;
	background:url(/image/mainbg.png);
}

.mainpage h1 {
	margin:0px;
}

.mainpage h1 a {
	color:#fe9603;
	text-decoration:none;
	font-weight:bold;
	font-size:2.6rem;
	font-family: "Arial Black", arial;
}

.mainpage h2 {
	margin:10px 0px;
	color:#757679;
	font-size:1.5rem;
	text-transform:uppercase;
}

.searchHolder {
	padding:0px 50px;
	position:relative;
	max-width:795px;
	margin:0px auto;
}

.searchHolder input {
	width:100%;
	height:50px;
	border:1px solid #ffffff;
	border-radius:4px;
	padding:0px 100px 0px 6px;
	font-style:italic;
	font-size:1.5rem;
}

.searchHolder button {
	position:absolute;
	right:50px;
	top:0px;
	height:50px;
	width:90px;
	background:#fe9603;
	border:1px solid #fe9603;
	border-top-right-radius:4px;
	border-bottom-right-radius:4px;
	cursor:pointer;
}

.mainImageHolder {
	position:relative;
}

.mainpage h3 {
	text-transform:uppercase;
	margin:20px 0px 5px 0px;
}

.mainImageHolder > img {
	max-width:87%;
	padding-bottom:25px;
}

.mainImageHolder .imgLeft {
	position:absolute;
	bottom:-30px;
	left:10px;
}

.mainImageHolder .imgRight {
	position:absolute;
	bottom:-30px;
	right:10px;
}

.mainFooter {
	//height:49px;
	width:100%;	
}

.mainFooter img {
	width:100%;
	vertical-align:bottom;
}

footer {
	margin-top:35px;
	margin-left:10px;
	margin-right:10px;
}

footer .socialHolder {
	margin:0px auto;
	border:4px solid rgba(254,150,3,0.5);
	max-width:695px;
	border-radius:30px;
	height:62px;
	font-size:0px;
}

footer .socialHolder span {
	width:16.6667%;
	//width:20%;
	display:inline-block;
	text-align:center;
}

footer .socialHolder a {
	color:#86540e;
	font-size:2.8rem;
	display:inline-block;
	line-height:56px;
}
	
footer .socialHolder a:hover {
	color:#fe9603;
}

footer .copyright {
	text-align:center;
	color:#757679;
	font-weight:bold;
	padding:25px 0px;
	text-transform:uppercase;
}

.dropdown {
	position:absolute;
	display:inline-block;
	right:5px;
}

.dropdown div {
	cursor:pointer;
}

.dropdown div i {
	vertical-align:top;
	padding:5px;
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: #0d121b;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	padding: 5px 5px;
	z-index: 1;
	right: 0;
	border:1px solid #383b46
}

.dropdown.active .dropdown-content,
.dropdown:hover .dropdown-content {
	display: block;
}

.dropdown-content a {
	color:#ffffff;
	padding: 5px 5px;
	text-decoration: none;
	display: block;
	text-align:right;
	white-space:nowrap;
}

.dropdown-content a:hover {
	background:#fe9603;
}

.content .searchHolder {
	margin-bottom:80px;
}

.searchList h1 {
	font-size: 30px;
	margin:0px 0px 30px 0px;
}

.searchTab {
	position:relative;
	height:35px;
	line-height:30px;
	border-bottom:1px solid #383b46;
}

.searchTab > a {
	color:#ffffff;
	text-decoration:none;
	margin-right:30px;
	padding-left:5px;
}

.searchTab > a span {
	color:#a2a8b3;
}

.searchTab > a.active {
	border-bottom:2px solid #fe9603;
	padding-bottom:8px;
}

.searchTableHolder {
	margin-top:50px;
	margin-bottom:50px;
	position:relative;
}

.searchTable {
	width:100%;
	border-collapse:separate;
}

.searchTable th {
	font-size:12px;
	font-weight:normal;
	line-height:30px;
}

.searchTable tbody tr td {
	height:110px;
	background:#1d232e;
	text-align:center;
}

.searchTable tbody tr td.imgHolder {
	width:100px;
}

.searchTable tbody tr td.imgHolder img {
	display:inline-block;
	width:75px;
	height:75px;
	background:#161b25;
}

.searchTable tbody tr td.imgHolder .imgBlank {
	display:inline-block;
	width:75px;
	height:75px;
	background:#161b25;
}

.searchTable tbody tr:first-child td:first-child { border-top-left-radius: 5px; }
.searchTable tbody tr:first-child td:last-child { border-top-right-radius: 5px; }
.searchTable tbody tr:last-child td:first-child { border-bottom-left-radius: 5px; }
.searchTable tbody tr:last-child td:last-child { border-bottom-right-radius: 5px; }

.searchTable tbody tr td:first-child { border-left:1px solid #383b46; }
.searchTable tbody tr td:last-child { border-right:1px solid #383b46; }	
.searchTable tbody tr:first-child td { border-top:1px solid #383b46; }
.searchTable tbody tr td { border-bottom:1px solid #383b46; }

.searchTable tbody tr td.textHolder.left {
	text-align:left;
}

.searchTable tbody tr td.textHolder a {
	color:#ffffff;
	text-decoration:none;
}

.searchTable tbody tr td.btnHolder a {
	width:30px;
	height:30px;
	line-height:28px;
	text-align:center;
	border:1px solid #c5cbd5;
	border-radius:50%;
	color:#5a6679;
	display:inline-block;
	font-size:10px;
}

.searchTable tbody tr:hover td {
	background:#0d121b;
}

.searchTable tbody tr:hover td,
.searchTable tbody tr:hover td.btnHolder a,
.searchTable tbody tr:hover td.textHolder a {
	color:#fe9603;
}

.searchTable tbody tr:hover td.btnHolder a {
	border:1px solid #fe9603;
}

.searchTable tfoot.hidden,
.emptySearch.hidden {
	display:none;
}

.searchTable tfoot tr:first-child td:first-child { border-top-left-radius: 5px; }
.searchTable tfoot tr:first-child td:last-child { border-top-right-radius: 5px; }
.searchTable tfoot tr:last-child td:first-child { border-bottom-left-radius: 5px; }
.searchTable tfoot tr:last-child td:last-child { border-bottom-right-radius: 5px; }

.searchTable tfoot tr td:first-child { border-left:1px solid #383b46; }
.searchTable tfoot tr td:last-child { border-right:1px solid #383b46; }	
.searchTable tfoot tr:first-child td { border-top:1px solid #383b46; }
.searchTable tfoot tr td { border-bottom:1px solid #383b46; }


.searchTable tfoot tr td {
	height:110px;
	background:#1d232e;
	text-align:center;
}

.searchTable tfoot tr td.imgHolder {
	width:100px;
	text-align:center;
}

.searchTable tfoot tr td.imgHolder .imgBlank {
	display:inline-block;
	width:75px;
	height:75px;
	background:#161b25;
}

.searchTable tfoot tr td.textHolder.left {
	text-align:left;
}

.searchTable tfoot tr td.textHolder .textBlank {
	display:inline-block;
	background:#161b25;
	height:10px;
	width:70%;
	border-radius:5px;
}

.searchTable tfoot tr td.textHolder .textBlank.short {
	width:45%;
}

.searchTable tfoot tr td.btnHolder .btnBlank {
	width:30px;
	height:30px;
	line-height:28px;
	text-align:center;
	border:1px solid #c5cbd5;
	border-radius:50%;
	color:#c5cbd5;
	display:inline-block;
	opacity:0.19;
	font-size:10px;
}

.emptySearch {
	position:absolute;
	top:0px;
	width:100%;
	height:100%;
	background: -moz-linear-gradient(top,  rgba(46,67,103,0) 30px, rgba(13,18,27,1) 100%);
	background: -webkit-linear-gradient(top,  rgba(46,67,103,0) 30px,rgba(13,18,27,1) 100%);
	background: linear-gradient(to bottom,  rgba(46,67,103,0) 30px, rgba(13,18,27,1) 100%);
}

.emptySearch .textCenter {
	position:absolute;
	transform:translateY(-50%);
	top:50%;
	width:100%;
	text-align:center;
}

.emptySearch .textCenter h2 {
	font-size:24px;
	margin:0px 0px 8px 0px;
}

.pagination {
	text-align:center;
	
}

.pagination a {
	color:#ffffff;
	text-decoration:none;
	display:inline-block;
	line-height:22px;
	margin:0px 10px;
	border-radius:50%;
	font-size:15px;
}

.pagination a:hover {
	color:#fe9603;
}

.pagination a.num {
	width:23px;
	height:23px;
	text-align:center;
}

.pagination a.active {
	border:solid 1px #fe9603;
	background-color:rgba(254, 150, 3, 0.2);
	color:#e9542f;
}


.productContainer {
	border-top:1px solid #383b46;
	border-bottom:1px solid #383b46;
	padding-top:50px;
	padding-bottom:50px;
}

.productLeft {
	width:50%;
	float:left;
}

.productRight {
	width:50%;
	float:left;
}

.mobileTitle {
	display:none;
}

.mobileTitle h2 {
	margin:0px 0px 5px 0px;
	font-size:18px;
}

.mobileTitle h1 {
	margin:0px 0px 15px 0px;
	font-size:24px;
}

.prodImgHolder {
	width:95%;
}

.prodBigImg {
	width: 100%;
  padding-top: 100%;
  position: relative;
  border:1px solid #383b46;
  background:#151a23;
}

.prodBigImg img {
	position:absolute;
	top:50%;
	left:5%;
	width:90%;
	transform:translateY(-50%);
}

.prodSmallImg {
	margin-top:30px;
	display:flex;
	flex-wrap:nowrap;
	justify-content:space-between;
}

.prodSmallImg a {
	display:inline-block;
	width: 30%;
  padding-top: 30%;
  position: relative;
  border:1px solid #383b46;
  background:#151a23;
}

.prodSmallImg a img {
	position:absolute;
	top:5%;
	left:5%;
	width:90%;
}

.productRight h2 {
	margin:15px 0px 0px 0px;
	font-size:20px;
}

.productRight h1 {
	margin:10px 0px 30px 0px;
	font-size:30px;
}

.prodDescription {
	color:#c5c5c5;
	line-height:1.33;
	font-size:15px;
	margin-bottom:25px;
}

.prodDatas {
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
}

.prodDatas .prodDataBlock {
	width:30%;
	margin-bottom:40px;
}

.prodDatas .prodDataBlock p {
	font-size:12px;
	margin:0px 0px 7px 0px;
}

.prodDatas .prodDataBlock span {
	font-size:24px;
	color:#c5c5c5;
}

.prodDatas .prodDataBlock span.orange {
	color:#fe9603;
}

.prodDatas .prodDataBlock span.rating {
	position:relative;
	font-size:0px;
	width:100%;
	display:inline-block;
}

.prodDatas .prodDataBlock span div {
	position:absolute;
	top:-10px;
	left:0px;
	width:100%;
}

.prodDatas .prodDataBlock span div i {
	font-size:21px;
}

.prodDatas .prodDataBlock span .orangestar {
	color:#fe9603;
}

.prodBtn {
	display:flex;
	justify-content:space-between;
}

.prodBtn a {
	display:inline-block;
	background:#fe9603;
	color:#ffffff;
	text-decoration:none;
	width:45%;
	font-size:16px;
	height:50px;
	line-height:50px;
	text-align:center;
	border-radius:4px;
}

.prodBtn a i {
	margin-right:10px;
}

.aboutusHolder h2 {
	margin-bottom:50px;
}

.aboutusRow {
	font-size:0px;
	margin-bottom:50px;
}

.aboutusRow .imgHolder {
	width:100%;
	height:240px;
	position:relative;
}

.aboutusRow .imgCover {
	position:relative;
	width:100%;
	height:100%;
	background-size:cover;
	background-position:center center;
	z-index:2;
}

.aboutusRow .imgHolder .oblock {
	width:130px;
	height:130px;
	display:inline-block;
	background:#fe9603;
	position:absolute;
	left:-30px;
	bottom:-30px;
	z-index:1;
	display:none;
}

.aboutusRow .textHolder {
	margin-top:35px;
	font-size:1rem;
}

.aboutusRow .textHolder h3 {
	margin:0px 0px 20px 0px;
	font-size:24px;
}

.aboutusRow .textHolder .descript {
	color:#c5c5c5;
}

@media screen and (min-width: 600px) {
	.aboutusRow .imgHolder .oblock {
		display:inline-block;
	}
	
	.aboutusRow {
		margin-bottom:80px;
	}
	
	.aboutusRow .imgHolder {
		width:40%;
		float:left;
		height:300px;
	}
	
	.aboutusRow .textHolder {
		width:60%;
		float:right;
		padding-left:32px;
	}
	
	.aboutusHolder .aboutusRow:nth-child(odd) .imgHolder {
		float:right;
	}
	
	.aboutusHolder .aboutusRow:nth-child(odd) .textHolder {
		float:left;
		padding-left:0px;
		padding-right:32px;
	}
	
	.aboutusHolder .aboutusRow:nth-child(odd) .imgHolder .oblock {
		right:-30px;
		top:-30px;
		left:unset;
		bottom:unset;
	}
	
}

@media screen and (max-width: 600px) {
	
	.productRight,
	.productLeft,
	.prodImgHolder {
		width:100%;
	}

	.mobileTitle {
		display:block;
	}
	
	.fullTitle {
		display:none;
	}
	
	.mainImageHolder .imgLeft img,
	.mainImageHolder .imgRight img {
		width:15.5vw;
	}
	
	.mainImageHolder .imgLeft {
		left:5px;
	}
	
	.mainImageHolder .imgRight {
		right:5px;
	}
	
	.searchTab {
		margin-bottom:40px;
	}
	
	.searchTab > a {
		width:50%;
		display:inline-block;
		margin:0px;
		padding:0px;
		text-align:center;
	}
	
	.searchTab > a.active {
		padding-bottom:3px;
	}
	
	.dropdown {
		top:40px;
		left:0px;
		width:100%;
		text-align:center;
	}
	
	.dropdown-content {
		left:0px;
	}
	
	.searchTable tr th:nth-child(3),
	.searchTable tr th:nth-child(4),
	.searchTable tr th:nth-child(5),
	.searchTable tr th:nth-child(6),
	.searchTable tr td:nth-child(3),
	.searchTable tr td:nth-child(4),
	.searchTable tr td:nth-child(5),
	.searchTable tr td:nth-child(6) {
		display:none;
	}
	
	.pagination a:first-child,
	.pagination a:last-child {
		display:none;
	}
	
	header .headCont .mobileMenu {
		display:block;
	}
	
	header .headCont .mobileMenu {
		z-index:6;
	}
	
	header .headCont .mainMenu {
		top:-150px;
		left:0px;
		bottom:unset;
		background:#070a10;
		z-index:5;
		border-left:2px solid #fe9603;
		border-right:2px solid #fe9603;
		border-bottom:2px solid #fe9603;
		transition:transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
		transform:translateY(0px);
		height:148px;
	}
	
	header .headCont .mainMenu.active {
		transform:translateY(150px);
	}
	
	header .headCont .mainMenu .mainMenuLeft {
		display:block;
		float:none;
		text-align:center;
		margin-top:50px;
		margin-left:0px;
	}
	
	header .headCont .mainMenu .mainMenuRight {
		margin-top:30px;
		display:block;
		float:none;
		text-align:center;
		margin-right:0px;
	}
	
	header .headCont .mainMenu a {
		margin:0px 15px;
	}
}

@media screen and (max-width: 380px) {
	.searchHolder button {
		width:60px;
	}
	
	.searchHolder input {
		padding:0px 60px 0px 6px;
		font-size:1.1rem;
	}
	
	
	.mainImageHolder .imgRight {
		right:5px;
		bottom:-20px;
	}
	
	.mainImageHolder .imgLeft {
		bottom:-20px;
	}
}