.main_sales{
	padding: 60px 0;
}

.main_sales-wrap{
	display: flex;
	flex-direction: row;
}

.main_sales-wrap > div:first-child{
	margin-right: 30px;
}

.main_sales-item{
	background-color: var(--main_bg_gray);
	border-radius: 8px;
	overflow: hidden;
}

.main_subscribe-block{
	padding: 40px 50px;
	background-size: cover;
	background-position: bottom;
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
}

.main_sales-distribution{
	flex: 1;
}

#sender-subscribe{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}



.distribution_title{
	font-weight: 600;
	font-size: 22px;
	line-height: 26px;
	margin-bottom: 12px;
}

.distribution_subtitle{
	font-weight: 300;
	font-size: 16px;
	line-height: 20px;
	margin-bottom: 28px;
}
.subform-row{
	flex-direction: column;
}
.subform-col.email-wrap{
	width: 410px;
}

.bx-input-group{
	width: 100%;
	height: 50px;
	background-color: #fff;
	border: 1px solid #E3E3E3;
	border-radius: 6px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	padding: 4px;
	margin-bottom: 12px;
}

.bx-form-control{
	width: 100%;
	border-radius: 6px;
	padding: 0 10px 0 20px;
	font-size: 16px;
	line-height: 16px;
	background-color: #fff !important;
}

.bx-form-control:-webkit-autofill,
.bx-form-control:-webkit-autofill:hover,
.bx-form-control:-webkit-autofill:focus,
.bx-form-control:-webkit-autofill:active  {
	-webkit-box-shadow: 0 0 0 30px white inset !important;
}

.bx-form-control::placeholder{
	font-weight: 400;
	font-size: 14px;
	line-height: 16px;
	color: var(--main_text_gray);
}

.bx-input-group .btn-subscribe{
	width: 54px;
	height: 42px;
	background: var(--main_color);
	border-radius: 4px;
	transition: 0.2s linear;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: var(--main_text_button);
}

.bx-input-group .btn-subscribe svg{
	fill: currentColor;
	will-change: transform;
}

.bx-input-group .btn-subscribe:hover{
	background-color: var(--yellow-button-hover);
	transition: 0.2s linear;
}

.bx-input-group .btn-subscribe:active{
	transform: scale(0.95);
	transition: 0.2s linear;
}
.bx-input-group .btn-subscribe[disabled]{
	pointer-events: none;
	background-color: var(--border-bottom-gray);
	color: #AEAEAE;
	border: none;
	cursor: default;
}

#sender_subscribe_component{
	background: #FFFFFF;
	box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.2);
	border-radius: 12px;
	padding: 60px 40px 40px 40px;
	width: 400px;
}
.stock-popup-wrap{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.stock-popup-title{
	font-weight: 700;
	font-size: 24px;
	line-height: 100%;
	margin-bottom: 40px;
}
.stock-popup-img{
	width: 80px;
	height: 80px;
	margin-bottom: 40px;
}
.stock-popup-text{
	font-weight: 400;
	font-size: 14px;
	line-height: 160%;
	margin-bottom: 40px;
}
.stock_popup_ok{
	font-weight: 500;
	font-size: 14px;
	line-height: 16px;
	display: block;
	width: 100%;
	background-color: var(--main_color);
	color: var(--main_text_button);
	height: 50px;
	border-radius: 6px;
	text-align: center;
	transition: 0.2s linear;
}

.stock_popup_ok:hover{
	background-color: var(--yellow-button-hover);
	transition: 0.2s linear;
}

.stock_popup_ok:active{
	transform: scale(0.95);
	transition: 0.2s linear;
}

#sender_subscribe_component .popup-window-close-icon:after{
	background-image: url("./images/close-btn.svg");
}

#sender_subscribe_component .popup-window-close-icon{
	width: 31px;
	height: 31px;
	right: 14px;
	top: 14px;
	border-radius: 4px;
	transition: 0.2s linear;
	opacity: 1;
}

#sender_subscribe_component .popup-window-close-icon:hover{
	opacity: 1;
	background-color: var(--main_bg_gray);
	transition: 0.2s linear;
}

#sender_subscribe_component .popup-window-close-icon:active{
	background-color: #E4E4E4;
	transition: 0.2s linear;
}
.hidden-desc{
	display: none;
}

@media (max-width: 1480px){
	.distribution_head{
		width: 70%;
	}
}

@media (max-width: 1350px){
	.main_subscribe-block{
		background-position: 30%;
	}
}

@media (max-width: 1080px){
	.main_sales{
		padding: 40px 0;
	}
	.main_sales-wrap{
		flex-direction: column;
	}
	.main_sales-wrap > div:first-child{
		margin: 0 0 30px 0;
	}
}
@media (max-width: 768px){
	.distribution_head{
		width: 100%;
	}
	.main_subscribe-block{
		padding: 24px;
	}
	.main_subscribe-block{
		background: var(--main_bg_gray)!important;
	}
}
@media (max-width: 576px){
	.main_sales{
		padding: 25px 0;
	}
	.main_sales-wrap{
		flex-direction: column;
	}
	.main_sales-item{
		height: auto;
		max-height: unset;
	}
	.subform-row{
		width: 100%;
		margin: 0!important;
	}
	.subform-col{
		padding: 0!important;
	}
	.subform-row .bx-form-control{
		padding: 0 4px;
	}
	.bx-input-group{
		max-width: 300px;
	}
	.distribution_title{
		font-size: 16px;
		line-height: 19px;
		margin-bottom: 8px;
	}
	.distribution_subtitle{
		font-weight: 400;
		font-size: 12px;
		line-height: 14px;
		margin-bottom: 20px;
	}
	.bx-input-group{
		height: 46px;
	}
	.bx-input-group .btn-subscribe{
		width: 50px;
		height: 38px;
		flex-shrink: 0;
	}
	#sender_subscribe_component{
		padding: 32px 24px 24px;
		width: calc(100% - 32px);
	}
}
@media (max-width: 440px){
	.bx-input-group{
		max-width: none;
	}
}


