.book-table {
	position: fixed;
	right: 5px;
	bottom: -200px;
	width: 235px;
	height: 190px;
	background-color: #D75F08;
	z-index: 10;
	transition-delay: 0s;
	transition-property: bottom;
	transition-duration: 500ms;
	transition-timing-function: ease;
}

.book-table.is-active {
	bottom: 32px;
	transition-delay: 1s;
}

.book-table__body {
	padding: 35px 35px 25px 35px;
	text-align: center;
}

.book-table__title {
	font-size: 16px;
	line-height: 21px;
	margin-bottom: 15px;
	color: #FFFFFF;
	font-weight: 700;
}

.book-table__description {
	font-size: 12px;
	line-height: 20px;
	color: #FFFFFF;
	font-weight: 400;
}

.book-table__link {
	font-size: 12px;
	line-height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 35px;
	background-color: #DEE5E5;
	text-transform: uppercase;
	color: #2D2D2D;
	font-weight: 700;
}

.book-table__link-secondary {
	font-size: 11px;
	line-height: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 28px;
	background-color: #DEE5E5;
	color: #2D2D2D;
	font-weight: 500;
}

.book-table__close {
	position: absolute;
	top: 8px;
	right: 10px;
	cursor: pointer;
}

.book-table__close svg {
	color: #FFFFFF;
	width: 8px;
	height: 11px;
}