#pr_notes_input{
	resize:none;
}

#purchase_block{
	margin:auto;
	width:1000px;
	padding: 0 40px;
}

#pr_cont{
	display: flex;
}

#pr_leftblock{
	width:100%;
	background:white;
	border-radius:2px;
	padding: 15px;
	border:solid 3.5px #3aa4e7;
	height: 100%;
}

#pr_rightblock{
	width:100%;
	margin-left:25px;
}

.pr_text{
	font-size:18px;
	font-weight: bold;
	margin-bottom:2px;
}

.pr_input_c{
	margin-bottom:10px;
}

.pr_input{
	width:450px;
	border:solid 1px rgba(0,0,0,.3);
	background-color:white;
	transition: 100ms;
	padding:9px;
}

.pr_input:hover:not([type='text']){
	background-color:rgba(0,0,0,.005);
}

.pr_input:focus{
	border:solid 1px #f5c002;
}

#pr_itogo{
	display: flex;
	align-items: center;
	width:450px;
}

#pr_itogo_text{
	width: 30%;
}

#pr_itogo_sum{
	width:100%;
	font-size:30px;
	font-weight: bold;
	text-align: right;
}

#pr_proceed{
	width:450px;
	padding:10px;
	font-size:20px;
	margin-top:10px;
}

#pr_info{
	border:solid 3.5px #3aa4e7;
	background:white;
	padding: 5px 10px 25px;
	max-width: 500px;
}

.pr_i_item{
	display: flex;
	margin-bottom:10px;
	font-size:95%;
}

.pr_i_img{
	min-width: 55px;
	min-height: 55px;
	border:solid 1px rgba(0,0,0,.2);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pr_i_infoblock{
	position: relative;
	margin-left:10px;
	overflow:hidden;
}

.pr_i_name{
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	width:100%;
	font-weight: bold;
	margin-bottom:5px;
	display: block;
	color:black;
	text-decoration: none;
}

.pr_i_name:hover{
	text-decoration: underline;
}

.pr_i_price,
.pr_i_qty{
	color:rgba(0,0,0,.5);
	margin-bottom:4px;
}

#pr_i_itogo{
	display: flex;
	align-items: center;

	border-top:solid 1px rgba(0,0,0,.35);
	border-bottom:solid 1px rgba(0,0,0,.35);

	padding: 10px 0px;
}

#pr_i_itogo_text{
	width: 30%;
	font-size:20px;
}

#pr_i_itogo_sum{
	width:100%;
	text-align: right;
	font-size:30px;
	font-weight: bold;
}

#pr_i_text{
	cursor: pointer;
	user-select: none;
	-moz-user-select:none;
	-webkit-user-select:none;
}

#pr_i_text .fa-chevron-up{
	float:right;
	font-size:80%;
	margin-right:10px;
	transition: 100ms;
}

#pr_i_cart.hided{
	max-height: 0px;
	overflow:hidden;
}

.reqired_field{
	color:red;
	margin-left:10px;
}

@media screen and (max-width: 1100px){
	#pr_leftblock{
		width: calc(100% - 37px);
	}

	#pr_rightblock{
		margin: 20px 0 0 0;
	}

	#pr_cont{
		display: block;
	}

	#purchase_block{
		width:unset;
	}

	#pr_leftblock > *{
		text-align:center;
	}

	#pr_itogo{
		width:unset;
	}

	#pr_itogo_sum{
		text-align: center;
	}

	#pr_proceed{
		width:calc(100% - 40px);
	}

	#pr_info{
		max-width: unset;
	}
}

@media screen and (max-width: 620px){
	.pr_input{
		width: calc(100% - 25px);
	}
}

@media screen and (max-width: 470px){
	#pr_itogo{
		display: block;
	}

	#purchase_block{
		padding:0;
	}

	#pr_i_itogo{
		display: block;
		text-align: center;
	}

	#pr_i_itogo_sum{
		text-align:center;
	}
}