﻿@charset "UTF-8";
/* --------- Variables --------- */
/* --------- /Variables --------- */
/* --------- Colors --------- */
/* --------- /Colors --------- */
/* --------- Mixins --------- */
/* --------- /Mixins --------- */
body {
  margin: 15px;
}
p {
  font-size: 12px;
}
td {
  font-size: 11px;
}
/*Loading indicator on the login page.*/
.glyphicon-refresh-animate {
  animation: spin .7s infinite linear;
  -webkit-animation: spin2 .7s infinite linear;
}
@-webkit-keyframes spin2 {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    transform: scale(1) rotate(0deg);
  }
  to {
    transform: scale(1) rotate(360deg);
  }
}
.breadcrumb > li + li:before {
  content: ">\00a0";
  padding: 0 5px;
  color: #cccccc;
}

/* generic spinner */
.glyphicon-spin {
  -webkit-animation: spin 1s infinite linear;
  -moz-animation: spin 1s infinite linear;
  -o-animation: spin 1s infinite linear;
  animation: spin 1s infinite linear;
}
@-moz-keyframes spin {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* style.css */
/* ANIMATION STYLINGS
============================================================================= */
#signup-form {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  padding: 30px;
}
#form-views {
  width: auto;
}
#form-views .ng-enter {
  -webkit-animation: slideInRight 0.5s both ease;
  -moz-animation: slideInRight 0.5s both ease;
  animation: slideInRight 0.5s both ease;
}
#form-views .ng-leave {
  -webkit-animation: slideOutLeft 0.5s both ease;
  -moz-animation: slideOutLeft 0.5s both ease;
  animation: slideOutLeft 0.5s both ease;
}
#form-views.ng-enter,
#form-views.ng-leave {
  position: absolute;
  left: 30px;
  right: 30px;
  transition: 0.5s all ease;
  -moz-transition: 0.5s all ease;
  -webkit-transition: 0.5s all ease;
}
/* ANIMATIONS
============================================================================= */
/* slide out to the left */
@keyframes slideOutLeft {
  to {
    transform: translateX(-200%);
  }
}
@-moz-keyframes slideOutLeft {
  to {
    -moz-transform: translateX(-200%);
  }
}
@-webkit-keyframes slideOutLeft {
  to {
    -webkit-transform: translateX(-200%);
  }
}
/* slide in from the right */
@keyframes slideInRight {
  from {
    transform: translateX(200%);
  }
  to {
    transform: translateX(0);
  }
}
@-moz-keyframes slideInRight {
  from {
    -moz-transform: translateX(200%);
  }
  to {
    -moz-transform: translateX(0);
  }
}
@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translateX(200%);
  }
  to {
    -webkit-transform: translateX(0);
  }
}
/*animations for person rules*/
.wave.ng-enter,
.wave.ng-leave {
  -webkit-transition: 300ms cubic-bezier(0.25, 0.25, 0.75, 0.75) all;
  -moz-transition: 300ms cubic-bezier(0.25, 0.25, 0.75, 0.75) all;
  -o-transition: 300ms cubic-bezier(0.25, 0.25, 0.75, 0.75) all;
  transition: 300ms cubic-bezier(0.25, 0.25, 0.75, 0.75) all;
}
.wave.ng-enter {
  position: absolute;
  left: 100%;
}
.wave.ng-enter-active {
  left: 0;
}
.wave.ng-leave {
  position: absolute;
  left: 0;
}
.wave.ng-leave-active {
  left: -100%;
}
@media (min-width: 768px) {
  .sidebar-nav .navbar .navbar-collapse {
    padding: 0;
    max-height: none;
  }
  .sidebar-nav .navbar ul {
    float: none;
  }
  .sidebar-nav .navbar ul:not(.dropdown-menu) {
    display: block;
  }
  .sidebar-nav .navbar li {
    float: none;
    display: block;
  }
  .sidebar-nav .navbar li a {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
/*wizard status buttons*/
#wizard-status-buttons a {
  display: inline-block;
  font-size: 12px;
  margin-right: 10px;
  text-align: center;
  text-transform: uppercase;
}
#wizard-status-buttons a.active {
  background-color: #fff;
}
#wizard-status-buttons a.active span {
  background: #5cb85c;
  color: #0047ab;
}
#wizard-status-buttons a:hover {
  text-decoration: none;
}
#wizard-status-buttons span {
  /*background: #d9534f;*/
  background: #fff;
  display: block;
  height: 35px;
  margin: 0 auto 10px;
  padding-top: 10px;
  width: 35px;
  border-radius: 50%;
  color: #0047ab;
  border: 1px solid;
  border-color: #0047ab;
}
/*wizard status buttons*/
#person-wizard-status-buttons {
  padding: 2px;
}
#person-wizard-status-buttons a {
  display: inline-block;
  font-size: 12px;
  padding-right: 65px;
  text-align: center;
  text-transform: uppercase;
}
#person-wizard-status-buttons a.active {
  background-color: #fff;
}
#person-wizard-status-buttons a.active span {
  background: #5cb85c;
  color: #0047ab;
}
#person-wizard-status-buttons a:hover {
  text-decoration: none;
}
#person-wizard-status-buttons span {
  /*background: #d9534f;*/
  background: #fff;
  display: block;
  height: 20px;
  margin: 2px 5px 4px 3px;
  padding-top: 3px;
  width: 20px;
  border-radius: 50%;
  color: #0047ab;
  border: 1px solid;
  border-color: #0047ab;
  padding-left: 3px;
  font-size: 12px;
}
.person-wizard-btn-group {
  border: 2px solid #ccc;
  margin-right: 20px;
}


