.card-header.card-header-primary.password-text {
    padding: 5px !important;
}
#transactionList .positive-amount {
  color:green;
  font-weight: normal;
}
#transactionList .negative-amount {
  color:red;
  font-weight: normal;
}
.fv-form-bootstrap .help-block {
    margin-bottom: 10px;
    color: red;
    font-size: 14px;
}
.error{
  color: red;
  font-size: 14px;
}

.form-group.otp-div {
    clear: both;
    display: block;
    overflow: hidden;
}
a.btn-success.resend-otp {
    float: right;
    width: 120px;
    padding: 11px 15px;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
}
.otp-div input#otp {
    width: calc(100% - 130px);
    float: left;
}
.marquee-card {
  background-color: rgba(34, 91, 170, 0.6);
  color: #fff;
  padding: 6px 0px;
  font-weight: 300;
  font-size: 20px;
}

.loader-div{
    display: none;
}
.preload-div {
    position: fixed;
    background: rgba(255, 255, 255, 0.95);
    height: 100%;
    width: 100%;
    display: table;
    top: 0px;
    left: 0px;
    z-index: 1000000;
}
.spinner-wrapper {
    display: table-cell;
    vertical-align: middle;
}
    .spinner {
  margin:0px auto;
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 10px;
}

.spinner > div {
  background-color: #00acc1;
  height: 100%;
  width: 6px;
  display: inline-block;
  
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% { -webkit-transform: scaleY(0.4) }  
  20% { -webkit-transform: scaleY(1.0) }
}

@keyframes sk-stretchdelay {
  0%, 40%, 100% { 
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }  20% { 
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
  }
}