.loader-wrap {
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    color: #fff;
    padding: 0;
    background: linear-gradient(45deg, #092ca2 0%, #0b2e86 100%);
    background-attachment: fixed;
  }

  .loader-cube-wrap img {
    max-width: 100%;
  }

  @keyframes cubeanimate {
    0% {
      transform: scale(1, 1) translateY(0);
    }
    10% {
      transform: scale(1.1, 0.9) translateY(0);
    }
    30% {
      transform: scale(0.9, 1.1) translateY(-30px);
    }
    50% {
      transform: scale(1.05, 0.95) translateY(0);
    }
    57% {
      transform: scale(1, 1) translateY(-7px);
    }
    64% {
      transform: scale(1, 1) translateY(0);
    }
    100% {
      transform: scale(1, 1) translateY(0);
    }
  }
  .loader-cube-animate {
    animation-name: cubeanimate;
    animation-timing-function: cubic-bezier(0.28, 0.84, 0.42, 1);
  }
  .loader-cube-wrap {
    align-self: flex-end;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    height: 100px;
    margin: 0 auto 0 auto;
    transform-origin: bottom;
    position: relative;
    width: 100px;
  }

  .pulse {
    background: #e80404;
  }
  .pulse.support {
    right: 96px;
  }

.pulse::before {
    background: rgba(211, 0, 138, 0.5);
    box-shadow: 0 0 0 rgb(242, 5, 150);  
}
.alert-count {
  position: absolute;
  top: 5px;
  left: 22px;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background: #f62718;
}
.dropdown-large .dropdown-menu {
  width: 360px;
  border: 0;
  padding: 0 0;
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
}