door-wizard-status-buttons {
  padding: 2px;
}
#door-wizard-status-buttons a {
  display: inline-block;
  font-size: 12px;
  padding-right: 65px;
  text-align: center;
  text-transform: uppercase;
}
#door-wizard-status-buttons a.active {
  background-color: #fff;
}
#door-wizard-status-buttons a.active span {
  background: #5cb85c;
  color: #0047ab;
}
#door-wizard-status-buttons a:hover {
  text-decoration: none;
}
#door-wizard-status-buttons span {
  /*background: #d9534f;*/
  background: #fff;
  display: block;
  height: 20px;
  margin: 2px 5px 4px 3px;
  padding-top: 3px;
  width: 20px;
  border-radius: 50%;
  color: #0047ab;
  border: 1px solid;
  border-color: #0047ab;
  padding-left: 3px;
  font-size: 12px;
}
.door-wizard-btn-group {
  border: 2px solid #ccc;
  margin-right: 20px;
}
/*Clear search icon button*/
#searchclear {
  position: absolute;
  right: 5px;
  top: 0;
  bottom: 0;
  height: 14px;
  margin: auto;
  font-size: 14px;
  cursor: pointer;
  color: #777;
  z-index: 9;
}
/*UI Bootstrap Pagination Override*/
.pagination {
  margin: 0 10px 10px 4px;
  float: right;
}
hr {
  margin: 10px 0 10px 0;
  border-width: thin;
}
.pic {
  margin-top: 16px;
  height: 110px;
  width: 110px;
  font-size: 42px;
  text-align: center;
  line-height: 98px;
  border: solid 1px #dddddd;
  border-radius: 55px;
  -moz-border-radius: 55px;
  -webkit-border-radius: 55px;
}
.sidebar li {
  padding-right: 4px;
}
.table > tbody > tr.alarm > td {
  color: #a94442;
  background-color: #ebccd1;
  border-color: #ebccd1;
}
.navbar .container-fluid {
  box-shadow: 1px 3px 5px #888888;
}
#navbar li a {
  padding-left: 30px;
  padding-right: 30px;
  font-size: 18px;
}
.btn-search {
  margin-left: 5px !important;
}
.delete-item {
  padding-right: 5px;
}
.input-group-btn a .glyphicons-search {
  padding: 1px 0 2px 4px;
}
.input-group-search {
  position: relative;
}
.input-group-search:before {
  display: block;
  width: 14px;
  height: 14px;
  content: "\e003";
  font-family: 'Glyphicons Regular';
  background-position: -48px 0;
  position: absolute;
  top: 8px;
  left: 8px;
  opacity: .5;
  z-index: 1000;
}
thead tr {
  background-color: #eeeeee;
  padding: 5px;
}
.btn {
  font-weight: 600;
}
.scrollable
{
    width:250px;
    height: 40px;
    margin: 0;
    padding: 0;
    white-space: nowrap;
    overflow: auto;
    overflow-y: hidden;
}
.person-content .panel-heading,
.user-content .panel-heading {
  padding: 0;
}
.person-content .panel-heading .btn,
.user-content .panel-heading .btn {
  padding: 8px 8px 8px 12px;
}
.person-content .panel-title,
.user-content .panel-title {
  padding: 8px 0 5px 10px;
}
.panel thead tr {
  background-color: #fff;
}
#personImage {
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  height: 100%;
}
.cropArea {
  background: #E4E4E4;
  overflow: hidden;
  width: 300px;
  height: 300px;
}
img-crop {
  width: 90%;
  height: 90%;
  display: block;
  position: relative;
  overflow: hidden;
}
img-crop canvas {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  outline: 0;
  -webkit-tap-highlight-color: transparent;
}
.picture-box {
  border: 1px solid #ccc;
}
.nav-user-dropdown {
  border-left: 1px solid #ccc;
  margin-right: -15px;
}
.nav-user-dropdown a {
  font-size: 1em !important;
}
h3,
h4,
h5 {
  color: #0047ab;
}
.sidebar ul li a span,
.nav-sidebar ul li a span {
  font-size: 18px;
}
.navbar-nav li ul li a span {
  font-size: 18px;
}
.panel-heading .glyphicons-circle-info {
  color: #0047ab;
}
@media (max-width: 460px) {
  .my-hidden-xs {
    display: none !important;
  }
}
/*Block grid used for mobile dashboard*/
[class*="block-grid-"] {
  display: block;
  margin: -15px;
  padding: 0;
}
[class*="block-grid-"]:before,
[class*="block-grid-"]:after {
  content: " ";
  display: table;
}
[class*="block-grid-"]:after {
  clear: both;
}
.block-grid-item {
  display: inline;
  margin: 0;
  padding: 0px;
  padding-bottom: 0px;
  float: left;
  list-style: none;
  font-size: 30px;
  min-height: 49px;
  border: 1px solid #0047ab;
  cursor: pointer;
}
.block-grid-xs-12 > .block-grid-item {
  width: 8.33333333%;
}
.block-grid-xs-12 > .block-grid-item:nth-of-type(n) {
  clear: none;
}
.block-grid-xs-12 > .block-grid-item:nth-of-type(12n+1) {
  clear: both;
}
.block-grid-xs-11 > .block-grid-item {
  width: 9.09090909%;
}
.block-grid-xs-11 > .block-grid-item:nth-of-type(n) {
  clear: none;
}
.block-grid-xs-11 > .block-grid-item:nth-of-type(11n+1) {
  clear: both;
}
.block-grid-xs-10 > .block-grid-item {
  width: 10%;
}
.block-grid-xs-10 > .block-grid-item:nth-of-type(n) {
  clear: none;
}
.block-grid-xs-10 > .block-grid-item:nth-of-type(10n+1) {
  clear: both;
}
.block-grid-xs-9 > .block-grid-item {
  width: 11.11111111%;
}
.block-grid-xs-9 > .block-grid-item:nth-of-type(n) {
  clear: none;
}
.block-grid-xs-9 > .block-grid-item:nth-of-type(9n+1) {
  clear: both;
}
.block-grid-xs-8 > .block-grid-item {
  width: 12.5%;
}
.block-grid-xs-8 > .block-grid-item:nth-of-type(n) {
  clear: none;
}
.block-grid-xs-8 > .block-grid-item:nth-of-type(8n+1) {
  clear: both;
}
.block-grid-xs-7 > .block-grid-item {
  width: 14.28571429%;
}
.block-grid-xs-7 > .block-grid-item:nth-of-type(n) {
  clear: none;
}
.block-grid-xs-7 > .block-grid-item:nth-of-type(7n+1) {
  clear: both;
}
.block-grid-xs-6 > .block-grid-item {
  width: 16.66666667%;
}
.block-grid-xs-6 > .block-grid-item:nth-of-type(n) {
  clear: none;
}
.block-grid-xs-6 > .block-grid-item:nth-of-type(6n+1) {
  clear: both;
}
.block-grid-xs-5 > .block-grid-item {
  width: 20%;
}
.block-grid-xs-5 > .block-grid-item:nth-of-type(n) {
  clear: none;
}
.block-grid-xs-5 > .block-grid-item:nth-of-type(5n+1) {
  clear: both;
}
.block-grid-xs-4 > .block-grid-item {
  width: 25%;
}
.block-grid-xs-4 > .block-grid-item:nth-of-type(n) {
  clear: none;
}
.block-grid-xs-4 > .block-grid-item:nth-of-type(4n+1) {
  clear: both;
}
.block-grid-xs-3 > .block-grid-item {
  width: 33.33333333%;
}
.block-grid-xs-3 > .block-grid-item:nth-of-type(n) {
  clear: none;
}
.block-grid-xs-3 > .block-grid-item:nth-of-type(3n+1) {
  clear: both;
}
.block-grid-xs-2 > .block-grid-item {
  width: 50%;
}
.block-grid-xs-2 > .block-grid-item:nth-of-type(n) {
  clear: none;
}
.block-grid-xs-2 > .block-grid-item:nth-of-type(2n+1) {
  clear: both;
}
.block-grid-xs-1 > .block-grid-item {
  width: 100%;
}
.block-grid-xs-1 > .block-grid-item:nth-of-type(n) {
  clear: none;
}
.block-grid-xs-1 > .block-grid-item:nth-of-type(1n+1) {
  clear: both;
}
.btn-go {
  background-color: #43ac6a;
  color: #fff;
}
.lbl-go {
  background-color: #43ac6a;
  color: #fff;
  border: 2px solid #0047ab;
  margin: 0;
  padding: 0px;
}
.btn-go:hover {
  background-color: #3c9a5f;
  color: #fff;
}
@font-face {
  font-family: "untitled-font-1";
  src: url("../fonts/untitled-font-1.eot");
  src: url("../fonts/untitled-font-1.eot?#iefix") format("embedded-opentype"), url("../fonts/untitled-font-1.woff") format("woff"), url("../fonts/untitled-font-1.ttf") format("truetype"), url("../fonts/untitled-font-1.svg#untitled-font-1") format("svg");
  font-weight: normal;
  font-style: normal;
}
[data-icon]:before {
  font-family: "untitled-font-1" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}
