@charset "utf-8";

.loading {
    z-index: 20;
    position: absolute;
    top: 0;
    left:-5px;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
}
.loading-content {
    position: absolute;
    border: 16px solid #f3f3f3;
    border-top: 16px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    top: 40%;
    left:50%;
    animation: spin 2s linear infinite;
    }
    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
}

.loginBody {
    background-size:cover;
	background-repeat: no-repeat;
	background-position:center center;
	background-attachment:fixed;
}

/*  login form */

.login-container{
    position: relative;
    width: 300px;
    margin: 80px auto;
    padding: 20px 40px 40px;
    text-align: center;
    background: #fff;
    border: 1px solid #ccc;
}

#output{
    position: absolute;
    width: 300px;
    top: -75px;
    left: 0;
    color: #fff;
}

#output.alert-success{
    background: rgb(25, 204, 25);
}

#output.alert-danger{
    background: rgb(228, 105, 105);
}


.login-container::before,.login-container::after{
    content: "";
    position: absolute;
    width: 100%;height: 100%;
    top: 3.5px;left: 0;
    background: #fff;
    z-index: -1;
    -webkit-transform: rotateZ(4deg);
    -moz-transform: rotateZ(4deg);
    -ms-transform: rotateZ(4deg);
    border: 1px solid #ccc;

}

.login-container::after{
    top: 5px;
    z-index: -2;
    -webkit-transform: rotateZ(-2deg);
     -moz-transform: rotateZ(-2deg);
      -ms-transform: rotateZ(-2deg);

}

.avatar{
    width: 130px;height: 130px;
    margin: 10px auto 30px;
    border-radius: 100%;
    border: 2px solid #aaa;
    background-size: cover;
	background-color:#CCC;
}

.form-box input{
    width: 100%;
    padding: 10px;
    text-align: center;
    height:40px;
    border: 1px solid #ccc;;
    background: #fafafa;
    transition:0.2s ease-in-out;

}

.form-box input:focus{
    outline: 0;
    background: #eee;
}

.form-box input[type="text"]{
    border-radius: 5px 5px 0 0;
    text-transform: lowercase;
}

.form-box input[type="password"]{
    border-radius: 0 0 5px 5px;
    border-top: 0;
}

.form-box button.login{
    margin-top:15px;
    padding: 10px 20px;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

/* end login form */


.form-group.required:before{
    color: red;
    content: "*";
    position: absolute;
    margin-left: -10px;
 }

 .requiredfield {
  color: red;
}

 .btn-edit {
	padding:3px 8px 3px 8px;
	color: #fff;
	border-radius:3px;
	background-color: #007bff;
	border-color: #007bff;
}

.btn-edit:hover {
	color: #fff;
	background-color: #0069d9;
	border-color: #0062cc;
}
.btn-del {
	padding:3px 8px 3px 8px;
	color: #fff;
	border-radius:3px;
	background-color: #dc3545;
	border-color: #dc3545;
}

.btn-del:hover {
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130;
}

.btn-save {
  padding:3px 8px 3px 8px;
  color: #fff;
  border-radius:3px;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-save:hover {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
}



/* small table --**/

.small_table {
	width:100%;
	max-width: 100%;
	margin-bottom: 1rem;
	background-color: transparent;
	border: 1px solid #dee2e6;
}
 thead {
clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
    padding: 0;
    border: 0;
    height: 1px;
    width: 1px;
    overflow: hidden;
	border: 1px solid #dee2e6;
	}
.small_table th {
		font-size:13px;
		/*color:#454648;*/
		text-align:center;
	background-color: rgba(29,150,178,1);
    border: 1px solid rgba(29,150,178,1);
    font-weight: normal;
    color: white;
}
tfoot {
	border: 1px solid #d4d4d4;
	border-left: 1px solid #d4d4d4;
}

 tbody,
  tr,
  th,
  td {
    padding: 0;
    text-align: left;
    white-space: normal;
 }
  th,
  td {
    padding: .1em;
    vertical-align: middle;
 }
  tr {
      margin-bottom: 1em;
 }
.small_table td {
	font-size:13px;
	color:#454648;
	text-align:center;
	border: 1px solid #dee2e6;
}
.small_table th {
	padding: 0.25rem;
	vertical-align:middle;
	border: 1px solid #dee2e6;
}
.small_table td {
	padding: 0.20rem;
	vertical-align: middle;
	border-top: 1px solid #dee2e6;
}
.small_table tbody + tbody {
	border-top: 1px solid #dee2e6;
}


/*------------------------------------*\
	Light Theme Styles
\*------------------------------------*/
ul.simple-pagination {
	list-style: none;
}

.simple-pagination {
	display: block;
	overflow: hidden;
	padding: 0 5px 5px 0;
	margin: 0;
}

.simple-pagination ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.simple-pagination li {
	list-style: none;
	padding: 0;
	margin: 0;
	float: left;
}
span.ellipse.clickable {
	cursor: pointer;
}

.ellipse input {
	width: 3em;
}
.light-theme a, .light-theme span {
	float: left;
	color: #666;
	font-size:14px;
	line-height:24px;
	font-weight: normal;
	text-align: center;
	border: 1px solid #117995;
	min-width: 14px;
	padding: 0 7px;
	margin: 0 5px 0 0;
	border-radius: 3px;
	box-shadow: 0 1px 2px rgba(0,0,0,0.2);
	background: #efefef; /* Old browsers */
	background: -moz-linear-gradient(top, #ffffff 0%, #efefef 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#efefef)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #ffffff 0%,#efefef 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #ffffff 0%,#efefef 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #ffffff 0%,#efefef 100%); /* IE10+ */
	background: linear-gradient(top, #ffffff 0%,#efefef 100%); /* W3C */
}

.light-theme a:hover {
	text-decoration: none;
	background: #FCFCFC;
	border: 1px solid #0e637a;
}

.light-theme .current {
	background: #119bc8;
	color: #FFF;
	border-color: #0e92ae;
	box-shadow: 0 1px 0 rgba(255,255,255,1), 0 0 2px rgba(0, 0, 0, 0.3) inset;
	cursor: default;
}

.light-theme .ellipse {
	background: none;
	border: none;
	border-radius: 0;
	box-shadow: none;
	font-weight: bold;
	cursor: default;
}

.crCard {
    border-radius: 6px;
    box-shadow: 0 6px 10px -4px #aaa;
    background-color: #FFF;
    color: #252422;
    margin-bottom: 20px;
    position: relative;
    border: 0;
}
.card-body .numbers {
    text-align:right;
    font-size:2em;
}
.card-category {
    color:#9a9a9a;
    font-size:16px;
    line-height:1.4em;
}

.card-maintext {
    color:#181717;
    font-size:20px;
    line-height:1.4em;
}



