html, body {
  margin: 0;
}

html, body, .wrapper {
    height: 100%;
    display:block;
}
.all-row {
  width: 100%;
  height: 50%;
  margin: 0;
}
.panel-1, .panel-2,
.panel-3, .panel-4 {
    height: 100%;
    width: 50%;
    float: left;
    overflow:auto;
    /* padding: 5px; */
}

.panel-2{
  background-color: red;
}

body{
  color:#2B303B;
  font-family: 'Lato';
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+1,5858fa+100&0.5+0,0.5+100 */
  /* background: -moz-linear-gradient(-45deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.5) 1%, rgba(88,88,250,0.5) 100%); /* FF3.6-15 */
  /* background: -webkit-linear-gradient(-45deg, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0.5) 1%,rgba(88,88,250,0.5) 100%); /* Chrome10-25,Safari5.1-6 */ */
  /* background: linear-gradient(135deg, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0.5) 1%,rgba(88,88,250,0.5) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ */
  /* filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#80ffffff', endColorstr='#805858fa',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */ */ */
}

.login-wrapper{
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+1,ff3535+56,409de5+85 */
  background: #ffffff; /* Old browsers */
  background: -moz-linear-gradient(-45deg, #ffffff 1%, #ff3535 56%, #409de5 85%); /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg, #ffffff 1%,#ff3535 56%,#409de5 85%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, #ffffff 1%,#ff3535 56%,#409de5 85%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#409de5',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  z-index:999999;
}

.loginForm{
  width: 300px;
  height: 200px;
  vertical-align: middle;
  white-space: nowrap;
  position: absolute;
  /*border-radius: 5px;*/
  left: 50%;
  top:50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.loginForm input{
  width: 300px;
  height: 35px;
  outline:none;
  border-style:solid;
  border-width:0px;
  border-color:#2b303b;
  background: #ffffff;
  font-size: 15pt;
  float: left;
  padding-left: 45px;
  border-radius: 5px;
}

.loginForm input#loginButton{
  width: 70px;
  height: 30px;
  outline:none;
  border-style:solid;
  border-width:0px;
  border-color:#2b303b;
  background: #ffffff;
  font-size: 10pt;
  border-radius: 5px;
  padding-left: 0px;
  margin-top: 25px;
}

.container-1 input#usr::-webkit-input-placeholder {
   color: #65737e;
}

.container-1 input#usr:-moz-placeholder { /* Firefox 18- */
   color: #65737e;
}

.container-1 input#usr::-moz-placeholder {  /* Firefox 19+ */
   color: #65737e;
}

.container-1 input#usr:-ms-input-placeholder {
   color: #65737e;
}

.container-1 .icon{
  position: absolute;
  top:15px;
  left:15px;
  bottom:17px;
  z-index: 1;
  font-size:20px;
  cursor:pointer;
}

.container-1 input#usr:hover, .container-1 input#usr:focus, .container-1 input#usr:active{
    outline:none;
    border-style:solid;
    border-width:1px;
    border-color:#2b303b;
    background: #ffffff;
  }

.spinner-wrapper{
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+1,5858fa+100 */
  background: rgb(255,255,255); /* Old browsers */
  background: -moz-linear-gradient(-45deg, rgba(255,255,255,1) 1%, rgba(88,88,250,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg, rgba(255,255,255,1) 1%,rgba(88,88,250,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, rgba(255,255,255,1) 1%,rgba(88,88,250,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#5858fa',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  z-index:999999;
}

.spinner {
  width: 40px;
  height: 40px;
  background-color: #ffffff;


  position:absolute;
  top:48%;
  left:48%;
  -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);
  }
}

#chartdiv1 {
  font-size	: 5px;
}

#chartdiv2,#chartdiv3,#chartdiv4{
  height:30%;
  font-size:9px;
  background-color: transparent;
  /* -webkit-box-shadow: 0px 1px 6px 2px rgba(0,0,0,0.47);
  -moz-box-shadow: 0px 1px 6px 2px rgba(0,0,0,0.47);
  box-shadow: 0px 1px 6px 2px rgba(0,0,0,0.47); */
}

.col-sm-4{
  padding-left: 0px;
  padding-right: 0px;
}

.balance-row{
  margin:0;
}

/* .col-sm-4{
  padding-left:0px;
  padding-right:0px;
} */

#balanceWrapper{
  background: #dbe8ff;
}

#balanceChartWrapper {
  position:relative;
}

#balanceChartBig{
  padding:5px;
  /* -webkit-box-shadow: 0px 1px 6px 2px rgba(0,0,0,0.47);
  -moz-box-shadow: 0px 1px 6px 2px rgba(0,0,0,0.47);
  box-shadow: 0px 1px 6px 2px rgba(0,0,0,0.47); */
  background-color: transparent;
}

#balanceChartSmall{
  margin-top:10px;
  /* background-color: white;
  -webkit-box-shadow: 0px 1px 6px 2px rgba(0,0,0,0.47);
  -moz-box-shadow: 0px 1px 6px 2px rgba(0,0,0,0.47);
  box-shadow: 0px 1px 6px 2px rgba(0,0,0,0.47); */
}

/* #bgWrapper{
  width:100%;
  position:absolute;
} */

#refresh{
  padding-top: 20px;
  text-align:center;
  font-size:50px;
  opacity: 0.5;
}

#offersWrapper{
  background:red;
  height:100%;
}

#offersGridWrapper {
  background-color:red;
  text-align:left;
  height:100%;
}

.offer{
  display:block;
  width: 150px;
  height: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  padding:5px;
  background-color: white;
  -webkit-box-shadow: 0px 1px 6px 2px rgba(0,0,0,0.47);
  -moz-box-shadow: 0px 1px 6px 2px rgba(0,0,0,0.47);
  box-shadow: 0px 1px 6px 2px rgba(0,0,0,0.47);
  margin: 10px;
  float: left;
}

.offer:hover{
  cursor: pointer;
  background-color: blue;
  color: white;
}


.offerTitle{
  font-weight: bold;
}

a:link, a:visited {
    text-decoration: none;
}​

.amChartsLegend{
  height:37px;
}

.transWrap:hover .transIcon{
  visibility: visible;
  cursor:pointer;
  background-color:transparent;
}

.transIcon{
  visibility:hidden;
  border-style:none;
  background-color:transparent;
}

.transWrap:hover .confirmIcon{
  cursor:pointer;
  background-color:transparent;
}
