* {
  box-sizing: content-box;
}

html, body {
  margin: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.content {
  position: absolute;
  /* padding-left: 20px;
  padding-right: 20px; */
  text-align: center;
  top: 0px;
  color: #fff;
  height: 100%;
  width: 100%;
  overflow-y: scroll;
  /* background-color: rgba(0, 255, 183, 0.1); */
}

.settings {
  padding: 10px 0px 10px;
  color: orange;
  cursor: pointer;
}

.dua {
  padding: 20px 20px 20px;
  background-color: rgba(0, 0, 0, 0.1);
  max-width: 640px;
  margin:0 auto;
  /* border-bottom: 3px dashed  rgb(156, 149, 149); */
  margin-bottom: 25px;
}

.mt-25 {
  margin-top: 50px;
}

.arabic-font {
  font-family: "Scheherazade New", serif;
}

.dua .arabic {
  font-size: 32px;
  line-height: normal;
}

.cite {
  font-weight: 100;
  font-size: 1em;
  font-family: "Roboto", sans-serif;
  line-height: 1em;
}

.player-container {
  margin-top: 25px;
  margin-bottom: 25px;
}

.translit {
  font-weight: 100;
  font-size: 1.5em;
  font-family: "Roboto", sans-serif;
  line-height: normal;

}

.info-link {
  color: rgb(105, 103, 233);
  font-weight: 200;
  font-size: 20px;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
}

.title .avatar {
  width: 40px;
  height: 40px;
  background-image: url(../img/avatar.jpg);
  display: inline-block;
  border-radius: 50%;
  background-size: 100%;
}

.footer {
  position: fixed;
  bottom: 0;
  width: 100%;;
  padding: 20px 0;
  font-family: 'Pacifico';
  font-size:large;
}

.unfixed {
  position: relative;
}

.r-checkbox {
	display: inline-block;
	width: 1.5em;
	height: 1.5em;
	padding: 0;
	box-sizing: content-box;
	border: 2px solid darkgrey;
	outline: none;
	border-radius: .25em;
	background-color: white;
	text-align: center;
	line-height: 1.5em;
	cursor: pointer;
	transition: .15s ease-out;
  margin: 10px 0px;
}
.r-checkbox:hover,
.r-checkbox:focus {
	border-color: black;
	box-shadow: 0 0 .25em black;
}
.r-checkbox::before {
	display: block;
	transform: scale(0);
	color: green; 
	opacity: 0;
	content: "✅";
  font-size: 1.5em;
	transition: .15s ease-out;
}
.r-checkbox.is-checked::before {
	transform: scale(1);
	opacity: 1;
}

/* For internal label */
.r-checkbox-container {
	padding: 0;
	border: none;
	outline: none;
	background: none;
  color: white;
}

.dua .translit {
  display: none;
}

.dua .is-checked {
  display: block;
}