/**/
.siteConteiner > main{
	padding-top: 122px;
}
.makeNewOrderArea{
	width: 690px;
	padding-left: 120px;
}
.makeProp[data-property-id-row="4"]{
	display:none;
}
.makeOrderBlock{}
.makeOrderBlock .makeOrderTitle{
	margin-bottom: 62px;
	font-weight: 400;
	font-size: 56px;
	line-height: 100%;
	color: var(--blakc);
}
.makeBasketList{
	display: flex;
	flex-direction: column;
}
.makeBasketList .makeBasketItem{
	display: flex;
	margin-bottom: 24px;
}
.makeBasketList .makeBasketItem:last-child{
	margin-bottom: 0;
}
.makeBasketItem .makeItemImg{
	border: 1px solid var(--transparent-100);
	width: 92px;
	min-width: 92px;
	background-color: var(--white);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	margin-right: 16px;
}
.makeBasketItem .makeItemInfo{
	width: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
}
.makeItemInfo .makeItemRemove{
	position: absolute;
	right:0;
	bottom:0;
	background: url(../img/trash.svg) no-repeat center;
	width: 42px;
	height: 24px;
	opacity:0.3;
}
.makeItemInfo .makeItemRemove:hover{
	cursor: pointer;
	opacity: 1;
}
.makeItemInfo .makeItemName{
	font-size: 16px;
	line-height: 162%;
	color: var(--blakc);
}
.makeItemInfo .makeItemPrice{
	white-space: nowrap;
	font-weight: 700;
	font-size: 20px;
	line-height: 130%;
	color: var(--blakc);
	margin-bottom: 12px;
}
.makeItemQa .makeItemQaBlock{
	display: inline-flex;
	border: 1px solid var(--blakc);
	border-radius: 6px;
}
.makeItemQaBlock .plus,
.makeItemQaBlock .minus{
	cursor: pointer;
	width: 24px;
	min-width: 24px;
	height: 24px;
	border-radius: 0 5px 5px 0;
	background-color: var(--blakc);
	background-image: url(../img/plus.svg);
	background-position: center;
	background-repeat: no-repeat;
}
.makeItemQaBlock .minus{
	border-radius: 5px 0 0 5px;
	background-image: url(../img/minus.svg);
}
#order_form_div .makeItemQaBlock input,
.makeItemQaBlock input{
	border: 0 none;
	background: var(--white);
	height: 24px;
	padding: 0 4px;
	width: 32px;
	font-size: 20px;
	line-height: 24px;
	text-transform: uppercase;
	text-align: center;
	color: var(--blakc);
	margin-bottom: 0;
	box-shadow: none;
}