[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "untitled-font-1" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}
.icon-door-closed:before {
  content: "a";
}
.icon-door-open:before {
  content: "b";
}
.door-icon {
  margin: 0;
  overflow: hidden;
  font-size: 25px;
  color: #777;
  padding-top: 20px !important;
  position: relative;
}

.selected-door-icon {
  color: #0047ab;
  padding-top: 20px !important;
  position: relative;
}

.door-name {
  margin: 0;
}

.alarm-icon {
  margin: 0;
  overflow: hidden;
  font-size: 20px;
  color: red;
  padding-top: 10px !important;
  position: absolute;
}
.selected-door-name {
  padding-bottom: 5px;
  font-size: 12px;
}
.container-mobile {
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
}
.container-mobile .col-xs-3 {
  padding-left: 1px !important;
  padding-right: 1px !important;
}
.container-mobile .door-group-text {
  float: left !important;
  font-size: 9px;
}
.container-mobile .door-status-text {
  float: right !important;
  font-size: 9px;
}
.container-mobile .selected-door-text {
  padding-bottom: 10px;
}
.container-mobile .row {
  margin-left: -23px;
  margin-right: -23px;
}
.container-mobile .block-grid-xs-3 {
  margin-left: -20px;
  margin-right: -20px;
}
.container-mobile .selected-door {
  border: 2px solid #0047ab;
}
.container-mobile .glyphicons-lock {
  font-size: 24px;
  color: #777;
  padding-top: 20px;
}
.container-mobile .lock-selected {
  color: #0047ab;
}
.container-mobile .glyphicons-unlock {
  font-size: 24px;
  color: #43ac6a;
  padding-top: 20px;
}
.container-mobile .glyphicons-shield-encrypted {
  font-size: 15px;
  color: #43ac6a;
  padding-top: 0px;
}
.container-mobile .glyphicons-shield-nonencrypted {
  font-size: 15px;
  color: red;
  padding-top: 0px;
}
.container-mobile .glyphicons-stop {
  font-size: 44px;
  padding-top: 0;
  color: #f78166;
}
.container-mobile .stop-selected {
  color: red;
}
.container-mobile .glyphicons-ban {
  font-size: 24px;
  padding-top: 0;
  color: #777;
}
.container-mobile .ban-selected {
    color:#0047ab;
}
.container-mobile .glyphicons-lockdown {
  color: red;
}
.container-mobile .glyphicons-alarm {
  font-size: 24px;
  padding-top: 15px;
  color: #73e29d;
}
.container-mobile .glyphicons-person-walking {
  font-size: 30px;
  padding-top: 20px;
  color: #777;
}

