/* Developed by : Eslam Eid */
@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@800&display=swap');
@font-face {
    font-family: 'DianaL';
    src: url('../fonts/Diana-Light.otf');
}
@font-face {
   font-family: 'sahnd';
   src: url(../fonts/sahnd.ttf)format('truetype');
}
*{
  position: relative;
  box-sizing: border-box;
  outline: none;
  direction: rtl;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}
body {
  background: #000;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container .header img {
    padding-top: 1rem;
    padding-bottom: 1rem;
    height: 15em;
}

.box-check-container {
    width: 100%;
    max-width: 25em;
    min-height: 20em;
    margin: 0 auto;
    padding: 1px 0;
    background-color: #373636;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 10%);
}

#search-box-container {
	min-height: 20px;
    padding: 19px;
    display: flex;
    padding-left: 2em;
    padding-right: 2em;
    background: linear-gradient(to right,rgba(245, 245, 245, 0.15),#373636 100%);
    background-color: #555555;
    border-bottom: 3px solid #000000;
    margin-top: auto;
}

	
#search-box-container:after {
 content: ".";
 display: block;
 height: 0;
 clear: both;
 visibility: hidden;
}

#search-data{
	width: 75%;
    height: 20px;
    border: 0;
    outline: 0;
    padding: 20px 6px;
    display: block;
    font-family: 'Almarai', sans-serif;
    border-radius: 0px 9px 9px 0;
    background-color: #fff;
    border-color: transparent;
    box-shadow: inset 0 2px 7px rgba(0,0,0,.075);
}

#check-button{
	cursor: pointer;
    background-color: #fff;
    color: #000;
    padding: 8px 20px;
    border-radius: 9px 0px 0px 9px;
    -moz-border-radius: 9px 0px 0px 9px;
    -webkit-border-radius: 9px 0px 0px 9px;
    -o-border-radius: 0 5px 5px 0;
    border: 0 none;
    font-weight: bold;
    font-size: 14px;
    font-family: "sahnd";
	}
.copyBtn{
	border: 1px solid #d8d9da;
    -moz-border-radius: 8px;
    -moz-box-shadow: 2px 2px 3px #000;
    padding: 6px 12px 6px;
    border-radius: 5px;
    float: left;
    color: #029789;
    background: #fefefe;
    font-weight: bold;
    box-shadow: 0px 1px 0px rgba(0,0,0,.075);	
}

.data {
    display: block;
    width: 28%;
    margin: 25px auto;
    height: 90px;
    background-color: #555555;
    color: white;
    transition: all 0.6s linear;
    border-radius: 55% 45% 30% 70% / 52% 50% 50% 48%;
}

.othr {
    position: relative;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1px;
    color: #fff;
    text-align: center;
    transition: all 0.6s linear;
	font: bold 122%/15px Almarai;
    line-height: 1.5;
    text-shadow: 0px 1px 1px #555555;
    font-family: 'Almarai', sans-serif;
}
.searchimg {
	width: 50px;
    margin: 20px 25px auto;
}
.check-data-found{
	display: block;
    width: 60%;
	    margin: 15px auto;
    height: 40px;
    color: #019789;
    padding: 10px;
    border-radius: 20px;
    background-color: #f6f7f9;
    border-color: #d6d8db;
    text-align: center;
	transition: all 0.6s linear;
    font: bold 125%/21px DianaL;
    box-shadow: 0 3px 0 rgb(228 235 248 / 9%);
    transition: all 0.6s linear;
}
.boxs {
	background: #fff;
    width: 100%;
    display: inline-block;
    padding: 14px 14px;
    margin-left: 3px;
}
.boxs-title{
	color: #02aa14;
    display: inline-block;
    margin-top: 5px;
	    font-family: 'Almarai', sans-serif;
	}
.boxs-title-not-found {
    color: #ff1e16;
    display: inline-block;
    font-family: 'Almarai', sans-serif;
    text-align: center;
}
#sourceDOM1_lab {
    color: #039789;
    font-family: 'Almarai', sans-serif;
    font-size: 12px;
}
 /*================================================
+/+ Media Queries
================================================*/

@media screen and (max-width: 720px) {
.box-check-container {
    width: 95%;
	border-radius: 2px;
	background-color: #c4c4c4;
}
#check-button {
    background-color: #000;
    color: #fff;
}
}