body {
  padding-top: 50px;
  font-family:'Nunito Sans', sans-serif;
}
.starter-template {
  padding: 40px 15px;
  text-align: center;
}
/* Have to set height explicity on ui-view
to prevent collapsing during animation*/
[ui-view] {
  height: 65px;
}
.ui-view-container {
  position: relative;
}
[ui-view].ng-enter,
[ui-view].ng-leave {
  position: absolute;
  left: 0;
  right: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
[ui-view].ng-enter {
  opacity: 0;
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  -moz-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5);
}
[ui-view].ng-enter-active {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  -moz-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
[ui-view].ng-leave {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
[ui-view].ng-leave-active {
  opacity: 0;
  -webkit-transform: translate3d(100px, 0, 0);
  -moz-transform: translate3d(100px, 0, 0);
  transform: translate3d(100px, 0, 0);
}
.login-container {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 1;
  display: block;
  width: 100vw;
  height: 100vh;
}

.login-panel {
  z-index: 9999;
  border-radius: 1em;
  opacity: 0.8;
}
input.login {
  font-size: 20px;
  text-align:center;
  border-radius: 10px;
  height: 40px;
}
.thumb {
  display: inline-block;
  border-radius: 5px;
  width: 15vw;
  height:15vw;
  margin: 2px;
  margin-left: 10px;
  border: 1px solid black;
  background-position: center center;
  background-size: cover;
}
.padding-right {
  margin-right: 5px;
}
.drop-box {
    background: #F8F8F8;
    border: 5px dashed #DDD;
    width: 100%;
    text-align: center;
    padding: 25px;
}
.dragover {
    border: 5px dashed blue;
}
.preview-tab {
  border: 1px solid silver;
  height: 150px;
  margin: 10px 0px;
  padding: 10px;
  text-align: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.preview-temp-tab {
  border: 1px solid silver;
  height: 150px;
  margin: 10px 0px;
  padding: 10px;
  text-align: center;
  background-color: lightgray;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.btn-sm {
  font-size: x-small;
  padding: 1px 5px;
}
.btn-outline {
  background-color: transparent;
  color: silver;
  transition: all .5s;
}
.btn-rounded {
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 20px;
}
.btn-square {
  padding: 50px;
  border-radius: 20px;
}
.wrapword {
  word-break: break-all;
}
.hgap {
  margin-right: 5px;
}
.vgap {
  margin-top: 5px;
}
.selected {
  background-color: #cccccc;
  border-top: 2px solid white;
  border-left: 2px solid white;
  border-bottom: 2px solid gray;
  border-right: 2px solid gray;
}

.filebox {
  height: 18vw !important;
  width: 18vw !important;
  margin: 5px !important;
  padding: 5px !important;
  text-align: center;
}
.custom-input-group {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
}

.custom-addon {
  width: 60%;
}

.bg-blue {
  background-color: blue;
}
.scroll-area {
  height: 80vh;
  overflow-y: scroll;
}
@media(min-width: 1400px){
  .modal-lg {
    width: 1308px;
  }
}
.glyphicon.spinning {
    animation: spin 1s infinite linear;
    -webkit-animation: spin2 1s infinite linear;
}

.glyphicon-shadow {
  text-shadow: 0 0 5px white;
}

@keyframes spin {
    from { transform: scale(1) rotate(0deg); }
    to { transform: scale(1) rotate(360deg); }
}

@-webkit-keyframes spin2 {
    from { -webkit-transform: rotate(0deg); }
    to { -webkit-transform: rotate(360deg); }
}

.wide-modal-window .modal-dialog {
  width: 98%;
}

.medium-modal-window .modal-dialog {
  width: 60%;
}

.signature {
  border: 1px solid orange;
  border-style: dashed;
  margin: 0 auto;
  cursor: pointer;
}

.signature canvas {
  border: 1px solid #999;
  margin: 0 auto;
  cursor: pointer;
}

.dashbord-cell-block {
    position: relative;
    width: 400px;
}
.dashbord-cell-block-sub {
    display: inline-block;
    width: 90px;
    height: 100%;
    padding: 5px;
    /* box-sizing: border-box;
    border: 1px solid; */
    vertical-align: top;
}

.dashbord-cell-block-sub.header {
    height: auto;
}

.dashbord-cell-block-sub.optin {
    //background-color: #00B0F0;
    background-color: #00EE00;
}
.dashbord-cell-block-sub.optout {
    background-color: #FFC000;
}
.cell-fail {
    color: red;
}
.cell-pass {
    color: blue;
}
.grayed {
  background-color: #eee;
  cursor: not-allowed;
}
.lightgrayed {
  background-color: silver;
  border: 2px solid black;
}
.darkgrayed {
  background-color: gray;
  border: 2px solid black;
}
.row-disable {
  background-color: #eee;
  color: gray;
  margin-bottom: 0px;
  padding-top: 5px;
  padding-bottom: 15px;
  cursor: not-allowed;
}
.font-size-lg {
  font-size: 150%;
}
.checkbox-2x {
    transform: scale(2);
    -webkit-transform: scale(2);
}

/*
datetimepicker table {
  width: 500px;
}
*/

.fixedcoltable > table {
  table-layout: fixed;
  width: 100%;
  *margin-left: -200px; /*ie7*/
}
.fixedcoltable > td, th{
  vertical-align: top;
  border-top: 1px solid #ccc;
  padding: 10px;
  width: 200px;
  height: 50px;
}
.fix {
  position: absolute;
  *position: relative; /*ie7*/
  width: 200px;
  margin-left: -200px;
}
.outer {
  position: relative;
}
.inner {
  overflow-x: scroll;
  overflow-y: visible;
  width: 84vw;
  margin-left: 200px;
}
.nodatabox {
  background-color: gray;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' height='100%' width='100%'><text x='50%' y='70%' text-anchor='middle' fill='yellow' font-size='20'>No Data</text></svg>");
}

.optoutbox {
  background-color: white;
  //background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' height='100%' width='100%'><text x='50%' y='70%' text-anchor='middle' fill='red' font-size='20'>Opt Out</text></svg>");
}

.btn-blk {
  background-color: #d9edf7;
  color: black;
  border-color: gray;
  margin: 10px;
  padding-top: 20px;
  padding-top: 20px;
  padding-bottom: 40px;
}

.btn-blk:hover {
  background-color: #31708f;
  color: white;
}

.btn-blk-active {
  background-color: #31708f;
  color: white !important;
}

.btn-unit {
  background-color: #d9edf7;
  color: black;
  border-color: gray;
  margin: 5px;
}

.btn-unit:hover {
  background-color: #31708f;
  color: white;
}

.btn-unit-active {
  background-color: #31708f;
  color: white !important;
}

.big {
  position: absolute;
  left: 100px;
  top: 100px;
  height: 300px;
  z-index: 9999;
}

.small {
  height: 40px;
}

.empty {
  background-color: black;
}

.badge-info {
  background-color: #28a4c9;
}

.highlight {
  color: white;
  text-shadow: black 0px 0px 4px;
}

.widebox {
  padding: 2px;
}

.alertTop {
  z-index: 10000 !important;
}