.container-mobile .lockdown {
  color: #f78166;
}
.container-mobile .lockdown-selected {
  color: #f04124;
}
.container-mobile .disabled {
  background-color: #999999;
}
.container-mobile .alarm {
  color: #f78166;
}
.container-mobile .alarm-selected {
  color: #f04124;
}
.container-mobile .alarmClear {
  color: #73e29d;
}
.container-mobile .alarmClear-selected {
  color: #43ac6a;
}

.container-mobile .nowalk {
  color: #f04124;
}
.container-mobile .canwalk {
  color: #777;
}
.container-mobile .canwalk-selected {
  color: #0047ab;
}
.container-mobile .walking {
  color: #43ac6a;
}
.container-mobile .script-name {
  font-size: 14px;
  font-weight: bold;
}
.container-mobile .script-description {
  font-size: 9px;
}
.container-mobile .col-xs-12 {
  margin-left: -3px;
}
.container-mobile .script-list {
  margin-left: -25px;
  margin-right: -25px;
  width: 100%;
}
col-mobile {
  padding-left: 0 !important;
  padding-right: 0 !important;
}


.container-matrix {
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
}
.container-matrix .col-xs-3 {
  padding-left: 1px !important;
  padding-right: 1px !important;
}
.container-matrix .door-group-text {
  float: left !important;
  font-size: 9px;
}
.container-matrix .door-status-text {
  float: right !important;
  font-size: 9px;
}
.container-matrix .selected-door-text {
  padding-bottom: 10px;
}
.container-matrix .row {
  margin-left: -23px;
  margin-right: -23px;
}
.container-matrix .block-grid-xs-3 {
  margin-left: -20px;
  margin-right: -20px;
}
.container-matrix .door-icon
{
    font-size:18px;
}

