@font-face {
	font-family: 'Atheer';
	src: url('../fonts/hinted-gedinarone.eot');
	src: url('../fonts/hinted-gedinarone.eot?#iefix') format('embedded-opentype'),
         url('../fonts/hinted-gedinarone.woff2') format('woff2'),
		 url('../fonts/hinted-gedinarone.woff') format('woff'),
		 url('../fonts/hinted-gedinarone.ttf') format('truetype'),
		 url('../fonts/hinted-gedinarone.svg#gedinarone') format('svg');
	font-weight: normal;
	font-style: normal;
}
.none {
    display: none;
}
.effect {
    -moz-transition-timing-function: ease-out;
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    -moz-transition-duration: 500ms;
    -webkit-transition-duration: 500ms;
    -o-transition-duration: 500ms;
    transition-duration: 500ms;
}
.animate-effect {
    -vendor-animation-duration: 3s;
    -vendor-animation-delay: 2s;
    -vendor-animation-iteration-count: infinite;
}
.hidden {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
}
.animated {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
}
html{
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}
body{
	font-family: 'Atheer', tahoma, arial, sans-serif;
    margin:0;
    padding:0;
	background:#ececec;
    font-size: 16px;

}
.login-header{
    display: block;
    width: 351px;
    height: 108px;
    position: relative;
    margin: 0 auto;
    background-image: url(../images/logo.png);
}
.container{
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
}
.login {
    display: block;
    position: absolute;
    top: -75px;
    left: 0;
    bottom: 0;
    right: 0;
    margin-bottom: auto;
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
    width: 550px;
    height: 400px;
}
.login-form {
    position: relative;
    width: 65%;
    margin: 0 auto;
    margin-top: 25px;
    border: 1px solid #404041;
    border-radius: 10px;
    background: #797979;
    overflow: hidden;
}
.login-input {
    display: block;
    width: 90%;
    margin: 0 auto;
    margin-bottom: 15px;
    border: 0px;
    border-radius: 25px;
    padding: 9px 25px;
}
.login-input:focus {
    outline: none;
}
.login-btn {
    position: relative;
    width: 90%;
    height: 36px;
    background: #00abe7;
    font-size: 18px;
    border: 0px;
    color: #fff;
    text-align: center;
    -moz-border-radius: 25px;
    -webkit-border-radius: 25px;
    -o-border-radius: 25px;
    -ms-border-radius: 25px;
    margin-left: 5%;
    border-radius: 25px;
    margin-bottom: 15px;
    margin-top: 15px;
    font-family: 'Atheer', sans-serif, arial;
    outline: none;
}
.login-btn:hover{
    background: #00abe7;
}
.login-note{
    text-align: center;
    color: #fff;
    font-size: 18px;
    margin-bottom: 15px;
    padding-top: 25px;
}
.lost-pass{
    display: block;
    width: 100%;
    text-align: center;
    color: #fff;
    font-family: tahoma, serif;
    font-size: 13px;
    cursor: pointer;
}
.noty_message, .noty_message span{
    direction: rtl;
    text-align: right;
    float: right;
}
.copyright{
    position: absolute;
    bottom: 5%;
    width: 100%;
    text-align: center;
    font-size: 16px;
    color: #545454;
}
.copyright a{
    text-decoration: none;
    color: #0067aa;
}
#loading{
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    background: rgba(0,0,0,0.8);
}
.spinner {
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin-bottom: auto;
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
  0% { -webkit-transform: perspective(120px) }
  50% { -webkit-transform: perspective(120px) rotateY(180deg) }
  100% { -webkit-transform: perspective(120px) rotateY(180deg)  rotateX(180deg) }
}

@keyframes sk-rotateplane {
  0% { 
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg) 
  } 50% { 
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg) 
  } 100% { 
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}
@media only screen and (min-width: 0px) and (max-width: 700px) {
    .login{width: 100%;}
    .login-form{width: 85%;}
}