.price-form-section {
	display: flex;
	justify-content: flex-end;
	flex-direction: column;
	align-items: flex-end;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
	position: fixed;
	display: none;
}

.price-form-section.show {
	display: flex;
}

.price-form__wrapper {
	width: 512px;
	background: var(--neutral-100, #101E21);
	padding: 45px 40px 40px 40px;
	height: 100%;
	z-index: 101;
}

.price-form-overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	inset: 0;
	background: rgba(0, 0, 0, .6);
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
	z-index: 100;
	cursor: pointer;
}

.price-form__close {
	display: flex;
	justify-content: flex-end;
}

.price-form__close button,
.price-form__close button:hover,
.price-form__close button:focus {
	background: unset;
	border: 0.5px solid var(--neutral-0, #FFF);
}

.price-form__close button {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.price-form__close button span {
	display: flex;
}

.price-form__title {
	margin: 0;
	color: var(--main-1100, #BE4D00);
	font-family: "eUkraine Head";
	font-size: 40px;
	font-style: normal;
	font-weight: 200;
	line-height: normal;
	text-transform: uppercase;
	padding: 35px 0 0 0;
}

.price-form__form {
	max-width: 365px;
}

.price-form__form .price-form-custom-input input[type=text],
.price-form__form .price-form-custom-input input[type=tel] {
	background: unset;
	padding: 10px 5px;
	border: unset;
	border-bottom: 1px solid #70787A;
}

.price-form__form .price-form-custom-input input[type=text],
.price-form__form .price-form-custom-input input[type=tel],
.price-form__form .price-form-custom-input input[type=text]::placeholder,
.price-form__form .price-form-custom-input input[type=tel]::placeholder {
	color: var(--neutral-0, #FFF);
	font-family: "eUkraine Head";
	font-size: 14px;
	font-style: normal;
	font-weight: 200;
	line-height: 130%; /* 18.2px */
	text-transform: capitalize;
	opacity: 1;
}

.price-form__form .price-form-custom-input input:focus {
	box-shadow: unset !important;
	border-color: #BE4D00 !important;
}

.price-form__form div.wpforms-container form.wpforms-form .wpforms-submit-container button.price-form-submit-button {
	width: 100%;
	color: #FFF;
	font-family: "eUkraine Head";
	font-size: 14px;
	font-style: normal;
	font-weight: 300;
	line-height: normal;
	text-transform: uppercase;
	background-color: var(--main-1100, #BE4D00);
	margin-top: 40px;
}

.price-form__form div.wpforms-container form.wpforms-form .wpforms-submit-container button.price-form-submit-button:focus::after {
	content: unset;
}

body.modal-open {
	overflow: hidden;
}

@media screen and (max-width: 992px) {
	.price-form__wrapper {
		width: 100%;
	}
	.price-form__form {
		max-width: unset;
		width: 100%;
	}
	.price-form__wrapper {
		padding: 20px;
	}
}