@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;
	background-image:url(../../__images/bg.jpg);
	background-size: cover;
	width: 100%;
	min-height: 100vh;
	overflow: auto;
	-webkit-user-select:none;
	-moz-user-select:none;
}



#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;
	max-width: 447px;
	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;
	}
}


.flexcroll {
    display: block;
    width: 100%;
}

.soundBtn img {
    width: 24px;
    height: 24px;
}

h3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    margin: 0;
}

h3 span {
    margin-left: 10px;
    font-size: 16px;
    color: #000;
    text-align: right;
}

p {
    margin: 10px 0;
    font-size: 14px;
    color: #333;
}

/* img {
    max-width: 100%;
    height: auto;
    border: 1px solid #ccc;
    margin-top: 10px;
}

video {
    margin-top: 10px;
} */
.soundBtn img {
    width: 24px;
    height: 24px;
}


#container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap; /* Adjust layout on small screens */
    justify-content: center;
    gap: 10px; /* Add spacing between panels */
}

#leftPannel, #rightPannel {
    flex: 1 1 calc(50% - 20px); /* Make panels take 50% width with some margin */
    min-width: 300px; /* Prevent shrinking too small */
}
@media screen and (max-width: 600px) {
    #titleTxtCont {
        height: auto;
        padding: 10px;
    }

    /* #title {
        font-size: 20px;
        padding: 10px;
    } */

    h3 span {
        font-size: 14px;
    }

    p {
        font-size: 12px;
    }

    /* #leftPannel, #rightPannel {
        padding: 15px;
    } */
}

@media screen and (max-width: 450px) {
   

    #title {
        font-size: 18px;
    }
}

