/* reader */
	*{
		margin: 0rem;
		padding: 0rem;
	}
	.reader{
		width: auto;
		height: 54px;
		position:fixed;
		border-radius: 2.0625rem;
		background-color: #F2F2F2;
		left: 20px;
		bottom: 55px;
	}

	.icon_r{
		padding: 5px;
		width: 44px;
		height: 44px;
	}
	#audio{
		width: auto;
		position:fixed;
		height: 54px;
		left: 26px;
		bottom: 55px;
	}
	.player{
		width: 250px;
	}
	
.rotation {
            -webkit-transform: rotate(360deg);
            animation: rotation 8s linear infinite;
            -moz-animation: rotation 8s linear infinite;
            -webkit-animation: rotation 8s linear infinite;
            -o-animation: rotation 8s linear infinite;
        }
        @-webkit-keyframes rotation {
            from {
            -webkit-transform: rotate(0deg);
            }
            to {
                -webkit-transform: rotate(360deg);
            }
        }