* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  height: 100%;
  font-size: 16px;
}
body {
  min-height: 100%;
  background-color: dimgray;
  height: 100vh;
}

#tt {
  font-family: "Alef", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(1.4rem + 1vw);
  color: lightcyan;
  margin-top: 15px;
}

.pers {
  display: inline-block;
  width: calc(3.0rem + 3.0vw);
  color: brown;
}

.par {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color:  #ec9c8a ;
  background-color: dimgray;
  padding-bottom: 2rem;
}

#question {
  position: absolute;
  background-image: url( 'assets/question-circle-white.svg' );
  background-size: cover;
  top: calc(-3.0rem - 1.0vw);
  right: 0px;
  width: calc(1.6rem + 1.0vw);
  height: calc(1.6rem + 1.0vw);
  border-radius: 50%;
  z-index: 3;
}

#question:hover {
  cursor: pointer;
  background-image: url( 'assets/question-circle-red.svg' );
}

.text {
  position: relative;
  margin: 5rem 0 1rem;
  padding: 2rem;
  border: 3px solid skyblue;
  border-radius: 20px;
  max-width: 95%;
  background-color: #ddd;
  color: #222;
  text-align: right;
  font-size: calc(1.0rem + 1.0vw);
}

.alef-regular {
  font-family: "Alef", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.oneline {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}

.shel {
  color: #44a8f4;
}

.rtl{
  direction: rtl;
}

.checkbox {
  width: calc(0.8rem + 1.0vw);
  min-width: calc(0.8rem + 1.0vw);
  height: calc(0.8rem + 1.0vw);
  background-color: #bbb;
  background-color: #fff;
  border: 2px solid gray;
  margin-left: 15px;
  border-radius: 50%;
}

.checkbox:hover {
  cursor: pointer;
  border: 2px solid red;
}

.checked {
  background: radial-gradient(black calc(4px + 0.1vw), #fff 20%);
}

.playing {
/*  color: yellow;
  color: #1d0be2;
  color: #ff0000;
*/  background-color: #d7f287;
}

#audio {
  visibility: hidden;
  height: 0;
}

.controls {
  display: flex;
  flex-direction: column;
/*  justify-content: flex-start;*/
  align-items: center;
/*  outline: 1px solid yellow;*/
  width: 15%;
  min-width: 15rem;
/*  outline: 1px solid red;*/
}

.rowp {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-family: Arial, sans-serif;
  font-size: calc(1.0rem + 0.7vw);
  line-height: calc(1.5*(1.0rem + 0.7vw));
  margin: 5px;
  width: 100%;
/*  outline: 1px solid red;*/
}

.prmes {
/*  outline: 1px solid yellow;*/
}

.contr {
/*  outline: 1px solid red;*/
}

#playing, #repeating {
  background-repeat: no-repeat;
  background-color: white;
  margin: 0 20px;
}

#playing {
  background-size: cover;
  border-radius: 50%;
  width: calc(1.6rem + 1.0vw);
  height: calc(1.6rem + 1.0vw);
}

#repeating {
  background-size: contain;
  background-position: center;
  height: calc(1.2rem + 0.7vw);
  width: 70px;
  border-radius: 5px;
}

#playing:hover,  #repeating:hover{
  cursor: pointer;
}

.play {
  background-image: url( 'assets/play-circle-black.svg' );
}

.play:hover {
  background-image: url( 'assets/play-circle-red.svg' );
}

.pause {
  background-image: url( 'assets/pause-circle-black.svg' );
}

.pause:hover {
  background-image: url( 'assets/pause-circle-red.svg' );
}

.repeat {
  background-image: url( 'assets/loop-svgrepo-com-black.svg' );
}

.repeat:hover {
  background-image: url( 'assets/loop-svgrepo-com-red.svg' );
}

.no-repeat {
  background-image: url( 'assets/forward-svgrepo-com-black.svg' );
}

.no-repeat:hover {
  background-image: url( 'assets/forward-svgrepo-com-red.svg' );
}

#fixscreen {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 4;
}

#info {
  position: relative;
  width: 600px;
  max-width: 90%;
  height: 80%;
  max-height: calc(100% - 40px);
  background-color: white;
  overflow: auto;
  margin-top: 30px;
  padding: 70px 40px 40px;
  font-family: Helvetica, Arial, sans-serif;
  font-size: calc(1.1rem + 0.4vw);
  text-indent: 2rem;
  -webkit-box-shadow: 5px 5px 15px 5px #000000; 
  box-shadow: 5px 5px 15px 5px #000000;
}

.invisible {
  display: none;
}

#fixscreen.invisible {
  display: none;
}

#close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-image: url( 'assets/close.svg' );
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
  width: calc(1.4rem + 1.0vw);
  height: calc(1.4rem + 1.0vw);
  transition: all 0.3s;
}

#close:hover {
  cursor: pointer;
  transform: rotate(22deg);
  width: calc(1.2rem + 1.0vw);
  height: calc(1.2rem + 1.0vw);
}


