.overlay-clear {
  position: fixed;
  width: 100%;
  height: 1px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
  z-index: 3000;
  cursor: pointer;
}

.overlay-clear.full {
  height: 100%;
}

.banner-alert-container {
  position: fixed;
  top: 20px;
  width: 600px;
  left: 50%;
  transform: translateX(-50%);
}

.banner-alert {
  border-radius: 12px;
  background-color: #f7be7a;
  padding: 8px 12px 12px 19px;
  color: white;
  z-index: 100;
}

.banner-alert.light {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background-color: #fff7ec;
}
.banner-alert.light .banner-alert-message {
  color: #faa743;
}
.banner-alert.light button {
  box-shadow: none !important;
  font-size: 14px;
  min-width: 130px;
}
.banner-alert.light button.warning {
  color: #faa743;
}

.banner-alert-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
}

.banner-alert-message {
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
}

.banner-alert i {
  position: absolute;
  top: 12px;
  right: 15px;
  color: #d78d34;
  cursor: pointer;
}

.banner-alert.positive {
  background-color: #56e5e7;
}
.banner-alert.positive i {
  color: #1db2b5;
}

.banner-alert.danger {
  background-color: #fb7160;
}
.banner-alert.danger i {
  color: #fff;
}

.animated {
  animation: center-animate 0.5s ease;
}

.animated.hide {
  animation: center-animate-back 0.5s ease;
}

@keyframes center-animate {
  0% {
    transform: translateY(-100px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes center-animate-back {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100px);
  }
}
