.subscribe-form--footer .error {
	color: var(--error-color);
	border-color: var(--error-color);
}

.subscribe-form--footer .error:not(input) {
	margin-top: 8px;
	font-size: 12px;
}

.subscribe-form__description,
.subscribe-form__title {
	margin-bottom: 16px;
}

.subscribe-form__title {
	font-weight: 700;
}

.subscribe-form__input-box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	width: fit-content;
	max-width: 100%;
	background: linear-gradient(0deg, rgba(235, 235, 235, 0.45), rgba(235, 235, 235, 0.45)), #ffffff;
	border-radius: 29px;
	height: 48px;
	box-sizing: border-box;
	transition: border 0.25s ease;
}

.subscribe-form__input-box input.subscribe-form__input-box__input::placeholder {
	color: #A8A9AD;
}

.subscribe-form__input-box.form-error input,
.subscribe-form__input-box.form-error input::placeholder {
	color: var(--error-color);
}

.subscribe-form__input-box__left {
	width: calc(100% - 44px);
	box-sizing: border-box;
	padding-left: 16px;
}

.subscribe-form__input-box__right {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	box-sizing: border-box;
	background: url("images/arrow.svg") no-repeat center;
	background-size: 60%;
	outline: none;
	border: 1px solid var(--orange-color);
	-webkit-appearance: none;
	transition: border 0.5s ease, background-color 0.5s ease;
}

.subscribe-form__input-box__right:hover {
	background-color: #ffa26d;
}

.subscribe-form__input-box__input {
	background: none;
	outline: none;
	border: none;
	-webkit-appearance: none;
	width: 100%;
}

.subscribe-form__submit {
	position: absolute;
	right: 2px;
}

.checkbox-confirm-wrapper {
	margin-top: 16px;
	display: flex;

}

input.checkbox-confirm-checkbox {
	display: none;
}

label.checkbox-confirm-checkbox {
	width: 15px;
	min-width: 15px;
	height: 15px;
	border: 1px solid #a8a9ad;
	box-sizing: border-box;
	margin-right: 8px;
	background: url("images/select.svg") no-repeat center;
	background-size: 0;
	cursor: pointer;
	transition: background-size 0.5s ease, border-color 0.5s ease;
}

.checkbox-confirm-label {
	font-size: 10px;
	cursor: pointer;
	opacity: 0.5;
	transition: opacity 0.5s ease;
}

.checkbox-confirm-label a {
	color: inherit;
	text-decoration: underline;
	transition: color 0.5s ease;
}

.checkbox-confirm-wrapper:hover label.checkbox-confirm-checkbox,
input:checked+label.checkbox-confirm-checkbox {
	border-color: var(--orange-color);
}

.checkbox-confirm-wrapper:hover .checkbox-confirm-label {
	opacity: 1;
}

.checkbox-confirm-label a:hover {
	color: var(--orange-color);
}

input:checked+label.checkbox-confirm-checkbox {
	background-size: 70%;
}

.form-error .checkbox-confirm-label {
	color: var(--error-color);
}

.input-error {
	height: 0;
	opacity: 0;
	color: var(--error-color);
	overflow: hidden;
	transition: height 0.25s ease, opacity 0.25s ease, margin-top 0.25s ease;
}

.form-error+.input-error,
.form-error .input-error {
	opacity: 1;
	height: auto;
	margin-top: 3px;
}

@media screen and (max-width: 1023px) {
	.checkbox-confirm-wrapper {
		justify-content: flex-start;
	}

	.subscribe-form__title {
		font-weight: 500;
		font-size: 18px;
		line-height: 22px;
	}

	.subscribe-form__description {
		font-weight: 400;
		font-size: 15px;
		line-height: 140%;
	}

	.subscribe-form__input-box {
		width: 100%;
	}

}