
html { height: 100%; }

*,
*:after,
*:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

body {
	font-family: 'Lato', Calibri, Arial, sans-serif;
	background: #fff;
	font-weight: 400;
	font-size: 100%;
	color: #333;
	height: 100%;
}

.js body {
	overflow: hidden;
}

a {
	color: #555;
	text-decoration: none;
	outline: none;
}

a:hover {
	color: #000;
}


.bb-custom-wrapper,
.bb-bookblock {
	width: 100%;
	height: 100%;
}

.container {
	width: 100%;
	height: 100%;
	background: url("../img/20190912_bg-content.jpg") no-repeat;
	background-size: cover;
	-webkit-transition: left 0.3s ease-in-out;
	-o-transition: left 0.3s ease-in-out;
	transition: left 0.3s ease-in-out;
}

.bb-custom-wrapper nav {
	width: 1280px;
	top: 360px;
	left: 50%;
	margin-left: -640px;
	position: absolute;
	z-index: 10000;
}

.bb-custom-wrapper nav span.prev{
	width: 57px;
	height: 57px;
	background: url("../img/20190912_arrow-prev.png") no-repeat;
	cursor: pointer;
	float: left;
	margin-left: 15px;
}
.bb-custom-wrapper nav span.next{
	width: 57px;
	height: 57px;
	background: url("../img/20190912_arrow-next.png") no-repeat;
	cursor: pointer;
	float: right;
	margin-right: 15px;
}


.no-js .bb-custom-wrapper nav span{
	display: none;
}