/**********************************
- This is the main style file
- Created By: Husam Danky
************************************/


/*** Font Definision ***/
@charset "utf-8";

@font-face {
	 font-family: Signature;
	 src: url("../fonts/Signature.eot"); /* EOT file for IE */
}
@font-face {
	 font-family: Signature;
	 src: url("../fonts/Signature.ttf"); /* TTF file for CSS3 browsers */
}


@font-face {
 font-family: Calibri;
 src: url("../fonts/Calibri.eot"); /* EOT file for IE */
}
@font-face {
 font-family: Calibri;
 src: url("../fonts/Calibri.ttf"); /* TTF file for CSS3 browsers */
}


@font-face {
 font-family: jazeera;
 src: url("../fonts/jazeera.eot"); /* EOT file for IE */
}
@font-face {
 font-family: jazeera;
 src: url("../fonts/jazeera.ttf"); /* TTF file for CSS3 browsers */
}


@font-face {
 font-family: cabin;
 src: url("../fonts/cabin.regular.eot"); /* EOT file for IE */
}
@font-face {
 font-family: cabin;
 src: url("../fonts/cabin.regular.ttf"); /* TTF file for CSS3 browsers */
}


@font-face {
 font-family: signatureFont;
 src: url("../fonts/NothingYouCouldDo.eot"); /* EOT file for IE */
}
@font-face {
 font-family: signatureFont;
 src: url("../fonts/NothingYouCouldDo.ttf"); /* TTF file for CSS3 browsers */
}


@font-face {
 font-family: Tajawal;
 src: url("../fonts/Tajawal-Regular.eot"); /* EOT file for IE */
}
@font-face {
 font-family: Tajawal;
 src: url("../fonts/Tajawal-Regular.ttf"); /* TTF file for CSS3 browsers */
}

/*** Reset and Set ***/
*{
    font-family: cabin;
    margin:0px;
	padding:0px;
	border:none;
	outline:none;
    
    /*** User select only text ***/
    -moz-user-select: text;
    -khtml-user-select: text;
    -webkit-user-select: text;
    -ms-user-select: text;
    user-select: text;    
}

*:focus {outline: none;}

img{
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none; 
}

.btn, a, a:hover, a:focus, a:visited, a:active{outline:0 none !important;}


/*** Global Settings ***/

/*** Start Scrollbar Style ***/
/* Works on Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #2e7bb8 transparent;
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 8px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background-color: #2e7bb8;
  border-radius: 5px;
  border: 1px solid transparent;
}
/*** End Scrollbar Style ***/

body{
  font-family:Calibri,Tahoma;
  font-size:10pt;
  color:#347AB6;
  background:#f2f2f2;
  font-weight:normal;
  overflow-x:hidden ;
  overflow-y:hidden;
  margin: 0;	
}

html,body{
    
    width: 100% !important;
    height: 100% !important;
    overflow: hidden;
}

#maindisplay{
    margin:0px;
	padding:0px;
    width: 100% !important;
    height: 100% !important;
	border:none;
	outline:none;
    overflow: hidden;
}

::-moz-selection { /* Code for Firefox */
    color: #FFF;
    background: #347AB6;
}

::selection {
    color: #FFF;
    background: #347AB6;
}

select, select:focus, option{
    outline: none !important;
    font-family: cabin !important;
}

select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000;
}

.max-width{
  min-width: 100%;
}

.margin-15{margin: 15px;}
.margin-top-15{margin-top: 15px;}
.margin-5{margin: 5px;}
.float-right{float: right;}
.float-left{float: left;}
.block{display: block;}
.inline{display:inline-block; margin: 5px;}
.default-pointer{cursor: default;}
.center {
    float: none;
    margin: 0 auto;
    text-align: center;
    align-content: center;
}
/*** Form Control ***/

input.form-control,input.form-control:focus,select.form-control,select.form-control:focus {
    
    box-shadow: none;
   -webkit-box-shadow: none;
   -moz-box-shadow: none;
   -moz-transition: none;
   -webkit-transition: none;
}

