@font-face {
	font-family: Vazir;
	src: url('./Vazir-Regular.woff2')
		format('woff2');
	font-weight: normal;
	font-style: normal;
}
* {
	font-family: 'Vazir' !important;
}
html,
body {
	overflow: hidden;
	margin: 0;
	height: 100%;
	width: 100%;
	direction: rtl;
}
.main-container {
	width: 100%;
	height: 100%;
	position: relative;
	text-align: center;
}
.iframe-container {
	overflow: hidden;
	margin: 0;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	direction: rtl;
}
.score-container {
	height: 26px;
	width: 100%;
	background-color: #006666;
	color: #ddd;
	display: flex;
	font-size: 18px;
	font-weight: 900;
	justify-content: center;
	align-items: center;
	padding: 2px 0;
}
.iframe {
	width: 0;
	min-width: 100%;
	max-width: 100%;
	height: 0;
	min-height: calc(100% - 30px);
	max-height: calc(100% - 30px);
	border: none;
}
.iframe-overlay {
	opacity: 0;
	transition: opacity 300ms !important;
	position: fixed;
	color: white;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
	background-color: rgba(0, 102, 102, 0.8);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.button-parent {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.overlay-content {
	margin: 10px auto;
	font-size: 20px;
	font-weight: 900;
}
.play-button {
	border: none;
	padding: 10px 20px;
	border-radius: 5px;
	color: white;
	background-color: #006666;
	cursor: pointer;
	border: 1px solid white;
}
.play-button:focus {
	outline: none;
}
.play-button::-moz-focus-inner {
	border: 0;
}
.show {
	opacity: 1 !important;
	transition: opacity 500ms !important;
}
.hide {
	opacity: 0 !important;
	transition: opacity 300ms !important;
}
.d-block {
	display: block !important;
}
.d-none {
	display: none !important;
}