.makeMakeBlock{
	padding-top: 144px;
}
.makeMakeBlock .makeOrderTitle{
	padding: 40px 0;
	margin-bottom: 0;
}
.makeBlock{
	border-top: 1px solid var(--transparent-300);
	padding: 40px 0;
}
.makeBlock .makeBlockTitle{
	font-weight: 900;
	font-size: 24px;
	line-height: 100%;
	color: var(--blakc);
	margin: 0;
}
.makeBlockTitle.geoMakeTitle{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
.makeBlockTitle.geoMakeTitle .geoMakeSelect {
	margin-left: 20px;
	font-weight: normal;
	cursor: pointer;
}
.makeBlockTitle.geoMakeTitle .geoMakeSelect::after {
	content: "";
	display: inline-block;
	width: 25px;
	height: 25px;
	background: url(../img/down_grey.svg) no-repeat center;
	margin-left: 1px;
	vertical-align: bottom;
}
.makeProp .makePropsTitle{
	font-weight: 400;
	font-size: 14px;
	line-height: 100%;
	color: #000;
	margin-bottom: 8px;
}
.makeBlock .makeBlockPropsArea{
	margin-top: 24px;
}
.makeBlockPropsArea .makeProp{
	margin-bottom: 16px;
}
.makeBlockPropsArea .makeProp:last-child{
	margin-bottom: 0;
}
#order_form_div .makePropsValue input[type="text"],
.makePropsValue input[type="text"]{
	width: 100%;
	border: 1px solid var(--transparent-700);
	border-radius: 8px;
	padding: 12px 16px;
	font-family: var(--second-family);
	font-weight: 400;
	font-size: 20px;
	line-height: 120%;
	color: var(--blakc);
}
.makeProp[data-property-id-row="6"],
.makeProp[data-property-id-row="20"]{
	display: none;
}
.makeCheckList{
	display: flex;
	flex-direction: column;
	margin-top: 24px;
}
.makeCheckList .makeCheckItem{
	display: flex;
	align-items: center;
	margin: 0;
	min-height:40px;
}
.makeCheckItem input{
	display: none;
}
.makeCheckItem .makeCheckIcon{
	border: 1px solid var(--gray-400);
	border-radius: 50%;
	width: 16px;
	min-width: 16px;
	height: 16px;
	margin-right: 14px;
	transition: background-color ease 0.3s;
}
.makeCheckItem input:checked ~ .makeCheckIcon{
	border: 1px solid var(--blakc);
	background: var(--blakc) url(../img/check.svg) no-repeat center;
	transition: background-color ease 0.3s;
}
.makeCheckItem .makeCheckText{
	font-weight: 400;
	font-size: 20px;
	line-height: 100%;
	color: var(--blakc);
}

.paysDeliveryList{
	display: flex;
	flex-direction: column;
}
.paysDeliveryList .deliveryItem,
.paysDeliveryList .paySystemItem{
	border: 2px solid var(--transparent-100);
	border-radius: 4px;
	padding: 8px;
	position: relative;
	margin-bottom: 16px;
}
.paysDeliveryList .deliveryItem:last-child,
.paysDeliveryList .paySystemItem:last-child{
	margin-bottom: 0;
}
.paysDeliveryList .deliveryItem.select,
.paysDeliveryList .paySystemItem.select{
	border: 2px solid var(--blue);
}
.deliveryItem .selectIcon,
.paySystemItem .selectIcon{
	width: 22px;
	height: 22px;
	background: url(../img/checkPay.svg) no-repeat center;
	position: absolute;
	top: 16px;
	right: 16px;
	cursor: pointer;
	filter: grayscale(255);
	z-index:1;
}
.deliveryItem.select .selectIcon,
.paySystemItem.select .selectIcon{
	filter: grayscale(0);
}
.deliveryItem > input[type="radio"],
.paySystemItem > input[type="radio"]{
	cursor: pointer;
	opacity:0;
	position: absolute;
	top: 10px;
	right: 10px;
	width: 26px;
	height: 26px;
	z-index:2;
}
.paysDeliveryList{
	margin-top: 24px;
}
.payDeliveryInfo{
	display: flex;
	padding: 8px 0;
}
.payDeliveryInfo ~ .payDeliveryMoreInfo{
	margin-top: 20px;
}
.payDeliveryInfo ~ .payDeliveryText{
	margin-top: 16px;
}
.payDeliveryInfo .payDeliveryIcon{
	width: 72px;
	min-width: 72px;
	margin-right: 12px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}
.payDeliveryInfo .payDeliveryInfoText{
	width: 100%;
}
.payDeliveryInfoText .payDeliveryName{
	padding-right: 35px;
	font-weight: 700;
	font-size: 14px;
	line-height: 164%;
	color: var(--blakc);
}
.payDeliveryInfoText .payDeliveryShort{
	font-size: 14px;
	line-height: 129%;
	color: var(--blakc);
}
.payDeliveryShort > div br{
	display: none;
}
.payDeliveryMoreInfo{
	cursor: pointer;
	text-align: center;
	border-radius: 4px;
	padding: 16px 0;
	background: var(--transparent-50);
	font-weight: 400;
	font-size: 14px;
	line-height: 114%;
	text-transform: uppercase;
	color: var(--blakc);
}
.selectDays{
	margin-top: 24px;
}
.payDeliveryDescriptionArea{
	text-align: center;
}
.deliveryItem:not(.select) .payDeliveryDescriptionArea .sdek_pvzLair .sdek_pvzAddr,
.deliveryItem:not(.select) .payDeliveryDescriptionArea .sdek_pvzLair .SDEK_selectPVZ{
	display:none;
}
.deliveryItem .payDeliveryDescriptionArea .bxbbutton,
.deliveryItem .payDeliveryDescriptionArea .SDEK_selectPVZ {
	display: inline-block;
	border: 0 none;
	border-radius: 5px;
	padding: 12px 16px;
	cursor: pointer;
	background: #7ebc51;
	font-weight: 400;
	font-size: 14px;
	line-height: 110%;
	text-transform: uppercase;
	text-align: center;
	color: #000;
	text-decoration: none;
	transition: all ease 0.3s;
	margin: 8px auto;
}
.deliveryItem .payDeliveryDescriptionArea .bxbbutton:hover,
.deliveryItem .payDeliveryDescriptionArea .SDEK_selectPVZ:hover{
	background: #8dd55a;
	transition: all ease 0.3s;
}
.deliveryItem .payDeliveryDescriptionArea .bxbbutton img{
	display:none;
}
.deliveryItem .payDeliveryDescriptionArea .sdek_pvzLair .sdek_pvzAddr{
	margin-bottom:8px;
	display:block;
	font-size: 14px;
}
.payDeliveryText{
	text-align:left;
	font-weight: 400;
	font-size: 14px;
	line-height: 129%;
	color: #000;
}

.makeItogFixed{
	position: fixed;
	top:126px;
	left: calc(((100vw - 1405px) / 2) + 840px);
	width: 450px;
}
.makeItogBlock{
	background: var(--blakc);
	color: var(--white);
	border-radius: 16px;
	padding: 16px;
}
.makeItogLine{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 16px;
}
.makeItogLine .name{
	font-size: 16px;
	line-height: 100%;
	max-width: 55%;
}
.makeItogLine .value{
	font-size: 16px;
	line-height: 100%;
	max-width: 45%;
}
.makeItogLine.wi .value{
	line-height: 110%;
	width: 45%;
}
.makeItogLine.green{
	color: var(--service-colors-green-dark);
}
.makeItogItogo{
	margin-bottom: 24px;
}
.makeItogItogo .name{
	font-size: 36px;
	line-height: 111%;
}
.makeItogItogo .value{
	font-weight: 700;
	font-size: 36px;
	line-height: 111%;
	white-space: nowrap;
}
.makeItogSeparator{
	height: 1px;
	width: 100%;
	margin: 24px 0;
	background: rgba(255, 255, 255, 0.2);
}
.makeItogForButtons{

}
.makeItogForButtons .makeItogBtn{
	display: block;
	border: 0 none;
	border-radius: 8px;
	padding: 18px 80px;
	cursor: pointer;
	background: #7ebc51;
	font-weight: 400;
	font-size: 20px;
	line-height: 110%;
	text-transform: uppercase;
	text-align: center;
	color: #000;
}
.makeItogSubText{
	margin-top: 16px;
	font-weight: 400;
	font-size: 16px;
	line-height: 137%;
	text-align: center;
	color: #000;
}
.makeItogSubText a{
	font-weight: 400;
	font-size: 16px;
	line-height: 137%;
	text-align: center;
	color: #000;
}
input{
	box-sizing: border-box;
}