html {
	width: 100%;
	font-size: 18px;
	font-family: Roboto, Tahoma;
	background-color: #f4f4f4;
}
a {
	color: #2a77d4;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
body {
	margin: 0px;
	width: 100%;
}
body > div:first-child {
	display: flex;
	flex-flow: column nowrap;
	margin: 5% auto 30px auto;
	background-color: #fff;
	border: 1px solid #e9e9e9;
	border-radius: 15px;
}
.error {
	justify-content: center;
	align-items: center;
    width: 500px;
	height: 110px;
}
.product {
    width: 1080px;
	padding-bottom: 15px;
}
.product > div:nth-of-type(n+3) > div:first-of-type {
	margin-top: 10px;
}
.product-name {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
	margin: 0px 10px;
	height: 60px;
}
.product-name > span {
	font-size: 1.65rem;
	font-weight: bold;
}
.product-name div {
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
}
.product-name > div {
	cursor: pointer;
	box-sizing: border-box;
	width: 100px;
	height: 35px;
	border: 1px solid #e9e9e9;
	border-radius: 10px;
	overflow: hidden;
}
.product-name > div > div {
	flex-grow: 1;
	height: 100%;
}
.product-name-top-text {
	max-width: 950px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.product-info {
	display: flex;
	flex-flow: row nowrap;
}
.product-info img {
	width: 460px;
	height: 215px;
	border-radius: 0px 0px 10px 0px;
}
.info-block {
	display: flex;
	flex-flow: column nowrap;
	flex-grow: 1;
}
.info-block hr {
	margin: 0px;
	height: 1px;
	border: 0px;
	background-color: #e9e9e9;
}
.info-block div {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	margin-left: 5px;
	height: 40px;
}
.info-block > div > span {
	margin-left: 5px;
}
.info-block > div > span:nth-of-type(n+3) {
	font-size: 0.9rem;
}
.info-block > div > span:nth-of-type(-n+2) {
	font-weight: bold;
}
.country {
	cursor: default;
	padding: 0 7px;
	height: 26px;
	line-height: 26px;
	text-align: center;
	border-radius: 5px;
	font-weight: bold;
	background-color: #e9e9e9;
}
.status-block {
	display: flex;
	flex-flow: column nowrap;
	margin: 30px 10px 0px 10px;
	font-weight: bold;
}
.status {
	padding: 15px 10px;
	min-height: 19px;
	border-radius: 5px;
}
.gray-status {
	background-color: #f0f0f0;
	border: 1px solid #707070;
}
.green-status {
	background-color: #e5ffe3;
	border: 1px solid #0dbf00;
}
.red-status {
	background-color: #ffe3e3;
	border: 1px solid #bf0000;	
}
.status-text {
	font-size: 0.9rem;
}
.add-info {
	display: flex;
	flex-flow: column nowrap;
	margin: 30px 10px 0px 10px;
}
.add-info > *:nth-child(n+4) {
	margin-top: 10px;
}
.add-info > span:nth-of-type(n+5) {
	font-size: 0.9rem;
}
.add-info > span:nth-of-type(-n+4) {
	font-weight: bold;
}
.form {
	display: flex;
	flex-flow: row nowrap;
}
.form input {
	padding-left: 10px;
	width: 530px;
	height: 35px;
	font-family: Roboto, Tahoma;
	font-size: 1rem;
	border: 1px solid #abadb3;
}
.empty {
	background-color: #ffe3e3;
}
.button {
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	margin-left: 10px;
	width: 260px;
	height: 37px;
	background-color: #f0f0f0;
	border: 1px solid #abadb3;
	font-size: 0.9rem;
}
.button:hover {
	background-color: #e1effc;
}
.contacts-block {
	display: flex;
	flex-flow: column nowrap;
	margin: 30px 10px 0px 10px;
}
.contacts-block > span {
	font-weight: bold;
}
.contacts {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
}
.contacts img {
	width: 32px;
	height: 32px;
}
.contacts a {
	margin: 0px 7px 0px 7px;
}
.preloader {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background-color: #f4f4f4;
	z-index: 1;
}
.spinner {
	margin: -5px auto;
	width: 29px;
	height: 29px;
	border-top-color: #707070;
	border-left-color: #707070;
	border-bottom-color: transparent;
	border-right-color: transparent;
	animation: spinner 900ms linear infinite;
	border-style: solid;
	border-width: 1px;
	border-radius: 50%;
	box-sizing: border-box;
}
@keyframes spinner {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
.active {
	background-color: #e9e9e9;
	font-weight: bold;
}
.hide {
	display: none;
}
@media screen and (max-width: 1400px) {
	body > div:first-child {
		margin-top: 3%;
	}
}
@media screen and (max-width: 1050px) {
	html {
		font-size: 16px;
	}
	.product {
		width: 1000px;
	}
	.product-name-top-text {
		max-width: 850px;
	}
}
@media screen and (max-width: 800px) {
	html {
		font-size: 12px;
	}
	body > div:first-child {
		margin-bottom: 10px;
	}
	.product {
		width: 780px;
	}
	.product-info img {
		width: 353px;
		height: 165px;
	}
	.product-name {
		height: 50px;
	}
	.product-name > div {
		width: 80px;
	}
	.product-name > div {
		height: 30px;
	}
	.add-info .form input {
		width: 430px;
	}
	.product-name-top-text {
		max-width: 650px;
}