/* loading icon animation */
.spinner-animate {
  -webkit-animation: spinner-animate 0.7s linear infinite;
          animation: spinner-animate 0.7s linear infinite;
}

@-webkit-keyframes spinner-animate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spinner-animate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/* banner notification */
.banner-notification-success {
    position: absolute;
    z-index: 101;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    line-height: 2.5;
    overflow: hidden;
    color: #516a35;
    background-color: #ebf5e0;
    border-color: #e3f1d4;
    padding: .75rem 1.25rem;
}

.banner-notification-danger {
  position: absolute;
  z-index: 101;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  line-height: 2.5;
  overflow: hidden;
  color: #7c2b2a;
  background-color: #fcdddc;
  border-color: #fbcfce;
  padding: .75rem 1.25rem;
}

/* banner notification exit animation */

.slide-out-top {
  -webkit-animation: slide-out-top 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) 2.5s both;
          animation: slide-out-top 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) 2.5s both;
}

@-webkit-keyframes slide-out-top {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-1000px);
            transform: translateY(-1000px);
    opacity: 0;
  }
}
@keyframes slide-out-top {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-1000px);
            transform: translateY(-1000px);
    opacity: 0;
  }
}

/* fullscreen loading cover */
.loading {
  position: fixed;
  z-index: 999;
  height: 2em;
  width: 2em;
  overflow: show;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.loading:before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(255,255,255,0.7);
}

input[id^="conno"]::-webkit-input-placeholder { 
  color: whitesmoke;
}
input[id^="conno"]::-moz-placeholder { 
  color: whitesmoke;
}
input[id^="conno"]:-ms-input-placeholder { 
  color: whitesmoke;
}
input[id^="conno"]:-moz-placeholder { 
  color: whitesmoke;
}