/*** Typography ***/
h3{color:#004275;}

.extra_font{font-size: 12.5pt;}
.panel_title{
    font-family:Calibri;
    font-size: 12pt;
    color: #d4e6f1;
    border-right: solid 1px #21618c;
}

.panel_title_main{
    margin: 15px;
    font-family:Calibri;
    font-size: 12pt;
    color: #d4e6f1;
}

/*If the input have a wrong value*/
.error_value{background: #FFF2C5 !important;}

/*** Login Area and elements ***/
#Login_Area{
     margin: auto;
     margin-top: 25vh;
     margin-bottom: 15px;
     background: transparent;
    
    width: 100%;
    vertical-align: middle;
    align-self: center;
    padding-top: 5px;
    padding-bottom: 5px;
}

#userusername, #userpassword{width:30vw;}

.showHide{
    visibility: hidden;
    cursor: pointer;
    margin-top: 5px;
    padding: 2px;
    margin-left: 5px;
    font-size: 10pt;
    color: #c0c0c0;
    position: absolute;
    right: 10px;
    top: 5px;
    z-index: 999;
    /* transition */
	-webkit-transition: 1s;
	-moz-transition: 1s;
	transition: 1s;    
}

.showHide:hover{color:#347AB6;}

.login-heading{
    background: transparent;
    color:#4a4a4a;
    padding: 15px;
    position: fixed;
    top: 0;
    width: 100%;
    vertical-align: middle;
    line-height: 50px;
}

.login-footer{
    background: transparent;
    color:#4a4a4a;
    padding: 20px;
    position: fixed;
    bottom: 0;
    width: 100%;
     line-height: 20px;
}

#loginbt{
    font-size:1.3em !important;
    width: 200px;
	-webkit-transition: 1s;
	-moz-transition: 1s;
	transition: 1s;
}

.forgot_area{margin-top: 35px; cursor: pointer;}

.invalid_login{
    border-bottom-color: red;
}

/*** Loader Style ***/ 
.loader {
  border: 16px solid #c0c0c0;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*** Inline Mini loader***/

.spinner {
  margin: 1px;
  width: 70px;
  text-align: center;
    display: inline;
}

.spinner > div {
  width: 12px;
  height: 12px;
  background-color: #347AB6;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% { 
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}



/*** The snackbar - position it at the bottom and in the middle of the screen ***/
.snackbar {
    visibility: hidden;
    min-width: 250px;
    
    background-color: #004275;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 16px;
    position: fixed;
    z-index: 9999999;
    right: 5px;
    bottom: 25vh;
    font-size: 10pt;
}

.danger{background: #A90000;}

.success{background: #006C0D;}
.snormal{background: #347AB6;}

.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 4.5s;
    -moz-animation: fadein 0.5s, fadeout 0.5s 4.5s;
    animation: fadein 0.5s, fadeout 0.5s 4.5s;
}

@-webkit-keyframes fadein {
    from {bottom: 0; opacity: 0;} 
    to {bottom: 25vh; opacity: 1;}
}

@keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 25vh; opacity: 1;}
}

@-webkit-keyframes fadeout {
    from {bottom: 25vh; opacity: 1;} 
    to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
    from {bottom: 25vh; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}

.en_message{
    display: inline-block; 
    margin-right: 5px; 
    font-family: Calibri;
}

.ar_message{
    display: inline-block; 
    margin-left: 5px;
    font-family: jazeera; 
    font-size: 10pt;
}

.dimgray{color: dimgray;}




.ui-tooltip {
    /* tooltip container box */
    white-space: pre-line;
}

.ui-tooltip-content {
    /* tooltip content */
    white-space: pre-line;
}


/*** Visual elements styles ***/


.inline-transparent{
    background: transparent;
}

.inline-transparent:focus{
    color: #4a4a4a;
}

/*** Mobile view styles ***/

@media screen and (max-width: 700px) {

    #clockbox{display:none;}
    #userusername, #userpassword{width:60vw;}
}

@media screen and (max-width: 780px) {
    .extra_font{font-size: 10pt;}
}

@media screen and ( max-height: 500px ){
    .login-footer{display: none;}
    .login-heading{line-height: 0px;}
    .login-heading img {width: 32px; height: 32px;}
    #Login_Area{margin-top: 20px;}
    #clockbox{margin-top: 15px;}
}


/********* Start Animated Background ***********/

.circle{
  position: absolute;
  border-radius: 50%;
  animation: ripple 15s infinite;
  background: #7FB3D5;
   /* box-shadow: 0px 0px 1px 0px #508fb9; */
}

.small{
  width: 200px;
  height: 200px;
  left: -100px;
  bottom: -100px;
}

.medium{
  width: 400px;
  height: 400px;
  left: -200px;
  bottom: -200px;
}

.large{
  width: 600px;
  height: 600px;
  left: -300px;
  bottom: -300px;
}

.xlarge{
  width: 800px;
  height: 800px;
  left: -400px;
  bottom: -400px;
}

.xxlarge{
  width: 1000px;
  height: 1000px;
  left: -500px;
  bottom: -500px;
}





.shade1{
  opacity: 0.2;
}
.shade2{
  opacity: 0.5;
}

.shade3{
  opacity: 0.7;
}

.shade4{
  opacity: 0.8;
}

.shade5{
  opacity: 1;
}

@keyframes ripple{
  0%{
    transform: scale(0.8);
  }
  
  50%{
    transform: scale(1.2);
  }
  
  100%{
    transform: scale(0.8);
  }
}

@media screen and ( max-height: 550px ){
    
    .ripple-background{visibility: hidden; display: none;}
}

@media screen and ( max-width: 600px ){
    
    .ripple-background{visibility: hidden; display: none;}
}

@media screen and (max-width: 1366px) {
    

.small{
  width: 100px;
  height: 100px;
  left: -50px;
  bottom: -50px;
}

.medium{
  width: 200px;
  height: 200px;
  left: -100px;
  bottom: -100px;
}

.large{
  width: 300px;
  height: 300px;
  left: -150px;
  bottom: -150px;
}

.xlarge{
  width: 400px;
  height: 400px;
  left: -200px;
  bottom: -200px;
}

.xxlarge{
  width: 500px;
  height: 500px;
  left: -250px;
  bottom: -250px;
}    
    
    
}

.pd-10{padding: 10px;}
/*** End Animated Background ***/


.bg-login-image {
    
  background: url("../images/light.png");
  background-repeat:no-repeat;
  background-size:contain;
  background-position:center;
  width: 100%;
  height: 72px;
  margin-top: 20px;
  margin-bottom: 10px;
}
