
#audio_player {
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.55);
	z-index: 1000;
	display: none;
}

#audio_player .player_container {
	position: absolute;
	border:2px solid #000;
	left: 361px;
	top: 72px;
	width:557px;
	height:604px;
	background-color: #f8f0e5;
	border-radius: 15px;
	overflow: hidden;
}

#audio_player .audiobook_title {
	margin-top:30px;
	font-family: "Nanum Gothic", sans-serif;
	font-weight: bold;
	font-size: 27px;
	text-align:center;
	max-width: 457px;
    margin-left: 50px;
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#audio_player .audiobook_title:before {
	content:url(../images/icon/speaker.png);
	margin-right:10px;
	vertical-align:middle;
}

#audio_player .audiobook_author {
    font-family: "Nanum Gothic", sans-serif;
	font-weight: normal;
	font-size: 17px;
	margin-top:12px;
	text-align:center;
}

#audio_player .audiobook_cover {
    position:absolute;
    /* top:105px; */
	top:120px;
    width:200px;
    height:230px;

    margin:auto;
    left:0; right:0;
}

#audio_player .audiobook_cover>img {
	position:absolute;
	border-radius:8px;
    border:1px solid #c1c1c0;
    max-width:100%;
    max-height:100%;
    margin:auto;
    top:0;bottom:0;left:0;right:0;
}

#audio_player .audiobook_prev,
#audio_player .audiobook_next {
	position:absolute;
	width:55px;
	height:55px;
	border-radius:55px;
	background-color:#ede1d0;
	background-repeat:no-repeat;
	background-position:50% 50%;
	top:211px;
}
#audio_player .audiobook_prev {
    left:79px;
    background-image:url(../images/icon/arrow_left.png);
}

#audio_player .audiobook_next {
    right:79px;
    background-image:url(../images/icon/arrow_right.png);
}


#audio_player .audiobook_heart {
    background: url(//xcdn.home-learn.com/bookcafe/web_res/bookcafe/images/icon/icon_heart4.png) #fff no-repeat 24px 12px;
    background-size: 21px 19px !important;
    border: 1px solid #d5d4d2;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    margin: auto;
    width:134px;
    height:45px;
    position:absolute;
    top:365px;
    left:0; right:0;
}
#audio_player .audiobook_heart p {
	font-family: 'BMJUA', sans-serif;
    font-size: 21px;
    line-height: 26px;
    margin-left: 24px;
}
#audio_player .audiobook_heart.on {
    color: #EE4025;
    background-size: 100px;
    background: url(//xcdn.home-learn.com/bookcafe/web_res/bookcafe/images/icon/icon_heart2.png) #fff no-repeat 24px 12px;
}

#audio_player .audiobook_controller {
	position: absolute;
	background-color: #fff;
	width: 100%;
	height:177px;
	border-radius: 0 0 15px 15px;
	bottom:0px;
}

#audio_player .audio_btn_play,
#audio_player .audio_btn_pause,
#audio_player .audio_btn_reload {
	position: absolute;
	width:63px;
	height:63px;
	left:35px;
	top:30px;
	cursor: pointer;

}
#audio_player .audio_btn_play {
	background: url(../images/icon/btn_play.png) no-repeat;
	background-size: 100%;
}
#audio_player .audio_btn_pause {
	background: url(../images/icon/btn_pause.png) no-repeat;
	background-size: 100%;
	display: none;
}
#audio_player .audio_btn_reload {
	background: url(../images/icon/btn_replay.png) no-repeat;
	background-size: 100%;
	display: none;
}
#audio_player .audio_status_bar {
	position: absolute;
	height:16px;
	width:390px;
	background-color: #eff4e8;
	left:114px;
	top:52px;
	border-radius: 16px;
}

#audio_player .audio_seekbar {
	position: absolute;
	height:16px;
	background-color: #74c303;
	top:0; left:0;
	border-radius: 16px;
}

#audio_player .audio_seeker {
	position: absolute;
	background-color: #74c303;
    width: 32px;
    height: 32px;
    border: 4px solid #fff;
    box-shadow: 1px 1px 1px 1px #aaa;
    border-radius: 32px;
	-webkit-transform: translate(-8px, -8px);
    -moz-transform: translate(-8px, -8px);
    transform: translate(-8px, -8px);
}
#audio_player .audio_time {
	position: absolute;
	top:21px;
	left: 115px;
	color:#74c303;
	font-size: 18px;
}
#audio_player .audio_duration {
	position: absolute;
	top:21px;
	right: 34px;
	color:#999999;
	font-size: 18px;
}

#audio_player .close {
	position: absolute;
    top: 0px;
    right: 0px;
    width: 30px;
    height: 30px;
    background-image: url(//xcdn.home-learn.com/bookcafe/web_res/bookcafe/images/icon/icon_close.png);
    background-size: 20px 20px;
    background-repeat: no-repeat;
    cursor: pointer;
    background-position: center;
    padding: 30px;
}

#audio_player .speedbtns {
	position: absolute;
	width: 100%;
	height: 68px;
	bottom:0;
	text-align: center;
}

#audio_player .speedbtn {
	position: relative;
    display: inline-block;
    width: 92px;
    height: 42px;
    text-align: center;
    border: 1px solid #d5d6d5;
    border-radius: 10px;
    color: #b3b3b3;
    line-height: 42px;
    font-family: 'Nanum Gothic';
    font-weight: bold;
	cursor: pointer;
}

#audio_player .speedbtn.on {
	color:#646464;
	border: 2px solid #74c303;
}