/* version 3.0 table added */
a.button {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
	text-decoration: none;
	font-size: 1em;
	cursor: pointer;
	border-radius: 3px;
	color: #fff;
	font-weight: bold;
	background-color:  #26b439;
	border-color: #105bbd;
	padding: 8px 15px;
	width: 150px;
}


.books-container {
	-webkit-font-smoothing: antialiased;
	font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
	color: #1e2a28;
	width: 740px;
	margin: 0 auto;
	padding: 0px 20px 20px 20px;
	
}

.page-container {
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
	-moz-box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
	padding: 30px;
	background: #fff;
	border-radius: 3px;
	margin: 50px auto;
}



.books-container table {
	border-collapse: collapse;
	width: 100%;
	margin-bottom: 30px;
}

.books-container td, .books-container th {
	text-align: left;
	padding: 8px;
}

.books-container h1 {
	font-weight: normal;
}

input[type=text].books-input, .books-container input,
	.books-container textarea, .books-container select, .books-input,
	.books-select {
	box-sizing: border-box;
	width: 200px;
	height: initial;
	padding: 8px 5px;
	border: 1px solid #9a9a9a;
	border-radius: 3px;
}

.books-container input[type="checkbox"] {
	width: auto;
	vertical-align: text-bottom;
	display: initial;
	opacity: initial;
	position: inherit;
	pointer-events: initial;
}

.books-container input[type="radio"] {
	width: auto;
	vertical-align: text-bottom;
	display: initial;
	opacity: initial;
	position: inherit;
	pointer-events: initial;
}

.books-container textarea, .books-textarea {
	width: 300px;
}

.books-container select, .books-select {
	display: initial;
	height: 30px;
	background-color: #fff;
	padding: 2px 5px;
}

.books-container #coach-btn {
	background-color: #26b439;
	border: #105bbd 1px solid;
	color: #fff;
	padding: 8px 15px;
	border-radius: 3px;
	cursor: pointer;
	font-size: 1.2em;
	min-width: 375px;

}

.books-container #coach-btn:hover {
	background-color: #3d98c4;
}

.books-container button:focus {
	outline: none;
}

.books-container .books-row {
	padding-top: 15px;
}

#books-message {
	padding: 6px 20px;
	font-size: 1em;
	color: rgb(40, 40, 40);
	box-sizing: border-box;
	margin: 0px;
	border-radius: 3px;
	width: 100%;
	overflow: auto;
}

.books-container .error {
	padding: 6px 20px;
	border-radius: 3px;
	background-color: #fb817c;
	border: 1px solid #e46b66;
}

.books-container .success {
	background-color: #48e0a4;
	border: #40cc94 1px solid;
}

#books-loader-icon {
	color: #1871e6;
	font-weight: bold;
	padding: 6px 20px 6px 0;
	display: none;
	vertical-align: middle;
}

#books-loader-ack-icon {
	color: #1871e6;
	font-weight: bold;
	padding: 6px 20px 6px 0;
	display: none;
	vertical-align: middle;
}

#books-btn-send:hover {
	background: #1363cc;
	border: #105bbd 1px solid;
}

.books-container .validation-message {
	color: #e20900;
	display: inline-block;
}

.books-container .label {
	margin-bottom: 3px;
}

.books-form, .books-section {
	border: #eaeaea 1px solid;
	padding: 10px 25px 10px 30px;
	border-radius: 3px;
}

.books-container .display-none {
	display: none;
}

.cover-img {
   width: 100%;
}

.icon-add-more-attachemnt {
	cursor: pointer;
	font-style: italic;
	font-size: .9em;
}

.inline-block {
	display: inline-block;
}

@media all and (max-width: 780px) {
	.books-container {
		width: auto;
	}
}

@media all and (max-width: 400px) {
	.books-container {
		padding: 0px 20px;
	}
	.books-container h1 {
		font-size: 1.2em;
	}
	.books-container input, .books-container textarea, .books-container select
		{
		width: 100%;
	}
	.books-form {
		border: none;
		padding: 0;
	}
}



.language-select > ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: space-between;
	flex-direction: row;
}

.disabled {
	pointer-events: none;
	cursor: default;
	/* grayscale */
	filter: grayscale(100%);
}

@media screen and (min-width: 800px) {
	/* label and corresponding input in a row */
	.books-container .books-row {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
	}
}

.local-save-btn {
	padding: 8px;
	font-size: 1.2em;
	cursor: pointer;
	border-radius: 3px;
	background-color: #5975f5;
	color: #fff;
	min-width: 375px;
} 

.form-button-container {
	display: flex;
	flex-direction: column;
	grid-gap: 10px;
	/* all elements should have the same width */
	width: 375px;
	align-items: center;
	justify-content: center;
}

a[id="next-page"]::after {
	content: ">";
	margin-left: 5px;
}

a[id="prev-page"]::before {
	content: "<";
	margin-right: 5px;
}

/* images with a src that includes "Logo" should be centered */
img[src*="Logo"] {
	display: block;
	margin: 0 auto;
}

.audioplayer {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.hidden {
	display: none;
}

.audioplayer-controls {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	background-color: #524d4d;
	padding: 5px;
	border-radius: 5px;

}

.audioplayer-controls input[type="range"] {
	width: 100px;
}

/* mobile -> hide the volume slider */
@media screen and (max-width: 600px) {
	.audioplayer-controls input[type="range"] {
		display: none;
	}
}

.audioplayer-controls button {
	background-color: #524d4d;
	border: none;
	color: #fff;
	padding: 5px;
	border-radius: 5px;
	cursor: pointer;
}

.playbutton {
	color: #fff;
	border: none;
}


.playbutton > img {
	width: 20px;
}


/* on page 1, create a nice looking cover around the image */
.dummy {
	display: flex;
	justify-content: center;
	align-items: center;

}




p#book-subtitle {
	margin-top: -10px;
	margin-bottom: 10px;
	font-size: .889em;
}