/* [174046] Подписка на автора. Доделать кейс подписки после авторизации если нет мыла у юзера */
.popup-asking-email {
	background: #fff;
	margin: 10px auto;
	width: 300px;
	padding: 30px;
	color: #202020;
}
.popup-asking-email.popup .close {
	top: 23px;
	right: 23px;
}
.popup-asking-email__title {
	font-weight: normal;
	font-size: 16px;
	line-height: 20px;
	margin: 0 30px 19px 0;
}
.popup-asking-email__email {
	height: 40px;
	width: 100%;
	border: 1px solid #9D9C9F;
	background-color: #FFFFFF;
	font-family: Arial;
	font-size: 16px;
	line-height: 41px;
	padding: 0 9px;
	outline: none;
}
.popup-asking-email__email::placeholder {
	color: #C4C4C6;
}
.popup-asking-email__email::-ms-input-placeholder {
	color: #C4C4C6;
}
.popup-asking-email__email:-ms-input-placeholder {
	color: #C4C4C6;
}
.popup-asking-email__email::-webkit-input-placeholder {
	color: #C4C4C6;
}
.popup-asking-email__button-wrapper {
	position: relative;
	width: 240px;
	height: 40px;
	margin: 20px auto 0 auto;
}
.popup-asking-email__button {
	width: 100%;
	font-size: 14px;
	line-height: 36px;
	padding: 0 10px;
}
.popup-asking-email__error-title {
	font-size: 20px;
	font-weight: bold;
	line-height: 24px;
	margin-bottom: 21px;
}
.popup-asking-email__error-text {
	margin: 0 0 29px 0;
}
.popup-asking-email__back-button {
	width: 120px;
	height: 40px;
	line-height: 40px;
}
.popup-asking-email[data-error] .popup-asking-email__email {
	border: 1px solid #f33;
}
.popup-asking-email__form-error {
	display: block;
	color: #FF1A00;
	font-size: 14px;
	line-height: 20px;
}
.popup-asking-email__form-error.hidden {
	display: none;
}
/* лоадер */
.progress-bar {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 40px;
	display: none;
	z-index: 1;
	border-radius: 3px;
}
.progress-bar__wrapper {
	position: relative;
	display: flex;
	justify-content: center;
	height: 100%;
}
.progress-bar__spinner {
	width: 240px;
	margin-top: -4px;
	overflow: hidden;
	position: absolute;
	height: 8px;
	top: 50%;
	left: 20px;
	border-radius: 5px;
}
.progress-bar__spinner::before {
	content: "";
	position: absolute;
	left: -10%;
	width: 50%;
	height: 100%;
	opacity: 0.7;
	-webkit-animation: progress 1.5s ease-out infinite;
	animation: progress 1.5s ease-out infinite;
	border-radius: 5px;
}
@-webkit-keyframes progress {
	0% {
		left: -10%;
	}
	50% {
		left: 60%;
	}
}
@keyframes progress {
	0% {
		left: -10%;
	}
	50% {
		left: 60%;
	}
}