@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700&display=swap");

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background: #113b81;
	font-family: "Tajawal", sans-serif;
	font-weight: 400;
	position: relative;
	direction: rtl;
}

.wrapper {
}

.header {
	background: #5b0402;
	padding: 10px;
	font-size: 22px;
	color: #fef480;
	text-align: center;
}

.header span {
	font-size: 28px;
}

.content {
	max-width: 900px;
	margin: 0 auto;
	padding: 20px;
	-webkit-background-size: 100%;
	-moz-background-size: 100%;
	-o-background-size: 100%;
	background-size: 100%;
}

.client {
	font-size: 14px;
	color: #111111;
	margin: 0 0 20px 0;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	background: rgba(255, 255, 255, 0.6);
	padding: 10px;
}

.client img {
	float: right;
	margin: 0 0 10px 6px;
	width: 50px;
}

.info {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	background: #f0c400;
	text-align: center;
	font-size: 14px;
	color: #000;
	padding: 10px;
	margin: 0 0 10px 0;
}

.boxs {
	overflow: hidden;
	background: #ffffff;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	margin: 0 0 10px 0;
	padding: 5px;
}

.box {
	width: 33.33%;
	float: left;
	cursor: pointer;
	padding: 5px;
}

.box img {
	width: 100%;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.comments {
	background: #ffffff;
	padding: 5px 5px 0 5px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

.comment {
	padding: 5px;
	overflow: hidden;
	margin: 0 0 0 0;
}

.comment_wrapper {
	background: #f0f2f5;
	-webkit-border-radius: 18px;
	-moz-border-radius: 18px;
	border-radius: 18px;
	display: inline-block;
	max-width: 100%;
	margin-right: 35px;
	padding: 8px 12px;
	position: relative;
}

.comment_img {
	position: absolute;
	right: -35px;
}

.comment_img img {
	width: 32px;
	height: 32px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
}

.comment_name {
	color: #050505;
	font-size: 13px;
	font-weight: 500;
	font-weight: bold;
}

.comment_text {
	color: #050505;
	font-size: 13px;
}

.comment_info {
	color: #65676b;
	font-size: 13px;
	margin: 0 58px 0 0;
	font-weight: 700;
}

.comment_info span {
	color: #65676b;
}

.footer {
	background: #0b2e69;
	padding: 10px;
	font-size: 12px;
	color: #fef480;
	text-align: center;
}

.swal2-popup {
	font-size: 12px !important;
}
.swal2-styled.swal2-confirm {
	font-size: 18px !important;
	padding: 10px 30px !important;
}

.swal2-footer a {
	background: #f0c400;
	font-size: 20px;
	color: #ffffff;
	font-weight: bold;
	padding: 15px 20px;
	text-decoration: none;
	display: block;
	width: 100%;
	text-align: center;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	border: 0;
}

.boxs {
	position: relative;
	height: 200px;
}

.start {
	position: absolute;
	top: calc(50% + 75px);
	left: 50%;
	background: #113b81;
	transform: translate(-50%, -50%);
	width: 100px;
	height: 25px;
	border: 2px solid #0e3272;
	color: white;
	font-weight: bold;
	border-radius: 5px;
	transition: 0.3s ease;
	user-select: none;
	cursor: pointer;
	filter: drop-shadow(2px 2px 2px rgba(89, 217, 102, 0.2));
}

.start:hover {
	background: #15469b;
}

.shadow {
	position: absolute;
	z-index: 2;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border-radius: 10px;
	border: 2px solid white;
	width: 300px;
	height: 100px;
	box-shadow: inset 0px 0px 20px 0px black;
}

.random {
	position: absolute;
	overflow: hidden;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border-radius: 10px;
	width: 300px;
	height: 100px;
	background: #161d31;
}

.cards {
	position: absolute;
	right: 0;
	top: 0;
	display: flex;
	height: 100%;
	transition: 5s ease;
}

.cards > div {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	float: left;
	font-family: sans-serif;
	font-weight: bold;
	font-size: 20px;
	margin-top: 5px;
	margin-right: 5px;
	width: 100px;
	height: 90px;
	color: #6a6a6a;
	background: white;
	border-radius: 10px;
}

.cards > div img {
	max-width: 100%;
}

.cards > div.win {
	animation: blink 0.5s 2;
	background-color: #f0c400;
}
@-webkit-keyframes blink{0%{opacity:1.0}50%{opacity:.0}100%{opacity:1.0}}
@-moz-keyframes blink{0%{opacity:1.0}50%{opacity:.0}100%{opacity:1.0}}
@-ms-keyframes blink{0%{opacity:1.0}50%{opacity:.0}100%{opacity:1.0}}
@-o-keyframes blink{0%{opacity:1.0}50%{opacity:.0}100%{opacity:1.0}}
@keyframes blink{0%{opacity:1.0}50%{opacity:.0}100%{opacity:1.0}}
.result {
	position: absolute;
	z-index: 10;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	border: 10px solid transparent;
	border-top: 20px solid #f0c400;
	filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.5));
}