.container-matrix .glyphicons-lock {
  font-size: 15px;
  color: #777;
}
.container-matrix .glyphicons-unlock {
  font-size: 15px;
  color: #43ac6a;
}
.container-matrix .glyphicons-shield-encrypted {
  font-size: 15px;
  color: #43ac6a;
}
.container-matrix .glyphicons-shield-nonencrypted {
  font-size: 15px;
  color: red;
}
.container-matrix .glyphicons-stop {
  font-size: 20px;
  color: #f78166;
}
.container-matrix .glyphicons-ban {
  font-size: 15px;
  color: #777;
}
.container-matrix .glyphicons-lockdown {
  color: #0047ab;
}
.container-matrix .glyphicons-alarm {
  font-size: 15px;
  color: #73e29d;
}
.container-matrix .glyphicons-person-walking {
  font-size: 15px;
  color: #777;
}

.container-matrix .lockdown {
  color: #f78166;
}
.container-matrix .disabled {
  background-color: #999999;
}
.container-matrix .alarm {
  color: #f78166;
}
.container-matrix .alarmClear {
  color: #73e29d;
}
.container-matrix .nowalk {
  color: #f04124;
}
.container-matrix .canwalk {
  color: #777;
}
.container-matrix .walking {
  color: #43ac6a;
}
.container-matrix .col-xs-12 {
  margin-left: -3px;
}


.glyphicons-shield-encrypted {
  font-size: 15px;
  color: #43ac6a;
}
.glyphicons-shield-nonencrypted {
  font-size: 15px;
  color: red;
}

.glyphicons-red {
    color: #f31717;
}

.glyphicons-green {
    color: #43ac6a;
}

.glyphicons-yellow {
    color: #e7ef1e;
}

.glyphicons-lg {
    font-size: 20px;
    padding-top: 0px;
    padding-left: 10px;
    vertical-align: middle;
}

