.contaner {
	position: relative;
}
.chapter-head {
	position: relative;
	flex: 1;
    margin: 20px 15px;
    padding: 15px;
    border: 1px solid #cccccc;
    border-radius: 6px;
}
#chapter-head {
    display: flex;
	flex-direction: row;
}
#audio {
	position: relative;
    display: flex;
	flex-direction: row;
    padding: 0 20px;
}
audio {
	position: relative;
    flex: 1;
	margin: 0 25px;
}
.chapter-controls {
	margin-top: 15px;
    display: flex;
	flex-direction: column;
}
#chapter-del-audio {
    background-color: #dddddd;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 80%;
    background-image: url(../img/forbidden-mark.png);
    width: 30px;
    height: 30px;
	border-radius: 3px;
	cursor: pointer;
	margin: 12px 12px 12px 0;
}
#chapter-del-audio:hover {
    background-color: #bbbbbb;
}
.chapter-controls>div {
    background-color: #dddddd;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 80%;
    background-image: url(../img/001-edit.png);
    width: 30px;
    height: 30px;
	border-radius: 3px;
	cursor: pointer;
	margin: 3px;
}
.chapter-controls>div:hover {
    background-color: #bbbbbb;
}
.chapter-edit.edit{
    background-color: #ffffff;
    outline: 1px solid #555555;
}
.chapter-controls>.chapter-loud-text {
    background-image: url(../img/notebook.png);
}
#loud-file-text, #loud-file-audio {
    position: absolute;
    left: 0px;
    top: 0px;
	width: 0%;
	height: 0%;
}
.chapter-controls>.chapter-loud-audio {
    background-image: url(../img/audio-book.png);
}
.book-name {
    font-weight: bold;
	font-size: 32px;
    text-align: center;
}
.chapter-name {
    font-weight: bold;
	font-size: 25px;
    text-align: center;
}
.progress {
    position: absolute;
    left: 0px;
    top: 0px;
	width: 0%;
	height: 100%;
	background-color: rgba(0,0,0,0.06);
	border-radius: 6px;
	transition: width 0.2s ease-in-out;
}
textarea {
    position: relative;
    display: none;
	width: auto;
	height: 1000px;
	width: 940px;
	border: none;
	line-height: 20px;
    margin: 15px;
    padding: 15px;
    overflow-x: hidden;
    text-indent: 0px;
}
.text-book {
    position: relative;
    display: flex;
    margin: 15px;
    padding: 15px;
    white-space: pre-wrap;
    line-height: 20px;
}
.text-book.edit {
    background: #eeeeee;
	border-radius: 6px;
}
.text-book p {
    margin: 0px;
	font-size: 20px;
	color: #555555;
}
.text-book p.selected {
    color: #bbbbbb;
}
.turningChapters {
    position: relative;
    display: flex;
	flex-direction: row;
}
.turningChapters .back, .turningChapters .forward {
    display: flex;
	flex-direction: row;
    flex: 1;
}
.turningChapters .back a, .turningChapters .forward a {
    color: #444444;
    background: rgba(0,0,0,0.06);
	border-radius: 6px;
	padding: 4px 16px;
    margin: 5px;
}
.turningChapters .back a:hover, .turningChapters .forward a:hover {
    background: rgba(0,0,0,0.2);
	color: #000000;
}
.turningChapters .back {
    justify-content: flex-start;
}
.turningChapters .forward {
    justify-content: flex-end;
}