﻿/* REUSE VARS */
/* GLOBAL */
body {
  margin: 0 auto;
  font-family: "Source Sans Pro";
  animation: animatedBackground 50s linear infinite;
  background: url(/Content/Images/bg.jpg);
  background-size: 110% auto;
  background-position-x: left;
}
footer {
  padding-top: 10px;
  border-top: 1px solid #4267b2;
  bottom: 0;
  height: 40px;
  background: #3b5998;
  position: fixed;
  left: 0;
  right: 0;
  color: white;
}
em.fa.padR10 {
  padding-right: 10px;
}
.pad10 {
  padding: 10px;
}
.btn > em.fa {
  padding-right: 5px;
}
.large-icon {
  font-size: 72px;
}
.fa-large {
  font-size: 108px;
  color: #EEE;
}
.darker-bg {
  background: rgba(0, 0, 0, 0.5);
}
.panel-default {
  overflow: hidden;
  border-radius: 10px;
}
/* TABLES */
table {
  width: 100%;
}
table tbody th {
  background: #3b5998;
  color: white;
}
table tbody tr {
  background: #f7f7f7;
  color: #3b5998;
}
table tbody tr:nth-child(even) {
  background: white;
  color: #3b5998;
}
table thead tr,
table tbody tr,
table tbody tr th,
table tbody tr td {
  border: 1px solid white;
  padding: 10px;
}
table tbody th a,
table tbody th a:hover {
  color: white;
}
table tbody td a,
table tbody td a:hover {
  color: #3b5998;
}
table table,
table table td {
  width: auto;
  background: #3b5998;
  color: #f7f7f7;
}
table table td a,
table table td a:hover {
  color: #f7f7f7;
}
table table td span {
  color: white;
}
/* NAV BAR */
.navbar,
.navbar li.active {
  background: #3b5998;
}
.navbar li a:active,
.navbar li a:focus,
.navbar li a:hover {
  background: #4267b2;
}
.navbar li a,
.navbar-brand {
  font-family: "Source Sans Pro";
  font-size: 16px;
  color: white;
}
.navbar-toggle em {
  color: white;
}
.navbar-brand:hover {
  background: #4267b2;
  color: white;
}
/* CONTENT AREA */
.content-area {
  margin-top: 50px;
  padding-top: 30px;
  padding-bottom: 30px;
}
.content-area > .container {
  background: white;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  border: 1px solid #CCC;
}
.controlLabel {
  color: #3b5998;
  width: 100%;
  float: left;
  font-weight: bold;
  padding: 10px 0;
}
.control {
  color: #3b5998;
  width: 100%;
  padding: 10px;
}
/* MODAL POPUPS */
.modal-control {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 999;
}
.modal-control .inner {
  overflow: hidden;
  position: fixed;
  top: 100px;
  width: 800px;
  left: 50%;
  margin-left: -400px;
  background: white;
  z-index: 1000;
  border: 1px solid #CCC;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
.modal-control .inner > div {
  border-bottom: 1px solid #CCC;
  width: 100%;
  height: auto;
  padding: 10px;
}
.modal-control .inner > div:last-child {
  border-bottom: none;
}
.modal-control .inner .header {
  background: #4267b2;
  color: white;
  font-size: 22px;
}
.modal-control .inner .footer {
  background: #f7f7f7;
}
.modal-control .inner .content .email-preview {
  padding: 10px;
  max-height: 500px;
  overflow: auto;
}
.modal-control .inner .content .log-content {
  padding: 10px;
  max-height: 500px;
  overflow: auto;
}
/* DASHBOARD */
.dashboard-widget {
  color: white;
}
.dashboard-widget .inner-header {
  font-size: 24px;
  padding: 20px;
}
.dashboard-widget .inner-description {
  font-size: 16px;
  padding: 20px 20px 40px 20px;
}
.dashboard-widget.device {
  background: url('/Content/Images/Devices.jpg');
  background-size: cover;
}
.dashboard-widget.customer {
  background: url('/Content/Images/Customers.jpg');
  background-size: cover;
}
.dashboard-widget.login {
  background: url('/Content/Images/Logins.jpg');
  background-size: cover;
}
.dashboard-widget.report {
  background: url('/Content/Images/Reports.jpg');
  background-size: cover;
}
.dashboard-widget.api {
  background: url('/Content/Images/API.jpg');
  background-size: cover;
}
@keyframes animatedBackground {
  0% {
    background: url(/Content/Images/bg.jpg);
    background-size: 110% auto;
    background-position-x: left;
  }
  25% {
    background: url(/Content/Images/bg.jpg);
    background-size: 110% auto;
    background-position-x: right;
  }
  100% {
    background: url(/Content/Images/bg.jpg);
    background-size: 110% auto;
    background-position-x: left;
  }
}