.product__images {
	display: inline-flex;
	flex-wrap: wrap;
	width: 420px;
	text-align: center;
}
.product__image {
	margin-right: 10px;
	margin-bottom: 10px;
}
.product__image:first-child img {
	width: 410px;
}
.product__description {
	flex: 1 0;
  	text-align: right;
}
.product__text {
	-webkit-box-shadow: 2px 3px 5px 0px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: 2px 3px 5px 0px rgba(0, 0, 0, 0.75);
	box-shadow: 2px 3px 5px 0px rgba(0, 0, 0, 0.75);
  	padding: 10px 15px;
  	text-align: left;
}
.product__description h1 {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 25px;
}
.make-offer {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.make-offer div {
	box-sizing: border-box;
}
.make-offer > div {
	margin-bottom: 20px;
	display: flex;
}
.make-offer > div > div:first-child {
	width: 230px;
	padding-right: 16px;
}
.make-offer > div > div:last-child {
	width: 230px;
}
input[type=text], textarea {
	border-radius: 4px;
	padding: 5px;
	width: 100%;
	box-sizing: border-box;
/*	
	border-top: 2px solid rgb(154, 154, 154);
	border-left: 2px solid rgb(154, 154, 154);
	border-bottom: 2px solid rgb(238, 238, 238);
	border-right: 2px solid rgb(238, 238, 238);
*/
	border: 1px solid #aaaaaa;
}
input[type=text]:focus, textarea:focus, input[type=text]:hover, textarea:hover {
	background-color: #ffffe0;
	border-color: rgba(82, 168, 236, 0.8);
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);	
}
textarea {
	width: 100%;
	height: 100px;
}
.make-offer div.name, .make-offer div.country, .make-offer div.offer {
	width: 100%;
}/* 
.make-offer div.email, .make-offer div.phone {
	width: 47%;
} */
.product__controls {
	display: flex;
	flex-wrap: wrap;
  	justify-content: flex-end;
}
.product__controls input[type=email], .product__controls .pdf input {
	display: flex;
	flex-wrap: wrap;
	width: 187px !important;
	font-size: 12px;
	padding: 10px;
}
.product__controls a, .product__controls input[type=email], .product__controls .pdf input {
	margin-left: 20px;
	margin-bottom: 20px;
}
.product__controls .pdf {
  	display: flex;
}
.show-price-text {
	font-size: 17px;
	padding-top: 10px;
	padding-bottom: 10px;
}
.modal {
	opacity: 0;
	position: fixed;
	z-index: 3;
	background-color: rgb(255, 255, 255);
	padding: 20px;
	width: 490px;
	left: 50%;
	margin-left: -99999px;
	top: 50%;
}
.fog {
	display: none;
	position: fixed;
	z-index: 2;
	background-color: rgba(0, 0, 0, 0.5);
	left: 0px;
	top: 0px;
	width: -webkit-fill-available;
	height: -webkit-fill-available;	
}
.modal > .close {
	position: absolute;
	right: 15px;
	top: 15px;
	font-weight: bold;
	font-size: 25px;
	color: rgb(100, 100, 100);
	text-decoration: none;
	cursor: pointer;
}
.modal > .close:hover {
	color: rgb(150, 150, 150);
}
.modal h3 {
	margin-bottom: 20px;
	font-weight: bold;
}