body {
	background-color: #EEF9FF;
}

.header {
	background-color: #fff !important;
}

footer {
	margin-top: 0px !important;
	background-color: #fff !important;
}

.book {
	min-height: calc(100vh - 152px);
	margin: auto;
	margin-top: 76px;
	max-width: 1280px;
	width: 100%;
	background-color: #fff !important;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-bottom:32px;
}


.book .container {
	max-width: 1040px;
}

.book .container, .book .container .content {
	height: fit-content;
	width: 100%;
}

.book .container .content {
	width: 100%;
	display:flex;
	justify-content: space-between;
	gap: 30px;
	align-items: center;
}


.book .container .content .right {
	max-width: 580px;
	width: 100%;
}

.book .container .content .right .book-title {
	color: #3C9CD6;
	font-size: 42px;
	font-weight: 600;
	line-height: 49px;
	margin-bottom: 12px;
}

.book .container .content .right .subtitle {
	font-size: 28px;
	line-height: 35px;
	font-weight: 600;
	margin-bottom: 12px;
}

.book .container .content .right .authors {
	font-size: 13px;
	font-weight: 500;
	line-height: 20px;
	margin-bottom: 18px;
}

.book .container .content .right .authors span {
	color: #3C9CD6 !important;
}

.book .container .content .right .book-description {
	line-height: 25px;
	font-size: 16px;
	margin-bottom: 12px;
}

.book .container .content .right .details {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 500;
	margin-bottom: 12px;
}

.book .container .content .right .rating {
	margin-bottom: 12px;
	font-size:13px;
	line-height: 20px;
	color: #1596DD;
}

.book .container .content .right .rating strong{
	color: #000;
}

.book .container .content .right .buy {
	background-color: #3C9CD6;
	font-size: 13px;
	line-height: 20px;
	color: #fff;
	border-radius:6px;
	padding: 12px 8px;
	font-weight: 500;
	display: block;
	width: fit-content;
}

@media screen and (max-width: 1024px) {
	
	.book {
		padding-top: 48px;
	}
	
    .book .container .content {
        flex-direction: column;
		padding: 0 25px;
    }
	
	.book .container .content .right {
		max-width: 100%;
	}
		
	.book .container .content .right .buy {
		width: 100%;
		text-align: center;
	}
}



