.header_basket{
	position: absolute;
	top: 73px;
  left: 78%;
}
.header_basket .ico_bask{
	width: 25px;
	height: 25px;
	background: #0c826c;
	margin-right: 7px;
	transition: 100ms;
	position: relative;
}
.header_basket .ico_bask svg{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	max-width: 100%;
	max-height: 100%;
	margin: auto;
	height: auto;
	width: auto;
}
.header_basket a{
	display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
  color: #585858;
  font-size: 16px;
}
.header_basket a:hover .ico_bask{
	background: #e46c02;
}

.basket_section{
	padding-top: 20px;
}

.basket_section .table_basket{
	/*overflow: auto;*/
	padding-bottom: 28px;
	border-bottom: 1px dotted #c1c1c1;
	margin-top: 10px
}
.basket_section .table_basket table{
	width: 100%;
	font-family: 'eb_garamondregular';
}
.basket_section .table_basket table th{
	color: #585858;
	font-size: 13px;
	vertical-align: middle;
	padding-top: 7px;
	padding-bottom: 7px;
	font-family: 'pt_sansregular';
	font-weight: 400;
}
.basket_section .table_basket table td{
	border: 1px solid #c1c1c1;
}
.basket_section .table_basket table td.td_img{
	padding-top: 4px;
	padding-bottom: 4px;
	padding-left: 5px;
	padding-right: 5px;
	width: 84px;
	text-align: center;
	font-size: 0;
}
.basket_section .table_basket table td .image_block{
	height: 80px;
	display: inline-block;
}
.basket_section .table_basket table td .image_block img{
	height: 100%;
	width: auto;
}
.basket_section .table_basket table td.td_name{
	padding: 15px 8px 10px;
	vertical-align: top;
}
.basket_section .table_basket table td .author_name{
	font-size: 21px;
	color: #0c826c;
}
.basket_section .table_basket table td .short_desc{
	font-size: 21px;
	color: #0f0f13;
}
.basket_section .table_basket table td.td_count{
	padding:10px 20px;
	vertical-align: middle;
	text-align: center;
	width: 170px;
}
.basket_section .table_basket table td .count_block{
	width: 128px;
	margin-left: auto;
	margin-right: auto;
	display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.basket_section .table_basket table td .count_block .btn_count{
	width: 26px;
	height: 26px;
	cursor: pointer;
	background: #0c826c;
	position: relative;
	transition: 150ms;
}
.basket_section .table_basket table td .count_block .btn_count:hover{
	background: #e46c02;
}
.basket_section .table_basket table td .count_block .btn_count.btn_minus:before,
.basket_section .table_basket table td .count_block .btn_count.btn_plus:before{
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 16px;
	height: 2px;
	display: block;
	transform: translate(-50%, -50%);
	background: #fff;
}
.basket_section .table_basket table td .count_block .btn_count.btn_plus:after{
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 2px;
	height: 16px;
	display: block;
	transform: translate(-50%, -50%);
	background: #fff;
}
.basket_section .table_basket table td .count_block .count_input{
	width: 60px;
	height: 26px;
	border: 1px solid #c1c1c1;
	font-size: 20px;
	color: #585858;
	text-align: center;
	padding-left: 5px;
	padding-right: 5px;
	-webkit-appearance: none;
	margin: 0;
	-moz-appearance: textfield;
}


.basket_section .table_basket table td .count_block .count_input::-webkit-outer-spin-button,
.basket_section .table_basket table td .count_block .count_input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
	-moz-appearance: textfield;
}
.basket_section .table_basket table td .count_block .count_input:hover,
.basket_section .table_basket table td .count_block .count_input:focus{
	-moz-appearance: number-input;
}
.basket_section .table_basket table td.td_price{
	font-size: 21px;
	color: #0c826c;
	padding-left: 15px;
	padding-right: 10px;
	font-family: 'pt_sansregular';
	font-weight: 400;
	border-right: none;
}
.basket_section .table_basket table td.td_del{
	border-left: none;
	width: 60px;
	padding-left: 5px;
	padding-right: 5px;
	vertical-align: middle;
}
.basket_section .table_basket table td .btn_remove{
	width: 26px;
	height: 26px;
	cursor: pointer;
	background: #0c826c;
	position: relative;
	transition: 150ms;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.basket_section .table_basket table td .btn_remove:hover{
	background: #e46c02;
}
.basket_section .table_basket table td .btn_remove:before{
	content: "";
	position: absolute;
	top: 12px;
	left: 5px;
	width: 16px;
	height: 2px;
	display: block;
	transform: rotate(45deg);
	background: #fff;
}
.basket_section .table_basket table td .btn_remove:after{
	content: "";
	position: absolute;
	top: 12px;
	left: 5px;
	width: 16px;
	height: 2px;
	display: block;
	transform: rotate(-45deg);
	background: #fff;
}
.basket_section .table_basket table td.td_empty{
	border-left: none;
	border-bottom: none;
}
.basket_section .table_basket table td.td_total{
	font-size: 21px;
	padding: 15px;
	font-family: 'eb_garamondregular';
	line-height: 1;
}
.basket_section .table_basket table td.td_total span{
	font-family: 'pt_sansregular';
	color: #0c826c;
	font-weight: 700;
}
.basket_section .order_basket{
	margin-top: 20px;
}
.basket_section .order_basket .order_rules{
	margin-top: 22px;
}
.basket_section .order_basket .order_rules .order_label{
	margin-bottom: 0;
	cursor: pointer;
	padding-left: 23px;
	position: relative;
	display: inline-block;
}
.basket_section .order_basket .order_rules .order_label .label_inp{
	position: absolute;
	left: 0;
	top: 0;
}
.basket_section .order_basket .order_rules .order_label .label_text{
	color: #585858;
	font-size: 13px;
	font-family: 'pt_sansregular';
}
.basket_section .order_basket .order_rules .order_label .label_text span{
	font-weight: 700;
}
.basket_section .order_basket .order_rules .order_label .label_text a{
	color: #3a8cc1;
}
.basket_section .order_basket .order_form{
	margin-top: 0px;
	padding-bottom: 10px;
	display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.basket_section .order_basket .order_form .big_contain{
	margin-right: 20px;
	width: 320px;
	min-width: 320px;
}
.basket_section .order_basket .order_form .form_block{
	margin-top: 15px;
}
.basket_section .order_basket .order_form .form_block.form_block_max{
	max-width: 200px;
	width: 200px;
}
.basket_section .order_basket .order_form .form_block label{
	display: block;
}
.basket_section .order_basket .order_form .form_block .label_title{
	margin-bottom: 6px;
	font-size: 13px;
	font-weight: 400;
	color: #585858;
	font-family: 'pt_sansregular';
}
.basket_section .order_basket .order_form .form_block .input_order{
	width: 100%;
	height: 25px;
	border: 1px solid #c1c1c1;
	padding-left: 10px;
	padding-right: 10px;
	font-size: 13px;
	color: #585858;
	font-family: 'pt_sansregular';
	font-weight: 400;
}
.basket_section .order_basket .order_form .mini_contain{
	min-width: 200px;
}
.basket_section .order_basket .order_form .form_block_text{
	margin-top: 6px;
	font-size: 13px;
	color: #585858;
	font-family: 'pt_sansregular';
	font-weight: 400;
}
.basket_section .order_basket .order_form .form_block .btn_send{
	width: 100%;
	height: 25px;
	line-height: 25px;
	color: #fff;
	background: #0c826c;
	font-size: 19px;
	text-align: center;
	font-family: 'eb_garamondregular';
	border: none;
	transition: 100ms;
}
.basket_section .order_basket .order_form .form_block .btn_send:hover{
	background: #e46c02;
}

.form_block .btn_send {
    width: 200px;
    height: 25px;
    line-height: 25px;
    color: #fff;
    background: #0c826c;
    font-size: 19px;
    text-align: center;
    font-family: 'eb_garamondregular';
    border: none;
    transition: 100ms;
}
.form_block .btn_send:hover {
	background: #e46c02;
}
.order_basket .error{
	margin-top: 20px;
	font-family: 'eb_garamondregular';
	color:#e46c02;
}

@media (max-width: 1199px) {
	header .social{
		display: none;
	}
	.header_basket{
		left: auto;
		right: 0;
	}
}
@media (max-width: 991px) {
	#cont_punkt {
		margin-left: 0;
		margin-bottom: 0px;
	}
	.form_block .btn_send {
		margin-top: 25px;
	}
	.header_basket{
		right: 60px;
		top: 39px;
	}
	.basket_section .table_basket table td .short_desc,
	.basket_section .table_basket table td .short_name{
		font-size: 17px;
	}
	.basket_section .table_basket table td.td_del{
		width: 40px;
	}
	.basket_section .table_basket table td.td_price{
		font-size: 17px;
		padding-left: 10px;
	}
	.basket_section .table_basket table td.td_count{
		width: 150px;
		padding-left: 10px;
		padding-right: 10px;
	}
	.basket_section .table_basket table td.td_img{
		width: 66px;
	}
	.basket_section .table_basket table td.td_total{
		font-size: 17px;
		padding: 10px;
	}
	.basket_section .order_basket .order_form{
		display: block;
	}
	.basket_section .order_basket .order_form .big_contain,
	.basket_section .order_basket .order_form .form_block.form_block_max{
		margin-right: 0;
		min-width: 0;
		width: 100%;
		max-width: 320px;
	}
}
@media (max-width: 767px) {
	header .menu_box {
    margin-left: 0;
    margin-right: 0;
    float: left;
    width: 100%;
    padding-top: 12px;
	}
	.header_basket {
    right: 50%;
    transform: translate(50%);
	}
}
@media (max-width: 599px) {
	.header_basket {
		top: 28px;
		right: 44%;
	}
	.basket_section .table_basket table tr{
		display: block;
		position: relative;
		margin-bottom: 20px;
	}
	.basket_section .table_basket table td{
		display: block;
	}
	.basket_section .table_basket table td.td_img{
		width: 100%;
		border-bottom: none;
	}
	.basket_section .table_basket table td.td_count{
		width: 100%;
		border-top: none;
		border-bottom: none;
	}
	.basket_section .table_basket table td.td_name{
		text-align: center;
		border-top: none;
		border-bottom: none;
		padding-top: 15px;
		padding-bottom: 15px;
	}
	.basket_section .table_basket table td.td_del{
		width: 100%;
		padding: 0;
		border: none;
	}
	.basket_section .table_basket table td .btn_remove{
		position: absolute;
		right: 0;
		top: 0;
	}
	.basket_section .table_basket table td.td_price{
		text-align: center;
		border-top: none;
		font-size: 21px;
		padding: 10px;
		border-right: 1px solid #c1c1c1;
	}
	.basket_section .table_basket table td.td_empty{
		display: none;
	}
	.basket_section .table_basket table td.td_total{
		text-align: center;
		font-size: 21px;
	}
	.basket_section .table_basket table thead{
		display: none;
	}
	.basket_section .table_basket{
		margin-top: 20px;
	}
}





