.toast-box {
    position: fixed;
    left: 0;
    top: -100%;
    right: 0;
    width: 100%;
    z-index: 600;
    min-height: 52px;
    margin-top: env(safe-area-inset-top);
    transition: 0.2s all;
    background: rgba(0, 0, 0, 0.85);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    padding: 10px 16px;
    line-height: 1.4em;
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .toast-box .toast-title {
      font-size: 15px;
      color: #fff; }
    .toast-box .btn {
      font-size: 13px;
      font-weight: 500; }
    .toast-box.show {
      top: 0; }
    .toast-box .in {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      padding-right: 20px; }
      .toast-box .in i.icon,
      .toast-box .in ion-icon {
        font-size: 26px;
        width: 32px;
        height: 32px;
        margin-right: 8px;
        color: #fff; }
      .toast-box .in .text {
        width: 100%; }
    .toast-box.toast-top.show {
      top: 56px; }
    .toast-box.toast-bottom {
      top: auto;
      bottom: -100%; }
      .toast-box.toast-bottom.show {
        bottom: 56px;
        top: auto;
        margin-bottom: env(safe-area-inset-bottom); }
    .toast-box.toast-center {
      width: auto;
      left: auto;
      right: auto;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      display: none;
      padding: 16px 24px;
      border-radius: 10px;
      text-align: center; }
      .toast-box.toast-center.show {
        display: block;
        transform: translate(-50%, -50%); }
      .toast-box.toast-center .in {
        padding: 0;
        display: block; }
        .toast-box.toast-center .in i.icon,
        .toast-box.toast-center .in ion-icon {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          margin: 0 0 10px 0;
          font-size: 56px;
          width: 64px;
          height: 64px; }
      .toast-box.toast-center .btn {
        margin-top: 20px; }
  
  .extra-header-active .toast-box.toast-top.show {
    top: 95px; }

.animateBG {
	background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100vh;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}


.circles{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circles li{
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    animation: animate 25s linear infinite;
    bottom: -150px;
    
}

.circles li:nth-child(1){
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.circles li:nth-child(2){
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3){
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4){
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5){
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6){
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7){
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8){
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9){
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10){
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}



@keyframes animate {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}

.pulse {
    -webkit-animation: pulse-blue 2s infinite;
    animation: pulse-blue 2s infinite;
  }
  
  @keyframes pulse-animation {
    0% {
      box-shadow: 0 0 0 0px rgba(1, 52, 212, 0.3);
    }
    100% {
      box-shadow: 0 0 0 20px rgba(1, 52, 212, 0.3);
    }
  }


  @keyframes pulse-blue {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(1, 52, 212, 0.3);
	}
	
	70% {
		transform: scale(1);
		box-shadow: 0 0 0 10px rgba(52, 172, 224, 0);
	}
	
	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(52, 172, 224, 0);
	}
}