.te-book-modal {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.te-book-modal.is-open {
	display: flex;
}

.te-book-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
}

.te-book-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(100%, 520px);
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
	padding: 36px 40px 40px;
	font-family: "Roboto", sans-serif;
}

.te-book-modal__close {
	position: absolute;
	top: 14px;
	right: 16px;
	border: 0;
	background: transparent;
	color: #9aa3ad;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	padding: 4px;
}

.te-book-modal__close:hover {
	color: #555;
}

.te-book-modal__title {
	margin: 0 40px 20px 0;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.3;
	color: #00759b;
}

.te-book-modal__divider {
	border: 0;
	border-top: 1px solid #d8dde3;
	margin: 0 0 22px;
}

.te-book-modal__date {
	margin: 0 0 26px;
	font-size: 18px;
	line-height: 1.4;
	color: #222;
}

.te-book-modal__field {
	margin-bottom: 22px;
}

.te-book-modal__field label {
	display: block;
	margin-bottom: 10px;
	font-size: 16px;
	font-weight: 400;
	color: #222;
}

.te-book-modal__field select {
	width: 100%;
	height: 48px;
	padding: 0 40px 0 14px;
	border: 1px solid #c5ccd3;
	border-radius: 6px;
	background: #fff;
	font-size: 16px;
	color: #222;
	appearance: auto;
}

.te-book-modal__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 88px;
	height: 46px;
	margin-top: 10px;
	padding: 0 32px;
	border: 0;
	border-radius: 6px;
	background: #00759b;
	color: #fff;
	font-size: 17px;
	font-weight: 700;
	cursor: pointer;
}

.te-book-modal__submit:hover {
	background: #006080;
}

body.te-book-modal-open {
	overflow: hidden;
}