.person-badge-exp .dropdown-menu {
  left: -50px !important;
}

/* Dashboard door monitor */
.doorControl {
  table-layout: fixed;
  width: 100%;
  white-space: nowrap;
  margin: 0;
  padding: 0;
  border-spacing: 0 0;
  border-collapse: collapse;
}
.doorControl td {
  white-space: nowrap;
  overflow: hidden;
  border: 0 solid ;
  height: 10px;
}

.table-borderless tbody tr td, .table-borderless tbody tr th, .table-borderless thead tr th {
    padding: 0;
    border: 0 !important;
}
/* Column widths are based on these cells */
.col-one {
  width: 18%;
  text-align: left;
  padding: 0 0 0 0;
 }
.col-two {
  width: 60%;
  text-align: center;
  padding: 0 0 0 0;
}
.col-three {
  width: 20%;
  text-align: right;
  padding: 0 0 0 0;
}
.col-one-thru-three{
  width: 100%;
  font-size: xx-small;
  text-align: center;
  padding: 0 0 0 0;
}
.col-timeout {
    width: 100%;
    text-align: center;
    padding: 0 0 0 0;
}
.col-lockdown {
  width: 100%;
  text-align: center;
  padding: 0 0 0 0;
  color: #0047ab;
}
.col-csupDown {
  width: 100%;
  text-align: center;
  padding: 0 0 0 0;
  color: red;
}
.col-picture{
  width: 100%;
  text-align: center;
  padding: 0 0 0 0;

}

.row-one {
    vertical-align: middle;
    height: 10px;
    padding: 0 0 0 0;
}
.row-two {
    height: 70px;
    vertical-align: middle;
    padding: 0 0 0 0;
}
.row-two-disabled {
    height: 68px;
    vertical-align: middle;
    padding: 0 0 0 0;
    color: #777;
}
.row-three {
  color: #fff;
    height: 48px;
    vertical-align: bottom;
    padding: 0 0 0 0;
}
.row-picture {
    height: 135px;
    vertical-align: top;
    padding: 0 0 0 0;
}
.selected {
  background-color: #dff0d8;
  font-weight: bold;

}
.alert-box {
	padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;  
}

.success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
    display: none;
}

.failure {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
    display: none;
}

.warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc;
    display: none;
}
.even {
    background-color: #fff;
}
.odd{
    background-color: #e4d9d9;
}
.notDeleted {
    background-color: #fff;
}
.deleted{
    background-color: #e4d9d9;
}
.loaded {
    background-color: #dff0d8;
}
.invalidFilename {
    background-color: #f2dede;
}
.needsUpgrade {
  background-color: #fcf8e3;
  font-weight: bold;

}
.failedUpgrade {
  background-color:transparent;
  color: red;
  font-weight: bold;

}
.invalidLicense {
  background-color: red;
  font-weight: bold;

}
.validated {
  background-color: #73e29d;
  font-weight: bold;

}
.notValidated {
  background-color: #f88a8a;
  font-weight: bold;

}

/*.progress { 
  height: 1em;
  i { line-height: 3.5em; }
}

.progress-bar { 
  transition: width 1s ease-in-out; 
}*/


.progress-bar {
  width: 100px;
  height: 18px;
  border-style: solid;
  border-width: 1px;
  /*border-radius: 8px;*/
  background-color: #43ac6a;
  border-color: #aaa;  
}

.progress-bar-bar {
  width: 100px;
  background-color: #fff;
  height: 10px;
  color: #fff;
  font-weight: normal
  /*border-radius: 8px;*/
}

.loader {
    border: 4px solid #f3f3f3; /* Light grey */
    border-top: 4px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spinme 2s linear infinite;
}

/* Style the tab */
.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}

    /* Style the buttons that are used to open the tab content */
    .tab button {
        background-color: inherit;
        float: left;
        border: none;
        outline: none;
        cursor: pointer;
        padding: 14px 16px;
        transition: 0.3s;
    }

        /* Change background color of buttons on hover */
        .tab button:hover {
            background-color: #ddd;
        }

        /* Create an active/current tablink class */
        .tab button.active {
            background-color: #ccc;
        }

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}

@keyframes spinme {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/*# sourceMappingURL=site.css.map */