.modal, .info, .modal-info {
	position: fixed;
	inset: 0;
	z-index: -10;
	background-color: rgba(0, 0, 0, 0.7);
	display: flex;
	cursor: pointer;
	overflow-x: hidden;
	overflow-y: auto;		
	transform: translateY(-5000px);
	transition: all 0.3s;
}
.modal.visible,
.info.visible,
.modal-info.visible {
	transform: translateY(0px);	
	z-index: 999;
}
.modal__block, .modal-info__info {
	position: relative;
	width: 600px;
	padding: 20px 40px;
	margin: auto;	
	border-radius: 20px;	
	background-color:#F3F3F3;
	backdrop-filter: blur(25px);
	cursor: default;		
}
.modal-info__info {
	width: 600px;
	min-height: 570px;
	text-align: center;
	display: flex;
	justify-content: center;
}
.modal__container {
	display: flex;
	flex-direction: column;
	gap: 40px;			
}

.modal__title {
	font-weight: 400;
	font-size: 36px;
	line-height: 120%;	
	max-width: 500px;
	font-family: "Plovdiv Display", sans-serif;
}
.modal__form {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 100%;
	font-family: 'Montserrat', sans-serif;
}

.modal__label {
	display: flex;
	align-items: center;
	gap: 10px;
	position: relative;
}

.modal__text {
	display: block;
	font-weight: 400;	
	min-width: 210px;
	color: #3C4651;
	font-size: 14px;
	line-height: 24px;	
	display: none;
}
.modal__input {
	background: #FFFFFF;
	backdrop-filter: blur(25px);
	border-radius: 8px;
	border: 0;
	width: 100%;
	height: 64px;
	padding: 20px;
	color: #838282;
	font-weight: 400;
	font-size: 15px;
	line-height: 24px;
}

.modal__input::placeholder {
	color: #838282;
}

.modal__clear {	
	width: 16px;
	height: 16px;
	background: url("../img/clear-icon.svg") no-repeat 0 0;
	position: absolute;
	right: 20px;
	display: none;
}

.modal__clear.show {
	display: inline-block;
}

.modal__btn {
	min-width: 100%;
	width: 100%;
	height: 48px;
	padding: 12px 24px;	
	background-image: linear-gradient(272deg, #F45825 0%, #FF9625 99.76%);
	/* backdrop-filter: blur(25px); */
	border-radius: 90px;
	outline: none;
	font-family: Montserrat, sans-serif;
	font-weight: 600;
	font-size: 18px;
	line-height: 24px;
	color: #FFFFFF;
	transition-property: background, color, border;
	transition-timing-function: ease-in-out;
	transition-duration: 0.3s, 0.3s, 0.2s;
	margin: 0 auto;	
}

.modal__btn:disabled {	
	color: #fff;
	background-image: none;
	background-color: #D7D7D7;
	border: 0;
	cursor: not-allowed;
}

.modal__btn:hover {
	padding: 10px 24px;	
	background-image: none;
	background-color: #fff;
	color: #302F2E;
	border: 2px solid #302F2E;
}

.modal__btn:disabled:hover {
	border: 0;
	color: #fff;
	background-image: none;
	background-color: #D7D7D7;
}

.modal__close,
.modal-info__close {
	background: none;
	position: absolute;
	right: 46px;
	top: 26px;
}
.modal-info__close {
	right: 16px;
	top: 10px;
	cursor: pointer;
	display: none;
}
.modal-info__btn-close {
	cursor: pointer;
	margin: 0 auto;
	text-decoration: underline;
	text-decoration-skip-ink: none;
	display: none;
}
.info__text {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 600px;
	height: 80px;
	padding: 20px 40px;
	background: #9600FF;
	border-radius: 20px;
	font-family: 'Play';
	font-style: normal;
	font-weight: 400;
	font-size: 32px;
	line-height: 40px;
	text-align: center;
	color: #FFFFFF;
	margin: 20px auto;
}
.modal-info__text {
	max-width: 420px;
	text-align: center;
	display: flex;
	align-items: center;
}
.modal-info__text span {
	display: block;
}
.modal-info__text em {
	display: block;
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
	margin-bottom: 10px;	
}
.modal-info__text img {
	margin: 0 auto 20px;	
}
.modal__checkbox {
	position: absolute;
	-webkit-appearance: none;
	appearance: none;
}

.modal__text_checkbox {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;	
}

.modal__text_checkbox::before {
	content: "";
	display: flex;
	min-width: 20px;
	height: 20px;
	border-radius: 4px;
	background-color:#fff;
}

.modal__checkbox:checked + .modal__text_checkbox::before {
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M16.6663 5L7.49967 14.1667L3.33301 10' stroke='%23F9C74B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center, #fff;
}

.modal__text_checkbox em {
	font-style: normal;
}

.modal__text_checkbox a {
	text-decoration: underline;
	text-decoration-skip-ink: none;
}

.modal__text_checkbox a:hover {
	text-decoration: none;
}

.error, .error-phone {
	position: absolute;
	font-size: 12px;
	color: #f00;
	left: 220px;
	bottom: -20px;
}

@media(max-width: 600px) {
	.modal__label {
		flex-direction: column;
		align-items: flex-start;
	}
	.modal__title {
		max-width: 90%;
	}
}