@charset "utf-8";

@font-face{
	font-family: Rubric;
	font-style: normal;
	font-weight: normal;
	src:url(../fonts/Cabin-Bold.ttf);
}
@font-face{
	font-family: Ans, sans-serif;
	font-style: normal;
	src:url(../fonts/Roboto-Regular.ttf);
}

body{
	margin:0px;
	padding:0px;
	-webkit-user-select:none;
	-moz-user-select:none;
}

#main {
	width: 100%;
	min-height: 100vh;
	background-image:url(../../__images/bg.png);
	background-size: 100% 100%;
}

#container{
	display: flex;
	justify-content: center;
	max-width: 1280px;
	margin: 0 auto;
}

.cell{
	font-family: Ans, sans-serif;
	font-size:16px;
	border-radius:5px;
	padding: 10px;
}

#title{
	font-family: Rubric;
	font-size:26px;
	margin:40px 0px 5px 0;
	display: inline-block;
	width: 100%;
	padding: 0 15px 0 15px;
	text-align: center;
	box-sizing: border-box;
}

#titleTxtCont{
	max-width:565px;
	height: 95px;
	margin: 0 auto;	
	display: flex;
    flex-direction: column;
    justify-content: center;
	background:url(../../__images/titlebg.png);
	background-repeat: no-repeat;
    background-position: center;
	background-size: 100% 100%;
}

#titleTxt{
	display: inline-block;
	margin: 0 auto;
	text-align: center;
    max-width: 475px;
}

#leftPannel{
	background-image: url("../../__images/rightPnl.png");
	background-size: 100% 100%;
	padding: 44px;
	width: 50%;
	box-sizing: border-box;
}

#rightPannel{
	background-image: url("../../__images/rightPnl.png");
	background-size: 100% 100%;
	padding: 44px;
	width: 50%;
	box-sizing: border-box;
}

#iRecorder{
	height: 455px;
	width: 100%;
}

.soundBtn{
	width: 51px;
}



.btn{
	width:56px;
	height:58px;
	cursor:pointer;
	margin-right:30%;
	float:right;
}

#next{
	margin-top:682px;
	background:url(../../__images/nextprev.png) -72px 0;
}

#prev{
	margin-top:682px;
	background:url(../../__images/nextprev.png) 0 0;
}

#btnGroup .stopR, .startR{
	border-radius:4px;
	font-size: 1rem;
	width: calc(50% - 0.25rem);
}

.stopR, .startR {
	margin-top:10px;
	margin-left:10px;
	font-family:Rubric;
	font-size: 1rem;
	background: #ad6003;
	text-align: center;
	color: white;
	border: none;
	transition: all 0.2s;
	padding: 0.5rem;
	border:1px solid #2e1a02;
	box-shadow: inset 0px 0px 10px rgba(199, 112, 0, 1);
}

.stopR:active, .startR:active, .playAud:active {
  box-shadow: inset 0px 0px 10px rgba(46, 26, 2, 1);
  background: #ad6003;
}

.disableBtn{
  color: #545454 !important;
  pointer-events: none;
}

.flexcroll{ 
	 height:447px;
}

@media screen and (max-width: 600px) {
	#leftPannel{
		padding: 35px;
	}
	#rightPannel{
		padding: 35px;
	}
}

@media screen and (max-width: 450px) {
	#leftPannel{
		padding: 20px;
	}
	#rightPannel{
		padding: 11px;
	}
}
.completed{
	position: relative;
    padding: 2px;
}
.completed::after{
	

	position: absolute;
    z-index: 999999999;
    top: 7px;
    left: -15px;
    content: '\2714';
    font-size: 25px;
    color: #248403;

}